/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbars globally for slider sections */
.testimonials,
.gallery-slider,
.patient-videos,
.services,
.about,
.patient-photos,
*[class*="slider"],
*[class*="carousel"] {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
}

.testimonials::-webkit-scrollbar,
.gallery-slider::-webkit-scrollbar,
.patient-videos::-webkit-scrollbar,
.services::-webkit-scrollbar,
.about::-webkit-scrollbar,
.patient-photos::-webkit-scrollbar,
*[class*="slider"]::-webkit-scrollbar,
*[class*="carousel"]::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

/* Remove focus outline from all interactive elements */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}

:root {
    --primary-color: #b5916d;
    --primary-dark: #9d7a56;
    --secondary-color: #d4b896;
    --bronze-color: #a0845f;
    --gold-light: #e8c39e;
    --gold-dark: #8b6f47;
    --accent-color: #f59e0b;
    --text-dark: #ffffff;
    --text-light: #d1d5db;
    --text-white: #ffffff;
    --bg-light: #111827;
    --bg-white: #1f2937;
    --bg-dark: #0f172a;
    --border-color: #374151;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bronze-color) 50%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(181, 145, 109, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--bronze-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 145, 109, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--text-white);
    border: 2px solid #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20b954;
    border-color: #20b954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(15, 23, 42);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
}

.nav-brand i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    margin-left: auto;
    margin-right: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.8rem;
    transition: var(--transition);
    position: relative;
    outline: none;
}

.nav-menu a:focus {
    outline: none;
    box-shadow: none;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.lang-toggle:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

.lang-toggle i {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-toggle.open i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--bg-light);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--bg-light);
}

.lang-option.active {
    background: var(--primary-color);
    color: white;
}

.lang-option.active:hover {
    background: var(--primary-dark);
}

.lang-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-call {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bronze-color) 50%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(181, 145, 109, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-call:hover::before {
    left: 100%;
}

.btn-call:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--bronze-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 145, 109, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 14px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 19px;
}

/* Active state - transform to X */
.mobile-menu-toggle.active span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-video-container.loading {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-video-container.no-video {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* YouTube Placeholder Styles */
.youtube-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.youtube-placeholder:hover {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
}

.youtube-placeholder .play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    margin-bottom: 15px;
}

.youtube-placeholder .play-button:hover {
    transform: scale(1.1);
}

.youtube-placeholder .play-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video iframe,
.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.hero-video video,
.hero-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    border: none;
}

/* Ensure video covers the entire hero section */
@media (max-aspect-ratio: 16/9) {
    .hero-video iframe,
    .hero-video-container iframe {
        height: 100vh;
        width: 177.77vh;
    }
    
    .hero-video video,
    .hero-video-container video {
        height: 100vh;
        width: 177.77vh;
    }
}

