/*
 * Elite Level Theme Styles
 * Colors: Deep Red, Leaf Green, Premium Dark Grey
 * Typography: Massive modern san-serif (Outfit), readable body (Inter)
 */

:root {
    /* Perfected Color Palette based on logo */
    --primary-color: #ab1e2d;
    /* Deep Red */
    --primary-hover: #8f1724;
    --primary-light: rgba(171, 30, 45, 0.05);

    --secondary-color: #84c243;
    /* Leaf Green */
    --secondary-hover: #72a938;
    --secondary-light: rgba(132, 194, 67, 0.1);

    --text-main: #1d1d1f;
    /* Apple-style deep rich grey */
    --text-muted: #55565a;

    --bg-main: #ffffff;
    --bg-offwhite: #f5f5f7;
    --bg-dark: #121212;

    --border-color: rgba(0, 0, 0, 0.06);
    --border-radius: 24px;
    --border-radius-sm: 12px;

    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.04);
    --shadow-large: 0 30px 60px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 25px 50px rgba(171, 30, 45, 0.15);
    --shadow-green: 0 20px 40px rgba(132, 194, 67, 0.2);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacer-base: 24px;
    --spacer-medium: 48px;
    --spacer-large: 100px;
    --spacer-xl: 160px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacer-base);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a:hover {
    color: var(--secondary-color);
}

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

/* Structural Utils */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 5%;
}

.py-large {
    padding: var(--spacer-xl) 0;
}

.py-medium {
    padding: var(--spacer-large) 0;
}

.mt-large {
    margin-top: var(--spacer-large);
}

.mt-medium {
    margin-top: var(--spacer-medium);
}

.mb-large {
    margin-bottom: var(--spacer-large);
}

.mb-medium {
    margin-bottom: var(--spacer-medium);
}

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

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

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

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

.w-100 {
    width: 100%;
}

.grid {
    display: grid;
    gap: 40px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Buttons Elite */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: 100px;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-hover);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(171, 30, 45, 0.25);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: var(--shadow-green);
}

.btn-secondary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(132, 194, 67, 0.25);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: transparent;
}

.btn-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.btn-link:hover i {
    transform: translateX(6px);
}

/* Elite Titles */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title h2 span {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-title.text-left p {
    margin: 0;
}

/* Elite Header & Navigation */
.top-bar {
    background-color: var(--text-main);
    color: #fff;
    font-size: 0.9rem;
    padding: 12px 0;
    font-weight: 500;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    margin-right: 25px;
}

.top-bar-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.main-navigation-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1000;
}

.main-navigation-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

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

.site-branding img {
    max-height: 60px;
}

.text-logo a {
    color: var(--text-main);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.text-logo .logo-accent {
    color: var(--primary-color);
    font-weight: 800;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-navigation li {
    margin: 0 15px;
}

.main-navigation a {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-cta {
    margin-left: 20px;
}

.header-cta .btn-primary {
    padding: 12px 30px !important;
    color: #fff !important;
    white-space: nowrap;
}

.header-cta a::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Elite Hero Section (Overlaps & Parallax) */
.hero-section {
    position: relative;
    padding: 12% 0 10%;
    background: var(--bg-offwhite);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-shapes::before,
.hero-bg-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-bg-shapes::before {
    width: 60vw;
    height: 60vw;
    background: var(--secondary-light);
    top: -20%;
    right: -10%;
}

.hero-bg-shapes::after {
    width: 50vw;
    height: 50vw;
    background: var(--primary-light);
    bottom: -10%;
    left: -20%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.hero-content h1 {
    font-size: 4.8rem;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-subtext {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

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

.hero-image-wrap {
    position: relative;
}

.hero-image-inner {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image-inner:hover {
    transform: rotate(0deg);
}

.hero-image-inner img {
    width: 100%;
    display: block;
    filter: contrast(1.05) saturate(1.1);
}

.hero-image-transparent {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-blob-bg {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 85%;
    background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
    z-index: 0;
}

.hero-image-transparent img {
    position: relative;
    z-index: 1;
    width: 90%;
    display: block;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.15));
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1);
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.05);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1);
    }
}

.hero-floating-card {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-large);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 1);
    animation: floating 6s ease-in-out infinite;
    z-index: 5;
}

.hero-floating-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.hero-floating-card div strong {
    display: block;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.hero-floating-card div span {
    font-size: 1rem;
    color: var(--text-muted);
}

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

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

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

/* Elite Icon Grid (Features) */
.features-grid {
    margin-top: 60px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--border-color);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--bg-offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrap {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Elite Doctors Grid */
.doctors-grid {
    margin-top: 60px;
}

.doctor-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    group: relative;
}

.doctor-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-large);
}

