/* Welvita Design System */
:root {
    --color-dark: #1A1228;
    --color-pink: #C41F6B;
    --color-button: #4A3FA5;
    --color-footer-text: #8A86A0;
    --color-white: #FFFFFF;
    --color-light-bg: #F6F4FB;
    --color-text: #4A4560;
    --color-text-muted: #6B6678;
    --font-family: 'Inter', sans-serif;
    --container-max: 1320px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(26, 18, 40, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 18, 40, 0.1);
    --transition: 0.25s ease;
    --subtext-color: #D1D5DC;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: var(--container-max);
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.heading-xl {
    font-weight: 700;
    font-size: 60px;
    line-height: 75px;
    color: var(--color-dark);
}
.breadcrumb-heading{
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: var(--color-white);
}
.heading-lg {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--color-dark);
}

.heading-md {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--color-dark);
}

.text-body {
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    color: var(--color-text) !important;
}

.text-pink {
    color: var(--color-pink);
}
.text-blue {
    color: var(--color-button);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: #3d3490;
    border-color: #3d3490;
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-button);
    border-color: var(--color-button);
}

.btn-outline:hover {
    background: var(--color-button);
    color: var(--color-white);
}

.btn-pink {
    background: var(--color-pink);
    color: var(--color-white);
    border-color: var(--color-pink);
}

.btn-pink:hover {
    background: #a81a5c;
    border-color: #a81a5c;
    color: var(--color-white);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid rgba(26, 18, 40, 0.08);
    height: var(--header-height);
}

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

.site-logo img {
    height: 64px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-weight: 500;
    font-size: 14px;
    color: var(--color-dark);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-pink);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-dark);
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    color: var(--color-pink);
}

.nav-dropdown-icon {
    transition: transform var(--transition);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: var(--color-white);
    border: 1px solid rgba(26, 18, 40, 0.08);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(26, 18, 40, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 100;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown.open .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-dark);
    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    color: var(--color-pink);
    background: rgba(233, 30, 140, 0.06);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.product-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.product-table th { background: var(--color-dark); color: #fff; padding: 12px 16px; font-weight: 600; text-transform: uppercase; font-size: 13px; }
.product-table td { padding: 10px 16px; border: 1px solid rgba(26, 18, 40, 0.1); color: var(--color-text); vertical-align: top; }
.product-table .cat-row td { background: var(--color-button); color: #fff; text-align: center; font-weight: 600; text-transform: uppercase; border-color: var(--color-button); }
.product-table tbody tr:nth-child(even):not(.cat-row) { background: var(--color-light-bg); }

.loader-gif-container {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
}

body.loader-active {
    overflow: hidden;
}

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: var(--color-footer-text);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(138, 134, 160, 0.2);
}

.footer-brand p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
    max-width: 280px;
}

.footer-heading {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 16px;
    color: var(--color-footer-text);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 26px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    font-size: 14px;
}

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

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-footer-text);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-white);
}
.footer-social a img{
    width: 42px;
}
/* Main content spacing */
.site-main {
    min-height: calc(100vh - var(--header-height) - 400px);
}

/* Hero (reusable on inner pages) */
.section-hero {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a2068 55%, var(--color-button) 100%);
    overflow: hidden;
}

.section-hero .heading-xl {
    color: var(--color-white);
}

.page-hero {
    padding-bottom: 5rem;
}