@media (min-aspect-ratio: 16/9) {
    .hero-video iframe,
    .hero-video-container iframe {
        width: 100vw;
        height: 56.25vw;
    }
    
    .hero-video video,
    .hero-video-container video {
        width: 100vw;
        height: 56.25vw;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.8) 50%, rgba(51, 65, 85, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    padding: 8rem 0 4rem;
}

.hero-text {
    position: relative;
    z-index: 3;
    color: var(--text-white);
}

.hero-text h1 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-form {
    position: relative;
    margin-top: 2rem;
}

.form-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.form-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.analysis-form .form-group {
    margin-bottom: 1rem;
}

.analysis-form input,
.analysis-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.analysis-form input:focus,
.analysis-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(181, 145, 109, 0.2);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* About Doctor Section */
.about-doctor {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

/* Doctor Title */
.doctor-title {
    text-align: center;
    margin-bottom: 4rem;
}

.doctor-title h2 {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doctor-title p {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 400;
}

.about-doctor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

/* Doctor Image Section */
.doctor-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.doctor-image {
    position: relative;
    text-align: center;
}

.doctor-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    border: 1px solid rgba(181, 145, 109, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(181, 145, 109, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.doctor-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.doctor-image:hover::before {
    opacity: 1;
}

.doctor-image:hover img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 25px 45px rgba(181, 145, 109, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.doctor-experience {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(181, 145, 109, 0.3);
    border: 2px solid rgba(212, 184, 150, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 250px;
}

.doctor-experience i {
    font-size: 1.3rem;
    color: var(--gold-light);
}

.doctor-info {
    color: var(--text-white);
}

.doctor-description > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.doctor-achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: transparent;
    border-radius: 20px;
    border: 1px solid rgba(181, 145, 109, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(181, 145, 109, 0.1);
}

.achievement-item:hover {
    background: rgba(181, 145, 109, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(181, 145, 109, 0.15);
    border-color: rgba(181, 145, 109, 0.25);
}

.achievement-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(181, 145, 109, 0.3);
    border: 1px solid rgba(212, 184, 150, 0.3);
}

.achievement-icon i {
    font-size: 1.2rem;
    color: white;
}

.achievement-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.achievement-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.doctor-specialties {
    margin-bottom: 0;
}

.doctor-specialties h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.doctor-specialties ul {
    list-style: none;
    padding: 1.5rem;
    background: transparent;
    border-radius: 15px;
    border: 1px solid rgba(181, 145, 109, 0.15);
    box-shadow: 0 4px 15px rgba(181, 145, 109, 0.08);
}

.doctor-specialties li {
    color: var(--text-light);
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(181, 145, 109, 0.1);
    transition: color 0.2s ease;
}

.doctor-specialties li:last-child {
    border-bottom: none;
}

.doctor-specialties li:hover {
    color: var(--primary-color);
}

.doctor-specialties li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
}

.doctor-quote {
    position: relative;
}

.doctor-quote blockquote {
    background: transparent;
    padding: 2.5rem;
    border-radius: 25px;
    border-left: 5px solid var(--primary-color);
    position: relative;
    border: 1px solid rgba(181, 145, 109, 0.2);
    box-shadow: 0 8px 25px rgba(181, 145, 109, 0.1);
}

.doctor-quote .fa-quote-left {
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(181, 145, 109, 0.1);
    padding: 0.7rem;
    border-radius: 50%;
    border: 2px solid rgba(181, 145, 109, 0.3);
    box-shadow: 0 6px 20px rgba(181, 145, 109, 0.2);
}

.doctor-quote p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 400;
}

.doctor-quote cite {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    font-style: normal;
}

/* Specialties and Quote Side by Side */
.specialties-quote-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: flex-start;
}

/* Responsive Design for About Doctor */
@media (max-width: 1024px) {
    .about-doctor-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .doctor-achievements {
        grid-template-columns: 1fr;
    }
    
    .doctor-title h2 {
        font-size: 2.5rem;
    }
    
    .specialties-quote-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-doctor {
        padding: 60px 0;
    }
    
    .about-doctor-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .doctor-title {
        margin-bottom: 2rem;
    }
    
    .doctor-title h2 {
        font-size: 2rem;
    }
    
    .doctor-title p {
        font-size: 1.1rem;
    }
    
    .doctor-image img {
        max-width: 300px;
        height: 400px;
    }
    
    .doctor-experience {
        min-width: 200px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .achievement-item {
        padding: 1rem;
    }
    
    .achievement-icon {
        width: 40px;
        height: 40px;
    }
    
    .achievement-icon i {
        font-size: 1rem;
    }
    
    .doctor-quote blockquote {
        padding: 1.5rem;
    }
    
    .specialties-quote-section {
        margin-top: 2rem;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Mobile menu for very small screens */
    .nav-menu.active li a {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .nav-menu.active li a:hover {
        padding-left: 1.75rem;
    }
    
    .doctor-title h2 {
        font-size: 1.8rem;
    }
    
    .doctor-image img {
        max-width: 250px;
        height: 350px;
    }
    
    .doctor-experience {
        min-width: 180px;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .doctor-description > p {
        font-size: 1rem;
    }
    
    .doctor-specialties li {
        font-size: 0.9rem;
    }
    
    .doctor-quote p {
        font-size: 1rem;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services Carousel */
.services-carousel {
    margin-bottom: 3rem;
}

.services-carousel .carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-carousel .carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    padding-top: 25px;
    margin-top: -25px;
}

.services-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    width: 100%; /* Show all 4 cards in desktop */
    touch-action: pan-y;
}

.service-card {
    position: relative;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    flex: 0 0 calc(33.333% - 1.33rem); /* Show 3 cards per view */
    min-width: calc(33.333% - 1.33rem);
    min-height: 400px; /* Ensure consistent card height */
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content evenly */
    z-index: 1;
}

/* Desktop services carousel settings */
@media (min-width: 769px) {
    /* Show all 4 cards */
    
    /* Force hide mobile language section and analysis button on desktop */
    .mobile-lang-section,
    .mobile-analysis-section,
    .mobile-analysis-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .services-carousel .carousel-btn {
        display: flex !important;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.service-card:hover .service-badge {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    z-index: 1000;
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(181, 145, 109, 0.05) 0%, rgba(212, 184, 150, 0.05) 100%);
}

.service-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    z-index: 999;
    transition: var(--transition);
    pointer-events: none;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 30%, var(--bronze-color) 70%, var(--primary-dark) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(181, 145, 109, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(212, 184, 150, 0.4);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-white);
    z-index: 1;
    position: relative;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.service-card p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1; /* Take available space */
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.service-price-btn {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: auto;
}

.service-price-btn:hover {
    background: #20b954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.service-price-btn i {
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-dark);
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-height: none;
    overflow: visible;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-height: none;
    overflow: visible;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--bronze-color) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(181, 145, 109, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(212, 184, 150, 0.4);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.feature-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Clinic Gallery Styles */
.clinic-gallery-container {
    width: 100%;
    max-width: 600px;
}

.clinic-gallery-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

.clinic-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.clinic-slider-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Remove scrollbars */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.clinic-slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.clinic-slider {
    display: flex;
    transition: transform 0.4s ease;
}

.clinic-slide {
    min-width: 100%;
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.clinic-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.clinic-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.clinic-slide-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.clinic-slide-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.clinic-slider-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 2;
}

.clinic-slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.clinic-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.clinic-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.clinic-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clinic-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.clinic-indicator:hover {
    background: var(--primary-color);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    color: var(--text-white);
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-white);
}

/* Prices Section */
.prices {
    padding: 6rem 0;
    background: var(--bg-light);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-card {
    position: relative;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(181, 145, 109, 0.05) 0%, rgba(212, 184, 150, 0.05) 100%);
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.price-info {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    color: white;
}

.price-info p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.price-info small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-right: 0.2rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.price-features i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.price-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--secondary-color);
    font-weight: 500;
}

.price-note i {
    margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-dark);
    overflow: hidden; /* Hide any overflow */
}

/* Google Reviews Header */
/* Testimonial Read More Button */
.read-more-btn {
    color: #ff6b35;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline;
}

.read-more-btn:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.testimonial-text {
    transition: all 0.3s ease;
}

.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-logo i {
    font-size: 1.8rem;
    color: #4285f4;
}

.google-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.total-reviews {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
}

.carousel-btn {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--border-color);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary-color);
}

.google-review-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 300px;
}

.google-review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.25rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.google-review-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Google Reviews Footer */
.google-reviews-footer {
    text-align: center;
}

.view-all-reviews {
    background: #4285f4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.view-all-reviews:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-all-reviews i {
    font-size: 1.1rem;
}

/* Mobile Responsive for Reviews */
@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .overall-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonials-carousel .carousel-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .testimonials-carousel .carousel-btn {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border: none;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }
    
    .testimonials-carousel .carousel-btn:hover {
        background: rgba(0, 0, 0, 0.9);
        transform: translateY(-50%) scale(1.1);
    }
    
    .testimonials-carousel .carousel-prev {
        left: 10px;
    }
    
    .testimonials-carousel .carousel-next {
        right: 10px;
    }
    
    .testimonials-carousel .carousel-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        background: rgba(0, 0, 0, 0.3) !important;
    }
    
    .testimonials-carousel .carousel-btn:disabled:hover {
        transform: translateY(-50%) scale(1) !important;
    }
    
    .testimonials-carousel .carousel-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
        /* Remove scrollbars */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .testimonials-carousel .carousel-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .testimonials-slider {
        display: flex;
        width: 400%; /* 4 cards total */
        gap: 0;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .google-review-card {
        flex: 0 0 25%; /* Each card takes 25% of the 400% container */
        width: 25%;
        min-width: 25%;
        max-width: 25%;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Show indicators on mobile */
    .testimonials-carousel .carousel-indicators {
        display: flex !important;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .testimonials-carousel .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .testimonials-carousel .indicator.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 30%, var(--bronze-color) 70%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 184, 150, 0.1), transparent);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(181, 145, 109, 0.5);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-whatsapp {
    background: #25d366;
    color: var(--text-white);
    border-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-buttons .btn-whatsapp:hover {
    background: #20b954;
    border-color: #20b954;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(181, 145, 109, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Phone Input Container */
.phone-input-container {
    display: flex;
    gap: 0;
    width: 100%;
}

.country-select {
    width: auto !important;
    min-width: 60px;
    max-width: 75px;
    flex-shrink: 0;
    border-right: none !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bronze-color) 100%);
    color: var(--text-white);
    font-size: 0.55rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem 0.1rem !important;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    background-size: 0.8rem;
    padding-right: 1.25rem !important;
}

.phone-input-container input[type="tel"] {
    flex: 1;
    border-left: none !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-left: 1rem !important;
    font-size: 0.85rem !important;
}

.country-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(181, 145, 109, 0.2) !important;
    z-index: 2;
    position: relative;
}

.phone-input-container input[type="tel"]:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(181, 145, 109, 0.2) !important;
    z-index: 1;
}

/* Country select options */
.country-select option {
    background: var(--bg-white) !important;
    color: var(--text-dark) !important;
    padding: 0.3rem !important;
    font-weight: 500 !important;
    font-size: 0.55rem !important;
    border: none !important;
}

.country-select option:hover,
.country-select option:focus {
    background: var(--primary-color) !important;
    color: var(--text-white) !important;
}

.country-select option:checked,
.country-select option[selected] {
    background: var(--primary-color) !important;
    color: var(--text-white) !important;
    font-weight: 600 !important;
    font-size: 0.5rem !important;
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .country-select {
        color: var(--text-white);
        text-indent: 0.01px;
        text-overflow: '';
        font-size: 0.55rem;
    }
    
    .country-select option {
        background: var(--bg-white);
        color: var(--text-dark);
        font-size: 0.55rem;
        padding: 0.3rem;
    }
}

/* Country select hover effect */
.country-select:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(181, 145, 109, 0.3);
}

