/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    --primary-color: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --secondary-color: #1e40af;
    --secondary-dark: #1e3a8a;
    --accent-color: #f97316;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header & Navigation
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
}

/* Upper Navigation */
.upper-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
}

.upper-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.02);
}

.upper-nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--text-medium);
    font-size: 14px;
    transition: var(--transition);
}

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

/* Notification Bell */
.btn-notification {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--text-medium);
    font-size: 16px;
    transition: var(--transition);
}

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

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #ef4444;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
}

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

.btn-signin {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-signin:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Lower Navigation */
.lower-nav {
    background: #064e3b;
    padding: 12px 0;
    border-bottom: none;
}

.lower-nav-content {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--white);
}

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

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    font-size: 10px;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 15px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu li {
    border: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition);
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--gray-50);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav .social-links {
    gap: 10px;
}

.mobile-nav .social-links a {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.mobile-nav .btn-notification {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.mobile-nav .btn-notification .notification-badge {
    min-width: 16px;
    height: 16px;
    font-size: 9px;
    top: -3px;
    right: -3px;
}

.mobile-nav .btn-signin {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav .btn-signin span {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Menu Toggle Active State */
.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    max-height: calc(100vh - 65px);
    overflow-y: auto;
}

/* Custom Scrollbar for Mobile Menu */
.mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: var(--gray-100);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.mobile-menu-list {
    padding: 15px 20px;
}

.mobile-menu-list li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list li a {
    display: block;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition);
}

.mobile-menu-list li a:hover,
.mobile-menu-list li a.active {
    color: var(--primary-color);
    padding-left: 15px;
}

/* Mobile Dropdown Menu */
.mobile-has-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-toggle .dropdown-icon {
    font-size: 10px;
    transition: var(--transition);
}

.mobile-has-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--gray-50);
    margin: 0;
    border-radius: 6px;
}

.mobile-has-dropdown.active .mobile-dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
    margin: 5px 0;
}

/* Custom Scrollbar for Dropdown */
.mobile-dropdown-menu::-webkit-scrollbar {
    width: 3px;
}

.mobile-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid var(--gray-200);
}

.mobile-dropdown-menu li:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu li a {
    padding: 12px 20px;
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 400;
}

.mobile-dropdown-menu li a:hover {
    color: var(--primary-color);
    background: rgba(13, 148, 136, 0.05);
    padding-left: 25px;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
    background-color: #064e3b;
}