.banner-overlap {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.banner-overlap-img {
    /* object-fit: cover; */
    box-shadow: var(--shadow-md);
}

.card-feature {
    text-align: start;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 18, 40, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-category {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 18, 40, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-category-top {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-category-top svg {
    opacity: 0.4;
}

.card-category-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bg-cat-pink { background: #FADCE8; color: var(--color-pink); }
.bg-cat-purple { background: #EEEDF8; color: #4A3FA5; }
.bg-cat-mint { background: #DFF5F0; color: #0D9488; }
.bg-cat-peach { background: #FFF0E5; color: #EA580C; }
.bg-cat-blue { background: #E0EDFF; color: #2563EB; }
.bg-cat-lavender { background: #EDE9FE; color: #7C3AED; }
.bg-cat-green { background: #E3F5E8; color: #16A34A; }
.bg-cat-rose { background: #FCE7F3; color: #DB2777; }

.tag-rx,
.tag-otc {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    color: var(--color-white);
    line-height: 1.4;
}

.tag-rx { background: #4A3FA5; }
.tag-otc { background: #F59E0B; }

.tag-exp {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: #EEEDF8;
    color: #4A3FA5;
    white-space: nowrap;
}

.job-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 18, 40, 0.06);
    box-shadow: var(--shadow-sm);
}

.step-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-pink);
    color: var(--color-white);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 1rem;
}

.step-circle--purple {
    background: #4A3FA5;
}

.icon-circle-sm {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(196, 31, 107, 0.12);
    color: var(--color-pink);
    margin-bottom: 1rem;
}

.icon-circle-sm.d-inline-flex {
    margin-bottom: 0;
}

.icon-circle-sm--purple {
    background: #EEEDF8;
    color: #4A3FA5;
}

.icon-circle-lg {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-pink);
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.icon-circle-lg--purple {
    background: #EEEDF8;
    color: #4A3FA5;
}

.icon-circle-lg--pink {
    background: #FAEAF1;
    color: #C41F6B;
}

.stats-overlap {
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-glass {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
}

.icon-circle {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #C41F6B;
    color: #FFFFFF;
}

.split-image .badge-overlay {
    position: absolute;
    right: 1rem;
    bottom: -1rem;
    padding: 0.75rem 1rem;
    background: var(--color-pink);
    color: var(--color-white);
    font-weight: 700;
    font-size: 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: grid;
    text-align: center;
}

.card-custom {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 18, 40, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-custom img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.badge-pink {
    display: inline-block;
    background: var(--color-pink);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    width: fit-content;
}

.card-custom .badge-pink {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
}

.featured-overlap {
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}

.card-featured {
    position: relative;
    min-height: 480px;
    height: 480px !important;
}

.card-featured-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(26, 18, 40, 0.9) 0%, rgba(26, 18, 40, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.card-featured-overlay .heading-lg {
    color: var(--color-white);
}

.card-custom-body {
    padding: 1.5rem;
}

.link-arrow {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-button);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow:hover {
    color: var(--color-button);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section */
.section {
    padding: 80px 0;
}

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

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

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-header .eyebrow {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-pink);
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-muted);
}

.section-dark .section-header p {
    color: var(--color-footer-text);
}

.section-dark .heading-lg {
    color: var(--color-white);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(26, 18, 40, 0.06);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(74, 63, 165, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-button);
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-text-muted);
}

/* Service / Product cards */
.item-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(26, 18, 40, 0.06);
}

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

.item-card-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(74, 63, 165, 0.15), rgba(196, 31, 107, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-button);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-card-body {
    padding: 24px;
}

.item-card-body h3 {
    margin-bottom: 8px;
}

.item-card-body p {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.item-card-link {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-pink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.item-card-link:hover {
    color: var(--color-button);
}

/* About block */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-dark), var(--color-button));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 80px;
    font-weight: 700;
}

.about-content .eyebrow {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-pink);
    margin-bottom: 12px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(26, 18, 40, 0.08);
}

.stat-item strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-pink);
    line-height: 1.2;
}

.stat-item span {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* CTA Banner */
.cta-banner {
    padding: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #4A3FA5 0%, #584EB4 50%, #6B62C8 100%);
    text-align: center;
    color: var(--color-white);
}

.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-banner p {
    margin-bottom: 28px;
    opacity: 0.9;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.cta-banner .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-button);
}

/* Page banner */
.page-banner {
    padding: 60px 0;
    background: var(--color-light-bg);
    text-align: center;
}

.page-banner h1 {
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    color: var(--color-text-muted);
}

.breadcrumb a:hover {
    color: var(--color-pink);
}

.breadcrumb .separator {
    color: var(--color-footer-text);
}

/* Contact */
.text-button {
    color: var(--color-button);
}

.card-info {
    background: #EEEDF8;
}

.card-dark {
    background: var(--color-button);
    color: rgba(255, 255, 255, 0.9);
}

.card-dark .heading-md,
.card-dark h3 {
    color: var(--color-white);
}

.card-dark a {
    color: var(--color-white);
    text-decoration: underline;
}

.card-dark a:hover {
    color: var(--color-white);
    opacity: 0.85;
}

.form-control-welvita {
    background: var(--color-light-bg);
    border-color: rgba(26, 18, 40, 0.08);
    padding: 12px 16px;
    font-size: 16px;
}

.form-control-welvita:focus {
    background: var(--color-light-bg);
    border-color: var(--color-button);
    box-shadow: none;
}

/* Product detail */
.product-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background: #FADCE8;
}

.product-visual-sm {
    aspect-ratio: 16 / 10;
}

.product-visual-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.info-block {
    background: #EEEDF8;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
}

.quote-box {
    background: #F6F4FB;
    border-left: 4px solid var(--color-button);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.alert-product {
    background: #FFF8E6;
    border: 1px solid #F5D78E;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
}

.product-card-sm {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 18, 40, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card-sm:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.footer-links, .footer-contact{
    padding-left: 0rem !important;
}
.subtext-color{
    color: var(--subtext-color);
}
.hero-title-heading{
    font-size: 50px;
    line-height: 64px;
}


















/* Responsive */
@media (max-width: 1024px) {
    .heading-xl {
        font-size: 48px;
        line-height: 58px;
    }

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

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

    .about-block {
        grid-template-columns: 1fr;
    }
}

/* mobile */
@media (max-width: 768px) {
    .footer-links li {
        margin-bottom: 5px;
    }
    .heading-xl {
        font-size: 36px;
        line-height: 44px;
    }

    .heading-lg {
        font-size: 28px;
        line-height: 34px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 24px 32px;
        gap: 0;
        border-top: 1px solid rgba(26, 18, 40, 0.08);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
        overflow-y: auto;
        z-index: 1001;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 0 4px;
        font-size: 16px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-link {
        width: 100%;
        padding: 14px 0 4px;
        font-size: 16px;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: 0;
        padding: 0 0 8px 16px;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height var(--transition);
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 220px;
    }

    .nav-dropdown-menu a {
        padding: 10px 0;
        font-size: 15px;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a.active {
        background: transparent;
    }

    .main-nav.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    body.nav-open {
        overflow: hidden;
    }

    .header-actions .btn {
        display: none;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 56px 0;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .split-image .badge-overlay {
        right: 0.75rem;
        bottom: -0.75rem;
        font-size: 12px;
        padding: 0.5rem 0.75rem;
    }

    .stats-overlap {
        margin-top: 1.5rem;
    }

    .banner-overlap {
        margin-top: 2rem;
    }

    .page-hero {
        padding-bottom: 4rem;
    }

    .banner-overlap-img {
        aspect-ratio: 16 / 10;
    }

    .featured-overlap {
        margin-top: 2.5rem;
    }

    .card-featured {
        min-height: 300px;
    }
    .text-body{
        font-size: 16px;
        line-height: 26px;
    }
    .footer-grid{
        gap: 20px;
    }
    .footer-brand p{
        width: 100% !important;
        max-width: 100% !important;
    }
}