/* Contact Map Styles */
.contact-map {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    grid-column: 1 / -1;
    width: 100%;
}

.contact-map h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-map h4 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-directions,
.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid;
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.btn-directions {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bronze-color) 100%);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-directions:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 145, 109, 0.4);
}

.btn-location {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-location:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 145, 109, 0.4);
}

/* Full Width Map */
.contact-map-full {
    margin-top: 3rem;
    padding: 2rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.contact-map-full h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-map-full h3 i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
}

.map-container-full {
    width: 100%;
    height: 450px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
}

.map-container-full::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--bronze-color), var(--primary-color));
    border-radius: 52px;
    z-index: -1;
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.map-container-full iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-actions-full {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.map-actions-full .btn-directions,
.map-actions-full .btn-location {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-actions {
        flex-direction: column;
    }
    
    .btn-directions,
    .btn-location {
        flex: none;
        width: 100%;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .contact-map-full {
        padding: 1.5rem 0;
    }
    
    .map-container-full {
        height: 300px;
        border-radius: 30px;
    }
    
    .map-container-full::before {
        border-radius: 32px;
    }
    
    .map-actions-full {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions-full .btn-directions,
    .map-actions-full .btn-location {
        width: 100%;
        max-width: 300px;
    }
}

/* Patient Photos Slider */
.patient-photos {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    overflow: visible;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.photos-slider {
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 1;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.photos-slider:active {
    cursor: grabbing;
}


.photos-track {
    display: flex;
    gap: 0;
    width: max-content;
    cursor: grab;
    transition: none;
    touch-action: pan-x;
    will-change: transform;
}

.photos-track:active,
.photos-track.dragging {
    cursor: grabbing;
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.photo-item {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0;
    transition: var(--transition);
    display: block;
}

.photo-item:hover img {
    transform: scale(1.1);
    z-index: 50;
    position: relative;
}

/* Hide scrollbars in all slider containers */
.photos-slider,
.patient-photos {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.photos-slider::-webkit-scrollbar,
.patient-photos::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Mobile optimizations for patient photos */
@media (max-width: 768px) {
    .photos-slider {
        cursor: default;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        overflow: hidden; /* Ensure no scroll on mobile */
    }
    
    .photos-track {
        cursor: default;
    }
    
    .photo-item {
        width: 120px;
        height: 120px;
    }
    
    .photo-item:hover img,
    .photo-item:active img {
        transform: none; /* Disable hover effects on mobile */
    }
    
    .patient-name {
        font-size: 11px;
        padding: 6px 10px;
        bottom: -40px;
    }
}

.patient-name {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bronze-color) 50%, var(--primary-dark) 100%);
    color: white !important;
    padding: 8px 12px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(181, 145, 109, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid var(--primary-dark);
}

.patient-name::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--primary-color);
}

/* Arrow removed for debugging */

.photo-item:hover {
    z-index: 200;
}

.photo-item:hover .patient-name {
    opacity: 1;
    visibility: visible;
    bottom: -50px;
}

/* Hover to pause, drag to control */
.photos-slider:hover .photos-track {
    cursor: grab;
}

.photos-track.dragging {
    cursor: grabbing;
}

.photos-track {
    user-select: none;
}

.photos-track:active,
.photos-track.dragging {
    cursor: grabbing;
}

/* Patient name tooltip styling */

/* Responsive */
@media (max-width: 768px) {
    .patient-photos {
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    .photos-slider {
        width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .photos-track {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 0 20px;
        gap: 0;
    }
    
    .photo-item {
        width: 140px;
        height: 140px;
        flex-shrink: 0;
        margin: 0;
    }
    
    .photo-item img {
        width: 100%;
        height: 100%;
    }
    
    .patient-name {
        font-size: 12px;
        padding: 8px 12px;
        bottom: -45px;
        border-radius: 4px;
        color: white !important;
    }
    
    .photo-item:hover .patient-name {
        bottom: -50px;
    }
    
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section h3 i {
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    width: 20px;
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    width: 100%;
}

.footer-brand-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
    transform: scale(1.05);
}

/* Footer Logo Mobile Responsive */
@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-brand-logo {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .footer-brand-logo {
        max-width: 200px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Discount Campaign Modal */
.discount-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.discount-modal-content {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: slideInUp 0.4s ease-out;
    overflow-y: auto;
    border: 1px solid var(--border-color);
}

.close-discount {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    background: rgba(31, 41, 55, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.close-discount:hover {
    color: #ef4444;
    background: var(--bg-white);
    transform: rotate(90deg);
}

.discount-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    padding: 1.5rem;
    text-align: center;
    color: white;
    position: relative;
}

.discount-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.discount-header h2 {
    font-size: 1.6rem;
    margin: 0.75rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.discount-header p {
    font-size: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    margin: 0;
}

.discount-body {
    padding: 1.5rem;
    background: var(--bg-white);
}

.coupon-code {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.coupon-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.coupon-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.coupon-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(181, 145, 109, 0.4);
}

.copy-coupon {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-coupon:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.featured-btn {
    background: var(--primary-color) !important;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(181, 145, 109, 0.4);
}

.featured-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.discount-features {
    margin-bottom: 1.5rem;
}

.discount-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.discount-features .feature-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.countdown-timer {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.timer-label {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    min-width: 60px;
    backdrop-filter: blur(10px);
}

.time-unit span {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.time-unit label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    display: block;
}

.discount-footer {
    text-align: center;
    padding: 0 1.5rem 1.5rem;
    background: var(--bg-white);
}

.claim-discount-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 1rem;
}

.claim-discount-btn:hover {
    background: #20b954;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.claim-discount-btn i {
    font-size: 1.2rem;
}

.discount-note {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive for Discount Modal */
@media (max-width: 768px) {
    .discount-modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .discount-header {
        padding: 1.25rem;
    }
    
    .discount-header h2 {
        font-size: 1.4rem;
    }
    
    .discount-body {
        padding: 1.25rem;
    }
    
    .coupon-value {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    
    .timer-display {
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 0.5rem 0.25rem;
    }
    
    .time-unit span {
        font-size: 1rem;
    }
    
    .time-unit label {
        font-size: 0.7rem;
    }
    
    .discount-footer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-form .form-step {
    display: none;
}

.modal-form .form-step.active {
    display: block;
}

.modal-form .form-step h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hair-loss-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hair-loss-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.hair-loss-option:hover {
    border-color: var(--primary-color);
    background: rgba(181, 145, 109, 0.05);
}

.hair-loss-option input[type="radio"] {
    margin: 0;
}

.hair-loss-option input[type="radio"]:checked + .option-content {
    color: var(--primary-color);
}

.option-content h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.option-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-form {
        max-width: 400px;
        margin: 2rem auto 0;
    }
    
    .hero-cta {
        margin-bottom: 2.5rem;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    /* Navbar mobile fixes */
    .navbar .container {
        padding: 0 15px;
        overflow: hidden;
    }
    
    /* Show mobile language section only in active mobile menu */
    .nav-menu.active .mobile-lang-section {
        display: block !important;
    }
    
    /* Show mobile analysis button only in active mobile menu */
    .nav-menu.active .mobile-analysis-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        width: 100% !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        z-index: auto !important;
        pointer-events: auto !important;
        text-align: center !important;
        padding: 0.5rem 0 0 0 !important;
        margin-top: 0.3rem !important;
    }
    
    .nav-menu.active .mobile-analysis-btn {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        width: auto !important;
        min-width: 220px !important;
        max-width: 280px !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        z-index: auto !important;
        pointer-events: auto !important;
        margin: 0 auto !important;
    }
    
    .nav-brand {
        flex-shrink: 0;
        max-width: 60%;
    }
    
    .nav-brand h2 {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-actions {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn-call {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
    }
    
    .language-selector {
        display: none; /* Hide language selector on mobile */
    }
    
    /* Hero section tablet */
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    /* Stats grid tablet */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* About section tablet */
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-height: none;
        overflow: visible;
    }
    
    /* Services tablet */
    .services-carousel .carousel-container {
        padding: 0 20px;
    }
    
    /* Videos tablet - removed conflicting rules */
    
    /* Before/After Gallery Tablet */
    .before-after-item {
        flex: 0 0 calc(90% - 20px);
        width: calc(90% - 20px);
        max-width: calc(90% - 20px);
        min-width: calc(90% - 20px);
        margin: 0 10px;
        height: 420px;
    }
    
    .before-after-images {
        height: 320px;
    }
    
    .small-images-container {
        bottom: 20px;
        gap: 12px;
    }
    
    .before-after-small {
        width: 70px;
        height: 70px;
    }
    
    /* Footer tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Navigation mobile menu */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile menu active state - Below Navbar */
    .nav-menu.active {
        display: flex !important;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background: rgb(15, 23, 42);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
        z-index: 999;
        animation: slideDown 0.3s ease-out;
        list-style: none;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent body scroll when mobile menu is active */
    body.menu-open {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    /* Mobile Language Section at Bottom */
    .mobile-lang-section {
        margin-top: 0 !important;
    }
    
    .mobile-lang-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.9rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
        padding: 0.05rem 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: color 0.2s ease;
    }
    
    .mobile-lang-header:hover {
        color: rgba(255, 255, 255, 1);
    }
    
    .mobile-lang-header .fas:first-child {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .mobile-lang-arrow {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        transition: transform 0.3s ease;
    }
    
    .mobile-lang-header.active .mobile-lang-arrow {
        transform: rotate(180deg);
    }
    
    .mobile-lang-options {
        display: none;
        padding: 0;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-lang-options.show {
        display: block;
        max-height: 300px;
    }
    
    .mobile-lang-option {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.02rem 1.5rem 0.02rem 2rem;
        cursor: pointer;
        transition: color 0.2s ease;
        position: relative;
        background: transparent;
        border: none;
    }
    
    .mobile-lang-option:hover {
        color: rgba(255, 255, 255, 1);
    }
    
    .mobile-lang-option.active {
        color: rgba(255, 255, 255, 1);
    }
    
    /* Mobile Free Analysis Button */
    .mobile-analysis-section {
        margin-top: 0.3rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.5rem 0 0 0 !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .mobile-analysis-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin: 0 auto !important;
        width: auto !important;
        min-width: 220px !important;
        max-width: 280px !important;
    }
    
    .mobile-analysis-btn i {
        font-size: 1rem;
    }
    
    .mobile-lang-option .flag {
        font-size: 1.2rem;
        min-width: 20px;
    }
    
    .mobile-lang-option .lang-name {
        font-size: 0.85rem;
        font-weight: 400;
        color: #ffffff;
        flex: 1;
    }
    
    .mobile-lang-option.active .lang-name {
        font-weight: 500;
    }
    
    .mobile-lang-option .fa-check {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
        opacity: 0;
        transform: scale(0);
        transition: all 0.2s ease;
    }
    
    .mobile-lang-option.active .fa-check {
        opacity: 1;
        transform: scale(1);
    }
    
    .nav-menu.active li {
        margin: 0;
        width: 100%;
        list-style: none;
        position: relative;
    }
    
    .nav-menu.active li a {
        display: block;
        font-size: 0.9rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        padding: 0.05rem 1.5rem;
        width: 100%;
        transition: color 0.2s ease;
        text-align: left;
        position: relative;
        background: transparent;
        border: none;
        border-bottom: none !important;
    }
    
    .nav-menu.active li:first-child a {
        padding-top: 1rem;
    }
    
    .nav-menu.active li a:hover,
    .nav-menu.active li a:active {
        color: rgba(255, 255, 255, 1);
    }
    
    
    
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-brand i {
        font-size: 0.9rem;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    /* Hide desktop language selector on mobile */
    .language-selector {
        display: none;
    }
    
    /* Hide mobile language section and analysis button on desktop */
    .mobile-lang-section,
    .mobile-analysis-section {
        display: none !important;
    }
    
    /* Force hide mobile language section on all desktop screens */
    @media (min-width: 769px) {
        .mobile-lang-section,
        .nav-menu .mobile-lang-section,
        .nav-menu.active .mobile-lang-section,
        .mobile-analysis-section,
        .nav-menu .mobile-analysis-section,
        .nav-menu.active .mobile-analysis-section,
        .mobile-analysis-btn,
        .nav-menu .mobile-analysis-btn,
        .nav-menu.active .mobile-analysis-btn,
        button.mobile-analysis-btn,
        .btn.mobile-analysis-btn {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            height: 0 !important;
            overflow: hidden !important;
            position: absolute !important;
            left: -9999px !important;
        }
    }


    .lang-toggle {
        padding: 0.3rem 0.4rem;
    }
    
    .flag {
        font-size: 0.9rem;
    }
    
    .lang-text {
        font-size: 0.75rem;
    }
    
    .lang-dropdown {
        min-width: 120px;
        right: -10px;
    }
    
    .lang-option {
        padding: 0.5rem 0.75rem;
    }
    
    .lang-name {
        font-size: 0.75rem;
    }
    
    .hero-content {
        padding: 6rem 0 3rem;
    }
    
    .hero-cta {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-form {
        margin-top: 1.5rem;
    }
    
    .services-carousel .carousel-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-carousel .carousel-btn {
        display: none;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 0.5rem); /* 2 cards per view */
        min-width: calc(50% - 0.5rem);
        min-height: 380px; /* Consistent height for tablet */
    }
    
    .services-slider {
        gap: 1rem;
        width: 200%; /* 4 cards, 2 per view = 2 slides x 100% */
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Navbar mobile ultra small */
    .navbar .container {
        padding: 0 10px;
    }
    
    .nav-brand {
        max-width: 50%;
    }
    
    .nav-brand h2 {
        font-size: 0.9rem;
    }
    
    .btn-call {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Hide phone number text on very small screens, show only icon */
    @media (max-width: 390px) {
        .btn-call {
            padding: 0.5rem;
            min-width: 42px;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            white-space: normal;
        }
        
        .btn-call i {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Hide the phone number text */
        .btn-call .phone-number-text {
            display: none;
        }
    }
    
    /* Additional breakpoint for iPhone 13 mini and similar devices */
    @media (max-width: 375px) {
        .btn-call {
            padding: 0.4rem;
            min-width: 40px;
            width: 40px;
            height: 40px;
        }
        
        .btn-call i {
            font-size: 1rem;
        }
    }
    
    .brand-logo {
        height: 30px;
        width: auto;
    }
    
    /* Patient photos mobile ultra small */
    .patient-photos {
        padding: 2rem 0;
        margin: 0;
        overflow-x: hidden;
    }
    
    .photos-slider {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow: hidden;
    }
    
    .photos-track {
        width: auto;
        margin: 0;
        padding: 0 10px;
        gap: 0;
    }
    
    .photo-item {
        width: 120px;
        height: 120px;
        margin: 0;
    }
    
    .patient-name {
        font-size: 11px;
        padding: 6px 10px;
        bottom: -40px;
        border-radius: 4px;
    }
    
    /* Hero section mobile fixes */
    .hero {
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero .container {
        position: relative !important;
        z-index: 10 !important;
        width: 100% !important;
    }
    
    .hero-content {
        position: relative !important;
        z-index: 10 !important;
        display: block !important;
        text-align: center !important;
        padding: 6rem 1rem 3rem !important;
    }
    
    .hero-text {
        position: relative !important;
        z-index: 10 !important;
        color: var(--text-white) !important;
        text-align: center !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-text h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        color: var(--text-white) !important;
        margin-bottom: 1rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin-bottom: 2rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
    }
    
    /* Stats grid mobile - Keep side by side */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Service cards mobile - Enable slider */
    .services-carousel .carousel-container {
        position: relative;
        padding: 0 50px;
    }
    
    .services-carousel .carousel-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: var(--primary-color);
        border: none;
        border-radius: 50%;
        color: white;
        align-items: center;
        justify-content: center;
    }
    
    .services-carousel .carousel-prev {
        left: 5px;
    }
    
    .services-carousel .carousel-next {
        right: 5px;
    }
    
    .services-carousel .carousel-wrapper {
        overflow: hidden;
        width: 100%;
        /* Remove scrollbars */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .services-carousel .carousel-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .services-slider {
        display: flex;
        gap: 1rem;
        transition: transform 0.3s ease;
        width: 400%; /* 4 cards x 100% each */
    }
    
    .service-card {
        flex: 0 0 calc(25% - 0.75rem); /* 25% of 400% = 100% of viewport */
        min-width: calc(25% - 0.75rem);
        min-height: 350px; /* Consistent height for mobile */
        scroll-snap-align: start;
    }
    
    /* Footer mobile improvements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    /* Mobilde sadece logo ve sosyal medya bölümü göster */
    .footer-section:nth-child(2),
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        display: none;
    }
    
    /* Social links mobilde ortalı */
    .social-links {
        justify-content: center;
    }
    
    /* Modal mobile fixes */
    .modal-content {
        margin: 10% 10px;
        width: calc(100% - 20px);
        max-height: 90vh;
        overflow-y: auto;
    }
    
    /* Form mobile fixes */
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    /* Video Cards Responsive - Mobile: 1 card */
    .videos-carousel {
        padding: 0 1rem;
    }
    
    .videos-slider {
        gap: 0 !important; /* Mobilde gap kaldır */
        padding: 0.5rem 0;
    }
    
    .video-card {
        flex: 0 0 calc(100% - 1rem) !important;
        min-width: calc(100% - 1rem) !important;
        max-width: calc(100% - 1rem) !important;
        margin: 0 0.5rem !important;
        padding: 0 !important;
        box-sizing: border-box;
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        overflow: hidden;
    }
    
    /* Mobilde video-thumbnail relative positioning */
    .video-card .video-thumbnail {
        position: relative;
        overflow: hidden;
    }
    
    /* Mobilde kart içeriği düzenlemesi */
    .video-card .video-thumbnail,
    .video-card .video-info {
        border-radius: 0;
    }
    
    .video-thumbnail {
        height: 220px; /* Dikdörtgen uzun */
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h4 {
        font-size: 1rem;
        color: var(--text-white);
        margin-bottom: 0.5rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
        color: var(--text-light);
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .video-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .treatment-type {
        background: var(--primary-color);
        color: white;
        padding: 0.2rem 0.6rem;
        border-radius: 15px;
        font-size: 0.75rem;
    }
    
    .video-date {
        color: var(--text-light);
        font-size: 0.8rem;
    }
    
    .videos-slider {
        gap: 1rem;
    }
    
    
    
    /* Before/After Images Mobile Fixes */
    .before-after-images {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        border-radius: 20px 20px 0 0;
    }
    
    .small-images-container {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 3;
        justify-content: center;
        align-items: center;
    }
    
    .before-after-small {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        border: 2px solid white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .before-after-small img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .before-after-small .label {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    
    .treatment-type-badge {
        background: var(--primary-color);
        color: white;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    .graft-count {
        color: #666;
        font-size: 0.8rem;
    }
}
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}








/* WhatsApp Chat Widget */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.whatsapp-button {
    position: relative;
    width: 60px;
    height: 60px;
    background: #25d366 !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    transition: var(--transition);
    animation: pulse 2s infinite;
    border: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 2.5rem;
    color: white;
}

.chat-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    animation: bounce 1s infinite;
}

.whatsapp-chat-popup {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid var(--border-color);
}

.whatsapp-chat-popup.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: #25d366;
    padding: 1.2rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doctor-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.doctor-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-avatar i {
    font-size: 1.2rem;
    color: white;
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.doctor-details h4 {
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.doctor-details span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.doctor-details span::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: var(--transition);
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-body {
    padding: 1rem;
    background: #e5ddd5;
    min-height: 120px;
}

.chat-time {
    text-align: center;
    color: #888;
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

.chat-message {
    display: flex;
    justify-content: flex-start;
}

.message-bubble {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px 8px 8px 2px;
    max-width: 80%;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-right-color: white;
    border-left: none;
    border-bottom: none;
}

.message-bubble p {
    margin: 0;
    color: var(--bg-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-bubble p:not(:last-child) {
    margin-bottom: 0.25rem;
}

.chat-footer {
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 0 0 12px 12px;
    border-top: 1px solid var(--border-color);
}

.whatsapp-start-chat {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.whatsapp-start-chat:hover {
    background: #20b954;
    transform: translateY(-1px);
}

.whatsapp-start-chat i {
    font-size: 1.1rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-chat-popup {
        width: 280px;
        left: -10px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 1.6rem;
    }
}

/* Patient Videos Section */
.patient-videos {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    position: relative;
}

.patient-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23b5916d" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23b5916d" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23b5916d" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23b5916d" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%23b5916d" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.videos-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.videos-carousel .carousel-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius);
    flex: 1;
    display: flex;
    justify-content: center;
    /* Remove scrollbars */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.videos-carousel .carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.videos-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    padding: 1rem 0;
    align-items: stretch;
    width: 100%;
}

/* Video Card Styles - Desktop: 3 cards */
.video-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
    max-width: calc(33.333% - 1.33rem);
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-sizing: border-box;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-thumbnail:hover .video-play-btn {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.video-play-btn i {
    margin-left: 3px; /* Center play icon */
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.treatment-type {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.video-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.video-card {
    flex: 0 0 350px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail iframe {
    transform: scale(1.05);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.treatment-type {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-date {
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ULTRA STRONG DESKTOP HIDE - Mobile Analysis Button */
@media screen and (min-width: 769px) {
    .mobile-analysis-section,
    .mobile-analysis-btn,
    button.mobile-analysis-btn,
    .btn.mobile-analysis-btn,
    li.mobile-analysis-section,
    .nav-menu .mobile-analysis-section,
    .nav-menu .mobile-analysis-btn,
    .nav-menu.active .mobile-analysis-section,
    .nav-menu.active .mobile-analysis-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        position: absolute !important;
        left: -10000px !important;
        top: -10000px !important;
        z-index: -9999 !important;
        pointer-events: none !important;
    }
}

/* Video Carousel Controls */
.videos-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.videos-carousel .carousel-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--gold-dark));
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.videos-carousel .carousel-prev {
    left: -25px;
}

.videos-carousel .carousel-next {
    right: -25px;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.show {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-modal.show .video-modal-content {
    transform: scale(1);
}

.video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.video-modal-header h3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.video-modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.video-modal-body {
    padding: 0;
}

.video-iframe-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Cards Responsive - Tablet: 2 cards */
@media (max-width: 1024px) and (min-width: 481px) {
    .videos-carousel {
        padding: 0 1.5rem;
    }
    
    .videos-slider {
        gap: 1rem;
    }
    
    .video-card {
        flex: 0 0 calc(50% - 0.5rem) !important;
        min-width: calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-play-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* Video Modal Mobile Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95vw;
        max-width: 95vw;
        margin: 0 10px;
    }
    
    .video-modal-header {
        padding: 1rem;
    }
    
    .video-modal-header h3 {
        font-size: 1rem;
    }
    
    .video-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

.videos-carousel .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.videos-carousel .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.videos-carousel .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.videos-carousel .indicator:hover {
    background: var(--primary-color);
    opacity: 0.8;
}

/* Gallery Slider Styles */
.gallery-slider {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden; /* Hide any overflow */
}

.gallery-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    overflow: hidden; /* Prevent scroll bars */
}

.gallery-slider-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Remove any scrollbars */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.gallery-slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.gallery-slides {
    display: flex;
    transition: transform 0.4s ease;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 1.33rem); /* Desktop: 3 cards */
    min-width: calc(33.333% - 1.33rem);
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 2rem;
    min-height: 400px;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-slide:last-child {
    margin-right: 0;
}

.gallery-slider-btn {
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 1.4rem;
    z-index: 2;
}

.gallery-slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.gallery-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.gallery-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.gallery-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.gallery-indicator:hover {
    background: var(--primary-color);
}

/* Gallery Slider Mobile Responsive */
/* Tablet: 2 cards */
@media (max-width: 1024px) and (min-width: 769px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
        margin-right: 2rem;
        min-height: 350px;
    }
    
    .gallery-slide:nth-child(2n) {
        margin-right: 0;
    }
    
    .gallery-slide img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-slider {
        padding: 4rem 0;
    }
    
    /* Tablet: 2 cards */
    .gallery-slide {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
        margin-right: 2rem;
        min-height: 300px;
    }
    
    .gallery-slide:nth-child(2n) {
        margin-right: 0;
    }
    
    .gallery-slide img {
        height: 300px;
    }
    
    .gallery-slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        padding: 3rem 0;
    }
    
    /* Mobile: 1 card - dikdörtgen uzun */
    .gallery-slide {
        flex: 0 0 100%;
        min-width: 100%;
        margin-right: 0;
        min-height: 400px;
    }
    
    .gallery-slide:nth-child(2n) {
        margin-right: 0;
    }
    
    .gallery-slide img {
        height: 400px; /* Dikdörtgen uzun */
        object-fit: cover;
    }
    
    .gallery-slider-container {
        gap: 0.5rem;
    }
    
    .gallery-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile Responsive for Videos */
@media (max-width: 768px) {
    .patient-videos {
        padding: 60px 0;
    }
    
    .video-card {
        flex: 0 0 280px;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h4 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
    }
    
    .videos-carousel .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .videos-carousel .carousel-prev {
        left: -20px;
    }
    
    .videos-carousel .carousel-next {
        right: -20px;
    }
}