/* Hero Background Image */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.55) 0%, rgba(6, 78, 59, 0.5) 50%, rgba(6, 78, 59, 0.45) 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 650px;
    text-align: left;
    padding: 40px 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title span {
    color: #86efac;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(134, 239, 172, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    border: 3px solid #dc2626;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   About Us Section
======================================== */
.about-section {
    background: linear-gradient(180deg, #064e3b 0%, #065f46 50%, #047857 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #86efac;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.section-title span {
    color: #86efac;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #86efac;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-cta {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.about-cta .btn-primary {
    background: var(--white);
    color: #064e3b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-cta .btn-primary:hover {
    background: #86efac;
    color: #064e3b;
    transform: translateY(-3px);
}

.about-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.about-cta .btn-secondary:hover {
    background: var(--white);
    color: #064e3b;
    transform: translateY(-3px);
}

.about-image {
    position: relative;
    height: 100%;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #86efac;
    z-index: -1;
}

/* About Section Responsive */
@media (max-width: 991px) {
    .about-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-wrapper {
        height: auto;
    }
    
    .image-wrapper img {
        height: 350px;
        width: 100%;
        object-fit: cover;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-section .container {
        padding: 0 8px;
    }
    
    .image-wrapper img {
        height: 280px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 20px 0;
        margin: 25px 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .about-cta {
        justify-content: space-between;
        gap: 10px;
    }
    
    .about-cta .btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-section .container {
        padding: 0 6px;
    }
    
    .image-wrapper img {
        height: 250px;
    }
    
    .section-tag {
        padding: 6px 15px;
        font-size: 11px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        padding: 15px 0;
        margin: 20px 0;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .about-cta {
        justify-content: space-between;
    }
    
    .about-cta .btn {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
}

/* ========================================
   Our Services Section
======================================== */
.services-section {
    background: var(--white);
    padding: 80px 0;
}

.services-header {
    text-align: left;
    width: 100%;
    margin: 0 0 50px 0;
}

.services-header .section-tag {
    background: rgba(6, 78, 59, 0.1);
    color: #064e3b;
}

.section-title-dark {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title-dark span {
    color: #064e3b;
}

.services-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.service-card {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: left;
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    width: 100%;
}

.service-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 15px;
    flex: 1;
    width: 100%;
}

.btn-service {
    display: inline-block;
    padding: 8px 20px;
    background: #064e3b;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-service:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* ========================================
   DNA Paternity Test Promo Section
======================================== */
.dna-promo-section {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.85) 0%, rgba(4, 120, 87, 0.85) 100%),
                url('images/Doctor .jpg') center/cover no-repeat;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.dna-promo-section::before {
    content: 'OFFER';
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    letter-spacing: 20px;
    white-space: nowrap;
    animation: slideOffer 15s linear infinite;
    pointer-events: none;
}

.dna-promo-section::after {
    content: 'SPECIAL OFFER';
    position: absolute;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    bottom: -20%;
    right: -5%;
    letter-spacing: 15px;
    white-space: nowrap;
    animation: slideOfferReverse 20s linear infinite;
    pointer-events: none;
}

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

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

.dna-promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.dna-promo-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-badge {
    background: #dc2626;
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(220, 38, 38, 0.4);
    }
}

.promo-badge i {
    font-size: 0.9rem;
}

.dna-promo-text h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.dna-promo-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
    display: none;
}

.dna-promo-features {
    display: flex;
    align-items: center;
    gap: 25px;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.85rem;
    white-space: nowrap;
}

.promo-feature i {
    color: #86efac;
    font-size: 1rem;
}

.promo-feature strong {
    font-weight: 700;
}

.btn-promo {
    background: var(--white);
    color: #064e3b;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-promo:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* DNA Promo Responsive */
@media (max-width: 1200px) {
    .dna-promo-content {
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align: left;
    }
    
    .dna-promo-text {
        flex-direction: row;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .dna-promo-section {
        padding: 20px 0;
    }
    
    .dna-promo-content {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    
    .dna-promo-text {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .dna-promo-features {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .promo-feature {
        font-size: 0.8rem;
    }
    
    .dna-promo-text h3 {
        font-size: 1.1rem;
    }
    
    .btn-promo {
        margin-left: auto;
    }
}

@media (max-width: 575px) {
    .dna-promo-section .container {
        padding: 0 10px;
    }
    
    .dna-promo-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .promo-feature {
        font-size: 0.75rem;
        justify-content: flex-start;
    }
    
    .btn-promo {
        width: auto;
        justify-content: center;
        padding: 10px 20px;
        margin-left: auto;
    }
}

/* Services Responsive */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 -10px;
    }
    
    .service-card {
        margin: 0;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .btn-service {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section .container {
        padding: 0 10px;
    }
    
    .services-grid {
        gap: 15px;
        margin: 0;
    }
    
    .service-image {
        height: 200px;
    }
}

/* ========================================
   Meet Our Doctor Spotlight Section
======================================== */
.doctor-spotlight-section {
    background: linear-gradient(180deg, #064e3b 0%, #065f46 50%, #047857 100%);
    padding: 60px 0;
}

.doctor-spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.doctor-spotlight-image {
    position: relative;
    overflow: hidden;
}

.doctor-spotlight-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top center;
}

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

.doctor-spotlight-info .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.doctor-spotlight-name {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin: 15px 0 8px 0;
}

.doctor-spotlight-title {
    font-size: 1.1rem;
    color: #86efac;
    font-weight: 600;
    margin-bottom: 10px;
}

.doctor-spotlight-experience {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.doctor-spotlight-experience i {
    color: #fbbf24;
    margin-right: 8px;
}

.doctor-spotlight-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.doctor-spotlight-info .btn-primary {
    background: var(--white);
    color: #064e3b;
}

.doctor-spotlight-info .btn-primary:hover {
    background: #86efac;
    color: #064e3b;
}

/* Doctor Spotlight Responsive */
@media (max-width: 991px) {
    .doctor-spotlight-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .doctor-spotlight-image img {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .doctor-spotlight-section {
        padding: 50px 0;
    }
    
    .doctor-spotlight-section .container {
        padding: 0 8px;
    }
    
    .doctor-spotlight-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .doctor-spotlight-image {
        max-width: 100%;
        margin: 0;
    }
    
    .doctor-spotlight-image img {
        height: 350px;
        width: 100%;
    }
    
    .doctor-spotlight-info {
        text-align: left;
        padding: 0 12px;
    }
    
    .doctor-spotlight-info .section-tag {
        margin: 0;
    }
}

@media (max-width: 575px) {
    .doctor-spotlight-section {
        padding: 40px 0;
    }
    
    .doctor-spotlight-section .container {
        padding: 0 6px;
    }
    
    .doctor-spotlight-image {
        max-width: 100%;
    }
    
    .doctor-spotlight-image img {
        height: 280px;
    }
    
    .doctor-spotlight-info {
        padding: 0 10px;
    }
    
    .doctor-spotlight-bio {
        font-size: 0.9rem;
    }
}

/* ========================================
   Health & Wellness Section
======================================== */
.wellness-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.wellness-header {
    text-align: left;
    max-width: 100%;
    margin: 0 0 40px 0;
}

.wellness-header .section-tag {
    background: rgba(6, 78, 59, 0.1);
    color: #064e3b;
}

.wellness-header .section-title {
    margin-top: 15px;
    color: var(--text-dark);
}

.wellness-header .section-title span {
    color: #064e3b;
}

.wellness-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-top: 15px;
}

/* USP Banner */
.wellness-usp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    padding: 25px;
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    border-radius: 12px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.usp-item i {
    font-size: 1.2rem;
    color: #86efac;
}

/* Wellness Grid */
.wellness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.wellness-card {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border-radius: 0;
}

.wellness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.wellness-card.featured {
    border: 2px solid #064e3b;
    border-radius: 0;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #064e3b;
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.wellness-card-header {
    padding: 25px;
    text-align: center;
    color: var(--white);
    border-radius: 0;
}

.wellness-card-header.women {
    background: linear-gradient(135deg, #db2777 0%, #ec4899 100%);
}

.wellness-card-header.men {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.wellness-card-header.family {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
}

.wellness-card-header i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.wellness-card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.wellness-card-body {
    padding: 25px;
}

.wellness-features {
    list-style: none;
    margin-bottom: 25px;
}

.wellness-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-medium);
    border-bottom: 1px solid #f0f0f0;
}

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

.wellness-features li i {
    color: #10b981;
    font-size: 0.8rem;
}

.wellness-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #064e3b;
}

.btn-wellness {
    display: block;
    width: 100%;
    padding: 12px;
    background: #064e3b;
    color: var(--white);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-wellness:hover {
    background: #047857;
}

/* Community Care */
.community-care {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 30px;
    border-radius: 12px;
}

.community-care-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.community-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.community-icon i {
    font-size: 2rem;
    color: #d97706;
}

.community-text {
    flex: 1;
}

.community-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 5px;
}

.community-text p {
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.5;
}

.community-care .btn-secondary {
    background: #d97706;
    color: var(--white);
    border: none;
    border-radius: 8px;
    flex-shrink: 0;
}

.community-care .btn-secondary:hover {
    background: #b45309;
}

/* Wellness Responsive */
@media (max-width: 991px) {
    .wellness-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .wellness-card-header {
        padding: 20px;
    }
    
    .wellness-card-header i {
        font-size: 1.5rem;
    }
    
    .wellness-card-header h3 {
        font-size: 1rem;
    }
    
    .wellness-card-body {
        padding: 20px;
    }
    
    .wellness-features li {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .wellness-section {
        padding: 50px 0;
    }
    
    .wellness-section .container {
        padding: 0 8px;
    }
    
    .wellness-usp {
        gap: 15px;
        padding: 20px;
        border-radius: 0;
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .usp-item {
        font-size: 0.8rem;
    }
    
    .wellness-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        margin: 0 0 40px;
    }
    
    .community-care-content {
        flex-direction: column;
        text-align: center;
    }
    
    .community-care .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .wellness-section {
        padding: 40px 0;
    }
    
    .wellness-section .container {
        padding: 0 6px;
    }
    
    .wellness-usp {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px;
        margin-left: -6px;
        margin-right: -6px;
    }
    
    .usp-item {
        justify-content: flex-start;
        font-size: 0.75rem;
    }
    
    .featured-badge {
        font-size: 0.6rem;
        padding: 4px 35px;
        right: -35px;
        top: 12px;
    }
    
    .community-care {
        padding: 25px 15px;
    }
    
    .community-icon {
        width: 60px;
        height: 60px;
    }
    
    .community-icon i {
        font-size: 1.5rem;
    }
}

/* ========================================
   Reviews Section
======================================== */
.reviews-section {
    background: var(--white);
    padding: 60px 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.btn-add-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    margin-top: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-add-review:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.reviews-header .section-tag {
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary-color);
}

.reviews-header .section-title {
    margin-top: 15px;
    font-size: 2rem;
    color: var(--text-dark);
}

.reviews-header .section-title span {
    color: var(--primary-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--gray-50);
    padding: 24px 20px;
    border-radius: 0;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

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

.review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.review-rating i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.author-service {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Reviews Responsive */
@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-section .container {
        padding: 0 8px;
    }
    
    .reviews-grid {
        display: block;
        overflow: hidden;
        position: relative;
        min-height: 280px;
    }
    
    .review-card {
        min-width: 100%;
        padding: 20px 16px;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    }
    
    .review-card.active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }
    
    .review-card.prev {
        opacity: 0;
        visibility: hidden;
    }
    
    .reviews-header .section-title {
        font-size: 1.6rem;
    }
    
    .reviews-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    
    .reviews-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gray-300);
        cursor: pointer;
        transition: var(--transition);
    }
    
    .reviews-dot.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }
}

@media (max-width: 575px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-section .container {
        padding: 0 6px;
    }
    
    .review-text {
        font-size: 0.85rem;
    }
    
    .review-card {
        padding: 18px 14px;
    }
}

/* ========================================
   Contact Us Section
======================================== */
.contact-section {
    background: linear-gradient(180deg, #064e3b 0%, #065f46 50%, #047857 100%);
    padding: 60px 0;
}

.contact-header {
    text-align: left;
    margin-bottom: 40px;
}

.contact-header .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 15px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
}

.contact-form-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #064e3b;
}

.form-group select {
    cursor: pointer;
    background: var(--white);
}

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

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: #86efac;
}

.contact-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
}

.contact-text p {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 3px;
}

.contact-text a {
    font-size: 0.95rem;
    color: #86efac;
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--white);
}

.btn-callback {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #86efac;
    color: #064e3b;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    margin-top: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-callback i {
    font-size: 0.7rem;
}

.btn-callback:hover {
    background: var(--white);
}

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

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 380px;
    padding: 30px;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: #064e3b;
    color: var(--white);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header i {
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.callback-form .form-group {
    margin-bottom: 15px;
}

.callback-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.callback-form .form-group input:focus {
    outline: none;
    border-color: #064e3b;
}

.callback-form .btn-primary {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
}

.contact-map {
    flex: 1;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 12px;
}

/* Contact Responsive */
@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .contact-item {
        flex: 1;
        min-width: 150px;
    }
    
    .contact-map {
        min-height: 250px;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-details {
        flex-direction: column;
    }
    
    .contact-item {
        min-width: 100%;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .contact-text a {
        font-size: 0.85rem;
    }
}

/* ========================================
   Responsive Design
======================================== */

/* Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .nav-menu {
        gap: 50px;
    }
    
    .hero-content {
        max-width: 900px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-menu li a {
        font-size: 13px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .upper-nav,
    .lower-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-content {
        text-align: left;
        max-width: 100%;
        padding: 40px 20px;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .hero-cta {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn {
        width: auto;
        max-width: none;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 24px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .mobile-nav-right {
        gap: 10px;
    }
    
    .mobile-nav .social-links {
        gap: 8px;
    }
    
    .mobile-nav .social-links a {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .hero {
        min-height: auto;
        padding-top: 160px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .mobile-menu-list li a {
        padding: 12px 10px;
        font-size: 14px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 24px;
    }
}

/* Extra Small Devices (up to 375px) */
@media (max-width: 375px) {
    .logo-img {
        height: 45px;
    }
    
    .hero {
        padding-top: 150px;
    }
    
    .mobile-nav .social-links a:nth-child(3) {
        display: none;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
}

/* Header scroll effect */
.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header.scrolled .upper-nav {
    padding: 8px 0;
}

.header.scrolled .lower-nav {
    padding: 10px 0;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: #064e3b;
    padding: 50px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    padding-right: 20px;
    text-align: left;
}

.footer-logo {
    display: inline-block;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--gray-300);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 3px;
}

.footer-contact li a,
.footer-contact li span {
    color: var(--gray-300);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--primary-light);
}

/* Footer Actions */
.footer-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-footer {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.btn-footer:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-footer-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-footer-primary:hover {
    background: var(--primary-dark);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 0.8rem;
}

.footer-credit a {
    color: var(--primary-light);
    font-weight: 500;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--white);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 25px 20px;
        text-align: left;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column h4::after {
        left: 0;
        transform: none;
    }
    
    .footer-contact li {
        justify-content: flex-start;
    }
    
    .footer-actions {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer .container {
        padding: 0 12px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 20px 15px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .footer-social a {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .footer-column ul li {
        margin-bottom: 8px;
    }
    
    .footer-column ul li a {
        font-size: 0.75rem;
    }
    
    .footer-contact li {
        margin-bottom: 10px;
        gap: 8px;
    }
    
    .footer-contact li i {
        font-size: 0.75rem;
    }
    
    .footer-contact li a,
    .footer-contact li span {
        font-size: 0.75rem;
    }
    
    .footer-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }
    
    .btn-footer {
        padding: 8px 14px;
        font-size: 0.7rem;
    }
}

/* ==================== */
/* Floating Buttons     */
/* ==================== */

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background: #1fb855;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #333;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #ffc107;
    color: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Responsive Floating Buttons */
@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}
