/* Modern Reset & Base Styles */
:root {
    --primary: #0d173c;
    /* Medical Cyan/Teal */
    --primary-dark: #0d173c;
    --secondary: #2C3E50;
    /* Dark Slate */
    --accent: #FF6B6B;
    /* Soft Red for urgency/CTAs */
    --light: #F8F9FA;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #6C757D;
    --gradient: linear-gradient(135deg, #0d173c 0%, #0d173c 100%);
    --shadow: 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);
    --radius: 12px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--secondary);
}

h2 {
    font-size: 2.25rem;
    color: var(--secondary);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 5rem 0;
}

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

.text-left {
    text-align: left;
}

.bg-light {
    background-color: var(--light);
}

.bg-dark {
    background-color: var(--secondary);
    color: var(--white);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-hero {
    background: linear-gradient(135deg, #0d173c 0%, #0a6faf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 23, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 23, 60, 0.4);
}

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

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

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary:hover {
    background: var(--light);
}

.full-width {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 25px 0 15px;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1400px;
    width: 95%;
}

.header .logo img {
    height: 85px;
    width: auto;
}

.common_ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

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

.main_menu_inner {
    display: flex;
    align-items: center;
    margin: 0;
}

.main_menu_inner>li>a {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: #1a2a47;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.main_menu_inner>li>a:hover,
.main_menu_inner>li.active>a {
    color: #1e6fae;
}

.main_menu_inner>li:first-child>a,
.button-dropdown:hover>a {
    color: #1e6fae;
}

/* Dropdown */
.button-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1a2a47;
    transition: 0.3s;
    margin-left: 5px;
}

.button-dropdown:hover .arrow-down {
    border-top-color: #1e6fae;
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -50px;
    background: linear-gradient(135deg, #8CC63F 0%, #1e6fae 40%, #002D54 100%);
    width: auto;
    white-space: nowrap;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    padding: 25px 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 40px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 105px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #8CC63F;
}

.button-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0 5px;
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    text-align: left;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(5px);
}

/* Appointment Button - Vibrant Gradient */
.btn_clr {
    background: linear-gradient(90deg, #1e6fae 0%, #3498db 50%, #8CC63F 100%);
    color: #fff !important;
    border-radius: 100px;
    font-weight: 600 !important;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    font-size: 14px !important;
    padding: 2px;
    display: inline-block;
    transition: all 0.3s;
}

.btn_clr span {
    background: transparent;
    border-radius: 100px;
    display: block;
    padding: 12px 25px;
}

.btn_clr:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Contact Info - Top Right */
.header_contact {
    position: absolute;
    top: -15px;
    right: 15px;
    display: flex;
    gap: 15px;
}

.header_contact li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    font-family: 'Barlow', sans-serif;
    color: #0f71a8;
    letter-spacing: -0.03em;
}

.header_contact li a svg {
    width: 16px;
    height: 16px;
}

/* Mobile Specifics */
.mob-ser {
    display: none;
}

.hamburgaln {
    display: none;
}

@media (max-width: 1199px) {
    .header_contact {
        gap: 15px;
    }

    .main_menu_inner>li {
        padding: 0 10px;
    }

    .main_menu_inner>li>a {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .mhide {
        display: none !important;
    }

    .hamburgaln {
        display: block;
        order: 3;
    }

    .hamburger {
        cursor: pointer;
        padding: 10px;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1a2a47;
        margin: 5px 0;
        transition: 0.3s;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s ease-in-out;
        padding: 80px 30px 40px;
        display: block !important;
    }

    .mobile-menu.active {
        right: 0;
    }

    .main_menu_inner {
        flex-direction: column;
    }

    .main_menu_inner>li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .mob-ser {
        display: block;
    }

    .button-dropdown {
        display: none;
    }
}


/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(13, 23, 60, 0.1), transparent 40%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.badge,
h1.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(13, 23, 60, 0.1);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.trust-signals {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
}

.hero-features {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero-features li {
    font-size: 1rem;
    color: var(--secondary);
    display: flex;
    align-items: flex-start;
}

.check-mark-hero {
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Images & Placeholders */
.hero-image-container {
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Smiles Badge */
.smiles-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.smiles-badge .badge-icon {
    font-size: 1.5rem;
    color: #22c55e;
}

.smiles-badge .badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.smiles-badge .badge-text strong {
    font-size: 1rem;
    color: var(--dark);
}

.smiles-badge .badge-text span {
    font-size: 0.75rem;
    color: var(--gray);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.image-placeholder {
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    background-color: #ddd;
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rounded-img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Intro Split Layout */
.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 1.8rem;
    /* Reduced to fit on one line */
    line-height: 1.2;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1rem;
}

.intro-image-wrapper {
    position: relative;
    z-index: 1;
    min-height: 400px;
    /* Ensure enough space for video */
    width: 100%;
    max-width: 350px;
    /* Restrict width for vertical video */
    margin: 0 auto;
    /* Center it */
    aspect-ratio: 9 / 16;
    /* Vertical video format */
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    /* Keep video contained */
}

/* Offset Background Box for collage effect */
.intro-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80%;
    /* Adjust as needed */
    height: 90%;
    background-color: rgba(13, 23, 60, 0.1);
    border-radius: var(--radius, 10px);
    /* fallback if --radius not defined */
    z-index: -1;
}

/* Make video fully responsive */
.intro-image-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.insta-header {
    position: relative;
    margin-top: 40px;
}

.title_tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #2d3e50;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.title_tag i {
    font-size: 18px;
}

.arrow-line {
    width: 80px;
    height: 2px;
    background: #2d3e50;
    margin: 10px auto 20px;
}

.primary_title {
    font-size: 42px;
    font-weight: 700;
}

.primary_title .green {
    color: #6dbd45;
}

.primary_title .blue {
    color: #1e6fae;
}

/* Optional: arrow graphic like screenshot 1 */
.insta-header::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -20px;
    width: 55px;
    height: 55px;
    background: url('/path-to-arrow-image.png') no-repeat center;
    background-size: contain;
    transform: translateX(-130%);
}

/* Instagram Section */
.instagram-section {
    background: var(--white);
}

/* Title Header with curved arrow */
.insta-title-header {
    margin-bottom: 2rem;
}

.curved-arrow {
    margin-bottom: 0.5rem;
}

.insta-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.rex-world-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.rex-world-title .blue {
    color: #1e6fae;
}

/* Widget Container */
.insta-widget-container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

/* Profile Header */
.insta-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}

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

.profile-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

.profile-text {
    display: flex;
    flex-direction: column;
}

.profile-text strong {
    font-size: 0.95rem;
    color: var(--dark);
}

.post-count {
    font-size: 0.8rem;
    color: var(--gray);
}

.btn-follow {
    background: #1e6fae;
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-follow:hover {
    background: #175a8f;
}

/* Posts Carousel */
.insta-posts-carousel {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.5rem;
    position: relative;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--light);
    color: var(--dark);
}

.posts-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem;
    flex: 1;
    scrollbar-width: none;
}

.posts-wrapper::-webkit-scrollbar {
    display: none;
}

.insta-post {
    flex: 0 0 250px;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-decoration: none;
}

.insta-post:hover {
    transform: translateY(-5px);
}

.insta-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-footer {
    background: linear-gradient(180deg, rgba(30, 111, 174, 0.9) 0%, rgba(13, 23, 60, 0.95) 100%);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.username {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
}

.post-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

/* Instagram responsive */
@media (max-width: 768px) {
    .rex-world-title {
        font-size: 1.8rem;
    }

    .insta-profile-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .profile-info {
        flex-direction: column;
    }

    .insta-post {
        flex: 0 0 200px;
    }

    .insta-post img {
        height: 160px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .rex-world-title {
        font-size: 1.5rem;
    }

    .insta-post {
        flex: 0 0 180px;
    }

    .insta-post img {
        height: 140px;
    }

    .insta-posts-carousel {
        padding: 0.75rem;
    }

    .posts-wrapper {
        gap: 0.75rem;
    }
}


.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 250px;
    animation: float 4s ease-in-out infinite;
}

.card-top-right {
    top: 10%;
    right: -20px;
}

.card-bottom-left {
    bottom: 10%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.icon-small {
    background: rgba(13, 23, 60, 0.1);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    line-height: 1.3;
}

.card-text strong {
    display: block;
    color: var(--secondary);
}

/* Feature List */
.feature-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.check-icon {
    min-width: 24px;
    height: 24px;
    background: rgba(13, 23, 60, 0.1);
    /* Light green/teal */
    color: var(--primary);
    /* Green tick */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 0.2rem;
}

.feature-text strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.95rem;
    margin: 0;
}

.mt-2 {
    margin-top: 1rem;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid #E5E7EB;
    /* Light gray border */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow */
    transition: 0.3s ease;
    text-align: left;
    height: 100%;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 23, 60, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.choose-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    text-align: left;
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.choose-card .card-icon {
    margin-bottom: 1.5rem;
    /* Reuses existing card-icon styles */
}

.choose-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.choose-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

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

.comparison-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.comparison-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.75rem;
    text-align: center;
    font-weight: 500;
}

/* Doctor Profile Section */
.doctor-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.doctor-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 3rem;
}

.doctor-image {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #0891b2 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.doctor-info {
    padding: 2.5rem 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-header h3 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.doctor-header .specialty {
    display: inline-block;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.credential-tag {
    background: linear-gradient(135deg, #1e6fae 0%, #0d173c 100%);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.doctor-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.doctor-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.doctor-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.highlight-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.doctor-highlights span:last-child {
    font-size: 0.95rem;
    color: var(--secondary);
}

.doctor-cta .btn-whatsapp {
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* Doctor Section Responsive */
@media (max-width: 900px) {
    .doctor-card {
        grid-template-columns: 1fr;
    }

    .doctor-image {
        min-height: 350px;
    }

    .doctor-info {
        padding: 2rem;
    }

    .doctor-header h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .doctor-image {
        min-height: 300px;
    }

    .doctor-info {
        padding: 1.5rem;
    }

    .credential-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .experience-badge {
        padding: 0.75rem 1rem;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }
}

/* Process Steps */
.process-section {
    background-color: #2c3e50;
    /* Dark slate blue */
    color: var(--white);
    padding: 6rem 0;
}

.process-section.cost-layout {
    padding: 3rem 0;
}

.text-white-force {
    color: var(--white) !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.process-section .section-header h2 {
    color: var(--white);
}

.process-section p {
    color: rgba(255, 255, 255, 0.9);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Force 4 columns on large screens */
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.step-card {
    position: relative;
    padding: 1rem;
    z-index: 1;
}

.step-number {
    font-size: 6rem;
    /* Much larger */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    /* Very faint transparent white */
    line-height: 1;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    font-family: var(--font-heading);
}

.step-card h3 {
    color: #4cd137;
    /* Bright Green/Cyan similar to screenshot */
    color: var(--primary);
    /* Using primary teal for consistency, can adjust if needed */
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    /* Spacing to sit below/over the number correctly */
    font-size: 1.25rem;
}

.step-card h3 {
    color: #00d2d3;
    /* Brighter Cyan for dark background */
}

/* Centered 3-column steps (for cost section) */
.steps-centered {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 4rem auto 0;
}

@media (max-width: 900px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .step-number {
        font-size: 4rem;
        top: -20px;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .step-card h3 {
        margin-top: 1.5rem;
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.95rem;
    }
}

/* Reviews Section */
.reviews-section {
    background: var(--light);
    overflow: hidden;
}

.reviews-header {
    margin-bottom: 3rem;
}

.reviews-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #1e6fae;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 700;
    font-style: italic;
}

/* Carousel Wrapper */
.reviews-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

/* Navigation Buttons */
.reviews-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.reviews-nav-btn:hover {
    background: #d1d5db;
    color: var(--secondary);
}

.reviews-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Carousel Container */
.reviews-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

/* Review Card */
.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.stars {
    color: #f1c40f;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.show-more {
    color: #1e6fae;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.show-more:hover {
    text-decoration: underline;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.reviewer .name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
}

.reviewer .date {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Responsive Reviews */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .reviews-header h2 {
        font-size: 2rem;
    }

    .review-card {
        flex: 0 0 calc(100% - 0.5rem);
    }

    .reviews-nav-btn {
        width: 40px;
        height: 40px;
    }

    .reviews-carousel-wrapper {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .reviews-header h2 {
        font-size: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .reviews-nav-btn {
        width: 35px;
        height: 35px;
    }
}

/* Cost Section */
.section-title-dark {
    font-size: 2.5rem;
    color: #1e293b;
    /* Dark Slate to match screenshot header */
    margin-bottom: 2rem;
    font-weight: 700;
}

.cost-card.gradient-purple {
    background: linear-gradient(135deg, #6a6be3 0%, #9561e2 100%);
    /* Matching the purple/blue gradient */
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(106, 107, 227, 0.25);
    max-width: 1100px;
    margin: 0 auto;
}

.cost-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cost-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cost-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.offer-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.btn-white-action {
    background: var(--white);
    color: #7c66e3;
    /* Purple text for button */
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-white-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7);
}

.mt-4 {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cost-card h3 {
        font-size: 1.8rem;
    }

    .cost-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* FAQ */
.faq-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Left Column Container */
.faq-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-image-container {
    position: relative;
}

.faq-image-container img {
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    width: 100%;
    border-radius: var(--radius);
}

/* Testimonial Card Overlay on FAQ Image */
.faq-testimonial-card {
    position: absolute;
    bottom: 10px;
    right: -40px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    z-index: 10;
}

.faq-testimonial-card h4 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.faq-testimonial-card p {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border-radius: 50%;
}

.testimonial-author span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

@media (max-width: 900px) {
    .faq-testimonial-card {
        right: 20px;
        bottom: 20px;
        max-width: 250px;
    }
}

.faq-container {
    width: 100%;
    text-align: left;
    padding-left: 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gray);
    font-weight: 400;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: var(--gray);
}

.faq-item.active .faq-question::after {
    content: '-';
    color: var(--secondary);
}

.faq-item.active .faq-question {
    color: var(--secondary);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile FAQ */
@media (max-width: 900px) {
    .faq-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-left-column {
        order: -1;
    }

    .faq-image-container img {
        max-height: 400px;
    }

    .faq-testimonial-card {
        right: 10px;
        bottom: 10px;
        max-width: 200px;
        padding: 1rem;
    }

    .faq-testimonial-card h4 {
        font-size: 1rem;
    }

    .faq-testimonial-card p {
        font-size: 0.8rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.2rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding: 0 1.2rem 1.2rem;
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .faq-content-wrapper {
        gap: 1.5rem;
    }

    .faq-image-container img {
        max-height: 300px;
    }

    .faq-testimonial-card {
        right: 5px;
        bottom: 5px;
        max-width: 160px;
        padding: 0.75rem;
    }

    .faq-testimonial-card h4 {
        font-size: 0.9rem;
    }

    .faq-testimonial-card p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .testimonial-author {
        gap: 0.5rem;
    }

    .author-avatar {
        width: 24px;
        height: 24px;
    }

    .testimonial-author span {
        font-size: 0.8rem;
    }

    .faq-question {
        font-size: 0.85rem;
        padding: 1rem;
    }

    .faq-answer {
        font-size: 0.85rem;
        padding: 0 1rem 1rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.95)), url('assets/clinic-bg.jpg') center/cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text-content {
    text-align: left;
}

.cta-text-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.info-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item strong {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
}

.info-item a,
.info-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.info-item a,
.info-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-features-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-features-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.check-mark {
    color: var(--white);
    /* Green/Teal checkmark */
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Form */
.cta-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.contact-form h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9f9f9;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

/* Mobile CTA */
@media (max-width: 900px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-text-content {
        text-align: center;
    }

    .contact-info-block {
        align-items: center;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

/* Mobile Responsiveness */
@media (max-width: 900px) {

    .hero-container,
    .row,
    .intro-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-content {
        order: 1;
        /* Content first on mobile */
    }

    .intro-image-wrapper {
        order: 2;
        /* Video second on mobile */
        margin-bottom: 2rem;
    }

    .card-top-right {
        right: 0;
    }

    .card-bottom-left {
        left: 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Add toggle logic later */

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: var(--primary);
    }
}

/* New Footer Styles */
.new-footer {
    background: linear-gradient(90deg, #1e5fc9 0%, #0d173c 100%);
    /* Blue gradient */
    color: var(--white);
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 1.5fr;
    /* 4 columns */
    gap: 2rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    /* Light transparent text for headers */
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col p,
.footer-col li {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.links-wrapper {
    display: flex;
    gap: 3rem;
}

.links-wrapper ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.links-wrapper a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.links-wrapper a:hover {
    opacity: 0.8;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

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

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--white);
    color: var(--primary);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        align-items: start;
    }

    .links-wrapper {
        justify-content: flex-start;
        gap: 2rem;
    }
}

/* ================================== */
/* COMPREHENSIVE MOBILE RESPONSIVENESS */
/* ================================== */

/* Tablet Breakpoint (768px) */
@media (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .trust-signals {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .cta-group a {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Intro Section */
    .intro-container {
        gap: 2rem;
    }

    .intro-content h2 {
        font-size: 1.5rem;
    }

    .intro-image-wrapper {
        max-width: 280px;
        min-height: 350px;
    }

    /* Cards */
    .audience-grid,
    .why-choose-grid,
    .comparison-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .audience-card,
    .choose-card {
        padding: 1.5rem;
    }

    /* Process Steps */
    .steps-container {
        gap: 3rem;
    }

    .step-number {
        font-size: 4rem;
        top: -25px;
    }

    .process-section {
        padding: 4rem 0;
    }

    /* Cost Section */
    .cost-card.gradient-purple {
        padding: 2rem 1.5rem;
    }

    .section-title-dark {
        font-size: 1.8rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    /* CTA Section */
    .cta-text-content h2 {
        font-size: 1.8rem;
    }

    .cta-form-container {
        padding: 1.5rem;
    }

    .cta-features-list li {
        font-size: 1rem;
    }

    /* Footer */
    .new-footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .links-wrapper {
        gap: 3rem;
    }

    .contact-list li {
        font-size: 0.9rem;
    }
}

/* Mobile Breakpoint (480px) */
@media (max-width: 480px) {

    /* Typography */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
    }

    .container {
        width: 95%;
        padding: 0 0.5rem;
    }

    .section-padding {
        padding: 2.5rem 0;
    }

    /* Hero */
    .hero {
        padding: 100px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-features li {
        font-size: 0.9rem;
    }

    .badge {
        font-size: 0.75rem;
    }

    /* Navbar */
    .logo img {
        height: 40px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    /* Intro */
    .intro-image-wrapper {
        max-width: 250px;
        min-height: 320px;
    }

    .intro-content h2 {
        font-size: 1.3rem;
    }

    .feature-list {
        gap: 1rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }

    /* Cards */
    .audience-card,
    .choose-card,
    .review-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Steps */
    .step-number {
        font-size: 3rem;
        top: -15px;
    }

    .step-card h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    /* Cost */
    .cost-card h3 {
        font-size: 1.5rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    /* CTA */
    .cta-text-content h2 {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    /* Footer */
    .new-footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-col h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .links-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Mobile Navigation Menu */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a.btn-primary {
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex !important;
    }
}

/* Hide hamburger on desktop */
@media (min-width: 901px) {
    .hamburger {
        display: none;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-call-float {
    background-color: #1e6fae;
}

.btn-whatsapp-float {
    background-color: #25D366;
}

@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
    }
}