/* Homepage Specific Styles */

html {
    scroll-behavior: smooth;
}

/* Ensure anchor links work properly */
a[href^="#"] {
    scroll-margin-top: 100px;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* Global overflow prevention - only for body and homepage */
body,
.homepage {
    overflow-x: hidden;
}

.homepage {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Header Container */
.header-container {
    position: sticky;
    top: 0;
    z-index: 101;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

/* Top Header Bar - White Background */
.top-header {
    background: #fff;
    color: #1a2332;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 102;
    width: 100%;
    box-sizing: border-box;
}

.top-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.top-header-left {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #20b2aa;
    font-size: 0.875rem;
    font-weight: 500;
}

.header-item svg {
    opacity: 1;
    width: 16px;
    height: 16px;
    fill: #20b2aa;
}

.top-header-right {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.header-icon {
    color: #20b2aa;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
}

.header-icon:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.header-icon svg {
    fill: #20b2aa;
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    border: 2px solid #0f1419;
}

/* Main Navigation - Light Transparent */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: relative;
    z-index: 101;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
    box-sizing: border-box;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    opacity: 1 !important;
    visibility: visible !important;
}

.main-nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
    position: relative;
    min-height: 64px;
    width: 100%;
    box-sizing: border-box;
}

/* Desktop: Ensure profile icon is on far right */
@media (min-width: 769px) {
    .main-nav .container {
        justify-content: space-between;
    }
    
    .nav-brand {
        flex: 0 0 auto;
    }
    
    .main-nav-menu {
        flex: 1 1 auto;
        justify-content: flex-end;
        margin: 0;
        margin-right: 1rem;
    }
    
    .admin-profile-dropdown {
        flex: 0 0 auto;
        margin-left: 0;
    }
    
    .nav-cta-item {
        margin-left: 0.5rem;
    }
}

/* Ensure hamburger, logo, and profile icon stay in same row on mobile */
@media (max-width: 768px) {
    .main-nav .container {
        flex-wrap: nowrap;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-brand {
        flex: 0 0 auto;
        order: 2;
        margin: 0 auto;
    }
    
    .mobile-menu-toggle {
        flex: 0 0 auto;
        order: 1;
    }
    
    .admin-profile-dropdown,
    .customer-profile-dropdown {
        flex: 0 0 auto;
        order: 3;
    }
    
    .main-nav-menu {
        order: 4;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.nav-brand .logo-text {
    color: #1a2332;
}

.nav-brand .logo-name {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1a2332;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.main-nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    position: static;
}

/* Desktop: Show navigation inline */
@media (min-width: 769px) {
    .main-nav-menu {
        display: flex !important;
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex: 1 1 auto;
        justify-content: flex-end;
        margin: 0;
        margin-right: 1rem;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .admin-profile-dropdown {
        flex: 0 0 auto;
        margin-left: 0;
        order: 999;
    }
    
    .nav-cta-item {
        margin-left: 0.5rem;
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .main-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        z-index: 10000;
    }
}

.main-nav-menu.active {
    max-height: 600px;
    padding: 1rem 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.main-nav-menu > .nav-item > a {
    color: #1a2332;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 0.5rem;
}

.main-nav-menu > .nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #20b2aa;
    transition: width 0.3s ease;
}

.main-nav-menu > .nav-item:hover > a,
.main-nav-menu > .nav-item > a:hover {
    color: #20b2aa;
}

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

.nav-plus {
    color: #1a2332;
    margin-left: 0.25rem;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-item:hover .nav-plus {
    opacity: 1;
    color: #20b2aa;
}

/* Nav Dropdown for Admin/Front Office */
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.nav-dropdown-toggle.active .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    display: none;
    z-index: 10001;
}

.nav-dropdown-menu.active {
    display: block;
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.nav-dropdown-menu li a:hover {
    background: rgba(32, 178, 170, 0.1);
    color: #20b2aa;
}

/* Admin/Front Office Profile Dropdown */
.admin-profile-dropdown {
    position: relative;
}

.admin-profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #20b2aa;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.admin-profile-icon:hover {
    background: #1a9b94;
    transform: scale(1.05);
}

.admin-profile-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    display: none;
    z-index: 10001;
    overflow: hidden;
}

.admin-profile-menu.active {
    display: block;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #1a2332;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001;
    margin-top: 0.5rem;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #20b2aa;
}

.nav-cta-item {
    margin-left: 0.5rem;
}

.nav-cta-btn {
    background: #20b2aa;
    color: #fff !important;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: none;
}

.nav-cta-btn:hover {
    background: #20b2aa;
    color: #fff !important;
    transform: none;
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(0);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.hero-section:hover .hero-background {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    text-align: center;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: #20b2aa;
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #1a2332;
    color: #fff;
    padding: 1.25rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-primary:hover {
    background: #253040;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary {
    background: #20b2aa;
    color: #fff;
    padding: 1.25rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero-secondary:hover {
    background: #1a9b94;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(32, 178, 170, 0.5);
}

/* Social Sidebar - Hidden */
.social-sidebar {
    display: none;
}

/* World Leader Section */
.world-leader-section {
    position: relative;
    z-index: 3;
    margin-top: -150px;
    padding-bottom: 4rem;
}

.world-leader-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

/* Teal Panel (Left) */
.teal-panel {
    background: linear-gradient(135deg, #20b2aa, #17a2b8);
    padding: 4rem 3rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.teal-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    z-index: 0;
    pointer-events: none;
    font-family: 'Arial', sans-serif;
    line-height: 1;
}

.teal-headline {
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.headline-line1 {
    display: block;
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #fff;
}

.headline-line2 {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a2332;
}

.teal-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(26, 35, 50, 0.7);
    position: relative;
    z-index: 1;
}

.btn-teal-cta {
    background: #1a2332;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.btn-teal-cta:hover {
    background: #253040;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-teal-cta svg {
    width: 18px;
    height: 18px;
}

/* Services Grid Panel (Right) */
.services-grid-panel {
    background: transparent;
    padding: 3rem 2.5rem;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-icon-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    background: #fff;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.service-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.service-icon-card-empty {
    background: transparent;
    border: none;
    cursor: default;
    box-shadow: none;
}

.service-icon-card-empty:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2332;
    line-height: 1.4;
    text-align: center;
}

/* About Clinic Section */
.about-clinic-section {
    padding: 5rem 2rem;
    background: #fff;
}

.about-clinic-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.about-clinic-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clinic-skills-right {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-clinic-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 0.9rem;
    color: #20b2aa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a2332;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

.btn-about-cta {
    background: #20b2aa;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.btn-about-cta:hover {
    background: #1a9b94;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.btn-about-cta svg {
    width: 20px;
    height: 20px;
}

/* Clinic Skills Progress Circles */
.skills-progress {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    /* Hide top header on mobile when hamburger is shown */
    .top-header {
        display: none;
    }
    
    /* Ensure header is sticky on mobile */
    .header-container {
        position: sticky;
        top: 0;
        z-index: 101;
    }
    
    .main-nav {
        position: sticky;
        top: 0;
    }
    
    /* Ensure no horizontal overflow on mobile */
    .main-nav .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 6rem 1rem 4rem;
    }
    
    .world-leader-content {
        padding: 0 1rem;
    }
    
    .about-clinic-content {
        padding: 0 1rem;
    }
    
    .pricing-cards {
        padding: 0 1rem;
    }
    
    .special-offers-content {
        padding: 0 1rem;
    }
    
    /* Prevent horizontal overflow on mobile only */
    body, html {
        overflow-x: hidden;
    }
    
    .homepage {
        overflow-x: hidden;
    }
    
    /* Fix padding on mobile to prevent overflow */
    .top-header .container,
    .main-nav .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 6rem 1rem 4rem;
    }
    
    .world-leader-content {
        padding: 0 1rem;
    }
    
    .about-clinic-section {
        padding: 5rem 1rem;
    }
    
    .pricing-section {
        padding: 6rem 1rem;
    }
    
    .service-description-section {
        padding: 5rem 1rem;
    }
    
    .contact-section {
        padding: 5rem 1rem;
    }
    
    .nav-brand .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .footer-logo-image {
        height: 50px;
        max-width: 200px;
    }
    
    .skills-progress {
        gap: 2rem;
    }
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-background {
    stroke: #e0e0e0;
}

.progress-ring-progress {
    stroke: #20b2aa;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percentage {
    font-size: 1.75rem;
    font-weight: bold;
    color: #20b2aa;
    line-height: 1.2;
}

.progress-label {
    font-size: 0.85rem;
    color: #1a2332;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(32, 178, 170, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(32, 178, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a2332;
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.5px;
}

.pricing-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    font-weight: 300;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(32, 178, 170, 0.3);
}

.pricing-card-popular {
    border: 3px solid #20b2aa;
    box-shadow: 0 15px 50px rgba(32, 178, 170, 0.4);
}

.pricing-card-popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #20b2aa, #17a2b8, #20b2aa);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
    padding: 0.6rem 3.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4);
}

.pricing-card-header {
    background: linear-gradient(135deg, #20b2aa 0%, #17a2b8 50%, #20b2aa 100%);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

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

.pricing-card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.pricing-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-icon svg {
    width: 55px;
    height: 55px;
}

.pricing-card-body {
    padding: 3rem 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 0.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #1a2332, #20b2aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-amount::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #20b2aa, #17a2b8);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.pricing-desc {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    min-height: 3.5rem;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: #495057;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    color: #20b2aa;
    padding-left: 0.5rem;
}

.pricing-features svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.pricing-features li:hover svg {
    transform: scale(1.2);
}

.btn-pricing {
    background: linear-gradient(135deg, #1a2332 0%, #253040 100%);
    color: #fff;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    justify-content: center;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-pricing:hover {
    background: linear-gradient(135deg, #20b2aa 0%, #17a2b8 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.4);
    color: #fff;
    border-color: #20b2aa;
}

.btn-pricing svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-pricing:hover svg {
    transform: translateX(5px);
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: bold;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card-home {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card-home h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card-home .price {
    font-size: 1.75rem;
    color: #28a745;
    font-weight: bold;
    margin: 1rem 0;
}

.service-card-home .btn-primary {
    background: #20b2aa;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 500;
}

.service-card-home .btn-primary:hover {
    background: #1a9b94;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: #fff;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.contact-section .btn-primary {
    background: #20b2aa;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.contact-section .btn-primary:hover {
    background: #1a9b94;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
    font-size: 2.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-item h3 {
    color: #1a2332;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer - Removed duplicate, using styles from below */

/* Responsive */
@media (max-width: 1200px) {
    .world-leader-content {
        grid-template-columns: 1fr;
    }
    
    .service-card-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Top header is hidden by earlier media query - keep it hidden */
    .top-header {
        display: none !important;
    }
    
    .header-item {
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 10000;
    }
    
    .nav-item {
        width: 100%;
        padding: 0 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .main-nav-menu > .nav-item > a {
        padding: 1rem 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-nav-menu.active {
        max-height: 600px;
        padding: 1rem 0;
    }
    
    .main-nav-menu .nav-item {
        width: 100%;
        padding: 0 1rem;
        border-bottom: none;
        box-sizing: border-box;
    }
    
    .main-nav-menu .nav-cta-item {
        border-top: none;
    }
    
    .main-nav-menu > .nav-item > a {
        padding: 1rem 0;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
    
    .main-nav-menu > .nav-item > a::after {
        display: none;
    }
    
    .nav-cta-item {
        margin-left: 0;
        width: 100%;
        padding: 0 1rem;
        border-top: none;
        margin-top: 0.5rem;
        padding-top: 1rem;
        box-sizing: border-box;
    }
    
    .nav-cta-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.8);
        margin-top: 0.5rem;
        border-radius: 4px;
    }
    
    .dropdown-menu a {
        color: #1a2332;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(32, 178, 170, 0.1);
        color: #20b2aa;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-sidebar {
        display: none;
    }
    
    .world-leader-section {
        margin-top: -50px;
        padding: 0 1rem 2rem;
    }
    
    .world-leader-content {
        grid-template-columns: 1fr;
    }
    
    .teal-panel {
        padding: 3rem 2rem;
    }
    
    .headline-line1 {
        font-size: 2rem;
    }
    
    .headline-line2 {
        font-size: 2.5rem;
    }
    
    .services-grid-panel {
        padding: 2rem 1.5rem;
    }
    
    .service-card-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        height: 60px;
    }
    
    .teal-watermark {
        font-size: 12rem;
    }
    
    .headline-line1 {
        font-size: 2rem;
    }
    
    .headline-line2 {
        font-size: 1.75rem;
    }
    
    .about-clinic-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-main-title {
        font-size: 2rem;
    }
    
    .skills-progress {
        gap: 2rem;
    }
    
    .pricing-section {
        padding: 4rem 1.5rem;
    }
    
    .pricing-header {
        margin-bottom: 3rem;
    }
    
    .pricing-title {
        font-size: 2.5rem;
        margin: 0.75rem 0 1rem;
    }
    
    .pricing-description {
        font-size: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pricing-card {
        border-radius: 16px;
    }
    
    .pricing-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .popular-badge {
        top: 15px;
        right: -30px;
        padding: 0.5rem 3rem;
        font-size: 0.7rem;
    }
    
    .pricing-card-header {
        padding: 2.5rem 1.5rem 2rem;
    }
    
    .pricing-card-header h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .pricing-icon {
        width: 90px;
        height: 90px;
    }
    
    .pricing-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .pricing-card-body {
        padding: 2.5rem 1.5rem;
    }
    
    .pricing-amount {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        min-height: auto;
    }
    
    .pricing-features {
        margin-bottom: 2rem;
    }
    
    .pricing-features li {
        padding: 0.875rem 0;
        font-size: 0.95rem;
    }
    
    .btn-pricing {
        padding: 1.1rem 1.75rem;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-description-content {
        grid-template-columns: 1fr;
    }
    
    .about-clinic-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-clinic-left {
        padding: 1rem 0;
    }
    
    .clinic-skills-right {
        padding: 1rem 0;
    }
    
    .about-clinic-image {
        max-height: 300px;
        object-fit: cover;
    }
    
    .service-price-duration-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 6rem 1.5rem 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    
    .special-offers-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .special-offers-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .special-offers-title {
        font-size: 2rem;
    }
    
    .special-offers-form {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .special-offers-form-fields {
        padding: 1rem 1.25rem;
    }
    
    .special-offers-form input {
        padding: 0.75rem 0;
    }
    
    .special-offers-form input:first-child {
        padding-bottom: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-special-offer {
        border-radius: 0 0 12px 12px;
        padding: 1rem 1.5rem;
        width: 100%;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
}

/* Service Description Tabs Section */
.service-description-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.service-description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: center;
}

.service-description-left {
    max-width: 600px;
}

.service-description-header {
    margin-bottom: 2rem;
}

.service-subtitle {
    color: #20b2aa;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a2332;
    margin-top: 0.5rem;
    line-height: 1.2;
}

.service-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

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

.service-feature-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-feature-icon {
    margin-bottom: 1rem;
}

.service-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.service-feature-item p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

.service-price-duration-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-info-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-info-value {
    font-size: 1.1rem;
    color: #1a2332;
    font-weight: 600;
}

.btn-service-cta {
    background: #1a2332;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-service-cta:hover {
    background: #253040;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-description-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
}

.service-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.service-tabs-container {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.service-tabs {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.service-tab {
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #1a2332;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
}

.service-tab-name {
    font-weight: 600;
    font-size: 1rem;
}

.service-tab-info {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.service-tab-duration {
    font-size: 0.8rem;
}

.service-tab-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #20b2aa;
}

.service-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #20b2aa;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-tab:hover {
    color: #20b2aa;
}

.service-tab.active {
    color: #20b2aa;
    border-bottom-color: #20b2aa;
}

.service-tab.active::after {
    opacity: 1;
}

/* Special Offers Section */
.special-offers-section {
    margin: 5rem 0;
}

.special-offers-banner {
    position: relative;
}

.special-offers-top-bar {
    height: 8px;
    background: linear-gradient(90deg, #1a2332 0%, #253040 50%, #1a2332 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(32, 178, 170, 0.3) 0%, transparent 50%);
}

.special-offers-main {
    background: #20b2aa;
    padding: 3rem 2rem;
}

.special-offers-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.special-offers-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.special-offers-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-offers-icon svg {
    width: 100%;
    height: 100%;
}

.special-offers-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.special-offers-label {
    color: #1a2332;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-offers-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.special-offers-right {
    flex: 1;
    max-width: 500px;
}

.special-offers-form {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    align-items: stretch;
}

.special-offers-form-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.5rem;
}

.special-offers-form input {
    flex: 1;
    padding: 0.5rem 0;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #1a2332;
    background: transparent;
    font-family: inherit;
}

.special-offers-form input:first-child {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
}

.special-offers-form input:last-of-type {
    padding-top: 0.5rem;
}

.special-offers-form input::placeholder {
    color: #9e9e9e;
    font-size: 0.95rem;
}

.special-offers-form input:focus {
    color: #1a2332;
}

.btn-special-offer {
    background: #1a2332;
    color: #fff;
    padding: 1.25rem 1.75rem;
    border: none;
    font-weight: 600;
    font-size: 1.25rem;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 0 50px 50px 0;
    min-width: 60px;
}

.btn-special-offer:hover {
    background: #253040;
    transform: scale(1.05);
}

/* Contact Form Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2.5rem 1.25rem;
    }
    
    .contact-section .section-title {
        font-size: 1.875rem;
        margin-bottom: 1.75rem;
    }
    
    .contact-wrapper {
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
    }
}

@media (max-width: 968px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-card-popular {
        grid-column: span 2;
    }
    
    .special-offers-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .special-offers-left {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
    
    .special-offers-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .special-offers-main {
        padding: 2rem 1.5rem;
    }
    
    .special-offers-title {
        font-size: 1.75rem;
    }
    
    .special-offers-icon {
        width: 50px;
        height: 50px;
    }
    
    .special-offers-form-fields {
        padding: 0.875rem 1rem;
    }
    
    .special-offers-form input {
        font-size: 0.9rem;
    }
    
    .special-offers-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .special-offers-form {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .special-offers-form-fields {
        padding: 1rem 1.25rem;
    }
    
    .special-offers-form input {
        padding: 0.75rem 0;
    }
    
    .special-offers-form input:first-child {
        padding-bottom: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-special-offer {
        border-radius: 0 0 12px 12px;
        padding: 1rem 1.5rem;
        width: 100%;
    }
    
    .pricing-section {
        padding: 3.5rem 1rem;
    }
    
    .pricing-header {
        margin-bottom: 2.5rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-description {
        font-size: 0.95rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card-popular {
        grid-column: span 1;
    }
    
    .pricing-card-header {
        padding: 2rem 1.5rem 1.75rem;
    }
    
    .pricing-card-header h3 {
        font-size: 1.35rem;
    }
    
    .pricing-icon {
        width: 80px;
        height: 80px;
    }
    
    .pricing-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .pricing-card-body {
        padding: 2rem 1.5rem;
    }
    
    .pricing-amount {
        font-size: 2.75rem;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-wrapper {
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.25rem 1rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.625rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.25rem;
    }
    
    .contact-form label {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }
    
    .contact-form .multi-select {
        min-height: 100px;
        width: 100%;
    }
    
    /* Custom Multi-Select Dropdown Styles */
    .custom-multi-select {
        position: relative;
        width: 100%;
    }
    
    .multi-select-display {
        position: relative;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        background: #fff;
        min-height: 48px;
        padding: 10px 40px 10px 12px;
        cursor: pointer;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
        transition: all 0.2s;
    }
    
    .multi-select-display:hover {
        border-color: #adb5bd;
    }
    
    .multi-select-display.active {
        border-color: #20b2aa;
        box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
    }
    
    .selected-items {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        flex: 1;
        min-width: 0;
    }
    
    .selected-items .placeholder-text {
        color: #adb5bd;
        font-size: 1rem;
    }
    
    .selected-items:not(:empty) .placeholder-text {
        display: none;
    }
    
    .selected-item {
        background: #20b2aa;
        color: #fff;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 0.875rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-weight: 500;
        white-space: nowrap;
    }
    
    .selected-item-remove {
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1rem;
        line-height: 1;
        opacity: 0.9;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.2s;
    }
    
    .selected-item-remove:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    .multi-select-search-wrapper {
        padding: 12px;
        border-bottom: 1px solid #e9ecef;
        background: #f8f9fa;
    }
    
    .multi-select-search {
        width: 100%;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        padding: 8px 12px;
        font-size: 0.95rem;
        color: #1a2332;
        background: #fff;
        font-family: inherit;
        outline: none;
        transition: border-color 0.2s;
    }
    
    .multi-select-search:focus {
        border-color: #20b2aa;
        box-shadow: 0 0 0 2px rgba(32, 178, 170, 0.1);
    }
    
    .multi-select-search::placeholder {
        color: #adb5bd;
    }
    
    .multi-select-arrow {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        color: #6c757d;
        font-size: 0.875rem;
        transition: transform 0.3s ease;
    }
    
    .multi-select-display.active .multi-select-arrow {
        transform: translateY(-50%) rotate(180deg);
        color: #20b2aa;
    }
    
    .multi-select-dropdown {
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #20b2aa;
        border-radius: 6px;
        max-height: 320px;
        overflow: hidden;
        z-index: 1000;
        display: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 2px;
    }
    
    .multi-select-options {
        max-height: 240px;
        overflow-y: auto;
    }
    
    /* Custom scrollbar for dropdown options */
    .multi-select-options::-webkit-scrollbar {
        width: 8px;
    }
    
    .multi-select-options::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    .multi-select-options::-webkit-scrollbar-thumb {
        background: #20b2aa;
        border-radius: 4px;
    }
    
    .multi-select-options::-webkit-scrollbar-thumb:hover {
        background: #1a9a94;
    }
    
    .multi-select-dropdown {
        display: none;
    }
    
    .multi-select-dropdown.show {
        display: block;
    }
    
    .multi-select-options {
        padding: 4px 0;
    }
    
    .multi-select-option {
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        transition: background-color 0.2s;
    }
    
    /* Hide display, search, and arrow for services section */
    #contact_services_wrapper .multi-select-display {
        display: none !important;
    }
    
    #contact_services_wrapper .multi-select-search-wrapper {
        display: none !important;
    }
    
    #contact_services_wrapper .multi-select-arrow {
        display: none !important;
    }
    
    #contact_services_wrapper .multi-select-dropdown {
        display: block !important;
        position: static !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        margin-top: 0 !important;
    }
    
    #contact_services_wrapper .multi-select-options {
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .multi-select-option:hover {
        background-color: #f8f9fa;
    }
    
    .multi-select-option.hidden {
        display: none;
    }
    
    .multi-select-option input[type="checkbox"] {
        cursor: pointer;
        width: 18px;
        height: 18px;
        accent-color: #20b2aa;
        flex-shrink: 0;
    }
    
    .multi-select-option label {
        cursor: pointer;
        margin: 0;
        flex: 1;
        font-size: 0.95rem;
        color: #1a2332;
        user-select: none;
    }
    
    .multi-select-option input[type="checkbox"]:checked + label {
        color: #20b2aa;
        font-weight: 500;
    }
    
    .multi-select-no-results {
        padding: 0;
        border-top: 1px solid #e9ecef;
    }
    
    .contact-form small {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    /* Mobile styles for custom multi-select */
    .multi-select-display {
        min-height: 44px;
        padding: 8px 35px 8px 10px;
    }
    
    .multi-select-search-wrapper {
        padding: 10px;
    }
    
    .multi-select-search {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 7px 10px;
    }
    
    .selected-item {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .selected-item-remove {
        width: 14px;
        height: 14px;
        font-size: 1rem;
    }
    
    .multi-select-dropdown {
        max-height: 280px;
    }
    
    .multi-select-options {
        max-height: 200px;
    }
    
    .multi-select-option {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .multi-select-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 0.75rem;
    }
    
    #contact_services_wrapper .multi-select-options {
        grid-template-columns: 1fr !important;
    }
    
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .pricing-description {
        font-size: 0.9rem;
    }
    
    .pricing-card-header {
        padding: 1.75rem 1.25rem 1.5rem;
    }
    
    .pricing-card-header h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .pricing-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0.75rem;
    }
    
    .pricing-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .pricing-card-body {
        padding: 1.75rem 1.25rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .pricing-desc {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }
    
    .pricing-features li {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    .btn-pricing {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .popular-badge {
        top: 12px;
        right: -28px;
        padding: 0.4rem 2.5rem;
        font-size: 0.65rem;
    }
    
    .contact-section {
        padding: 1.5rem 0.75rem;
    }
    
    .contact-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-wrapper {
        gap: 1.25rem;
    }
    
    .contact-item {
        padding: 1rem 0.75rem;
    }
    
    .contact-item h3 {
        font-size: 0.95rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
    }
    
    .contact-form-wrapper {
        padding: 1.25rem 0.75rem;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a2332;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #20b2aa;
}

.contact-form .multi-select {
    min-height: 120px;
}

.contact-form small {
    display: block;
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Logo Slider Section */
.logo-slider-section {
    padding: 4rem 2rem;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.logo-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.logo-slider {
    display: flex;
    gap: 3rem;
    animation: slide 30s linear infinite;
    width: fit-content;
}

.logo-slide {
    flex-shrink: 0;
    width: 200px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.logo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f7f5 0%, #b8e6e3 100%);
    border-radius: 12px;
    color: #1a2332;
}

.logo-text {
    margin-top: 0.5rem;
}

.logo-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.25rem;
}

.logo-tagline {
    font-size: 0.85rem;
    color: #20b2aa;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer Styles */
.footer-top-bar {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 250px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a2332;
    line-height: 1.2;
}

.footer-logo-tagline {
    display: none; /* Hide tagline */
}

.footer-subscribe {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 400px;
    min-width: 0; /* Allow shrinking on mobile */
}

.footer-email-input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 25px 0 0 25px;
    background: #fff;
    color: #1a2332;
    font-size: 0.95rem;
}

.footer-email-input::placeholder {
    color: #adb5bd;
}

.btn-footer-subscribe {
    padding: 0.75rem 1.5rem;
    background: #20b2aa;
    color: #fff;
    border: none;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-footer-subscribe:hover {
    background: #1a9b94;
}

.footer-arrow {
    font-size: 1.2rem;
    line-height: 1;
    display: inline-block;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-label {
    color: #1a2332;
    font-size: 0.95rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #20b2aa;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    padding: 0;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social-icon:hover {
    background: #1a9b94;
    color: #fff;
}

.footer-main {
    background: #fff;
    padding: 4rem 2rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #20b2aa;
    margin-bottom: 1.5rem;
}

.footer-section-text {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.footer-link::before {
    content: '>';
    color: #6c757d;
}

.footer-link:hover {
    color: #20b2aa;
}

.btn-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #20b2aa;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-footer-contact:hover {
    background: #1a9b94;
}

.footer-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-news-item {
    display: flex;
    gap: 1rem;
}

.footer-news-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder svg {
    width: 40px;
    height: 40px;
}

.footer-news-content {
    flex: 1;
}

.footer-news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-news-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

.footer-bottom {
    background: #f8f9fa;
    padding: 0.75rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 968px) {
    .service-description-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-tabs {
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 0.5rem;
    }
    
    .service-tabs-container {
        text-align: center;
    }
    
    .service-tab {
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        min-width: 120px;
    }
    
    .service-tab-name {
        font-size: 0.9rem;
    }
    
    .service-tab-info {
        font-size: 0.75rem;
    }
    
    .service-tab-duration {
        font-size: 0.7rem;
    }
    
    .service-tab-price {
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-top-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-subscribe {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-email-input {
        border-radius: 25px;
        width: 100%;
    }
    
    .btn-footer-subscribe {
        border-radius: 25px;
        width: 100%;
        padding: 0.875rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}