.doctor-img-wrap {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--bg-offwhite);
}

.doctor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s ease;
}

.doctor-card:hover .doctor-img-wrap img {
    transform: scale(1.05);
}

.doctor-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: bottom 0.4s ease;
}

.doctor-card:hover .doctor-social {
    bottom: 0;
}

.doctor-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.doctor-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.doctor-info {
    padding: 30px;
    text-align: center;
    position: relative;
    background: #fff;
    z-index: 2;
}

.doctor-info h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.doctor-specialty {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.doctor-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Elite Treatments Layout (Masonry-like feel) */
.treatments-grid {
    margin-top: 60px;
    gap: 40px;
}

.treatment-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-large);
}

.treatment-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.treatment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card:hover .treatment-img img {
    transform: scale(1.1);
}

.treatment-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.treatment-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    z-index: 2;
    border-top: 5px solid var(--secondary-color);
}

.treatment-card:hover .treatment-content {
    border-color: var(--primary-color);
}

.treatment-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.treatment-content h3 a {
    color: var(--text-main);
}

.treatment-excerpt {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Elite Appointment Form (Split Glass Panel) */
.appointment-section {
    padding: 120px 0 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PHBhdGggZD0iTTAgMGgyMHYyMEgwVjB6bTEwIDE1YTUgNSAwIDEwMC0xMCA1IDUgMCAwMDAtMTB6IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.appointment-info {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.appointment-info h3 {
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.appointment-info p {
    font-size: 1.15rem;
    color: #ccc;
    margin-top: 15px;
    margin-bottom: 40px;
}

.appointment-info .contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.appointment-info .contact-list i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.appointment-form-wrap {
    padding: 60px;
}

.elite-form label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.elite-form input,
.elite-form textarea {
    width: 100%;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-offwhite);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

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

.elite-form input:focus,
.elite-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 10px 20px var(--primary-light);
}

.res-success-elite {
    padding: 16px;
    background: var(--secondary-light);
    color: var(--secondary-hover);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.res-error-elite {
    padding: 16px;
    background: #fdf0ef;
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Elite Footer */
.site-footer {
    background: var(--bg-dark);
    color: #888;
    padding-top: 80px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.widget-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.footer-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

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

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

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a {
    color: #888;
    font-size: 1.1rem;
}

.footer-col ul a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.contact-list.list-unstyled li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-list.list-unstyled i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-top: 4px;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 1rem;
}

.info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive Elite */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrap {
        margin-top: 40px;
    }

    .hero-floating-card {
        bottom: 20px;
        left: 20px;
        right: 20px;
        justify-content: center;
    }

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

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .appointment-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-large);
        border-top: 2px solid var(--primary-color);
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .main-navigation li {
        margin: 15px 0;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }

    .header-cta {
        display: none;
    }

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

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .elite-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .info-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Dropdown Menu Styles */
.main-navigation ul li {
    position: relative;
}

.main-navigation ul ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.main-navigation ul li:hover>ul.sub-menu,
.main-navigation ul li:focus-within>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul.sub-menu li {
    display: block;
    margin: 0 !important;
    width: 100%;
}

.main-navigation ul ul.sub-menu li a {
    display: block;
    padding: 12px 24px !important;
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: normal;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.main-navigation ul ul.sub-menu li a::after {
    display: none !important;
}

.main-navigation ul ul.sub-menu li a:hover {
    color: var(--primary-color) !important;
    background-color: var(--primary-light) !important;
    transform: none;
}

.main-navigation ul li.menu-item-has-children>a::after {
    content: '\25BC';
    font-size: 0.6em;
    margin-left: 5px;
    vertical-align: middle;
}