@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* -------------------------------------------------------------
   DESIGN SYSTEM VARIABLES
   ------------------------------------------------------------- */
:root {
    --primary: #1e40af;
    --primary-rgb: 30, 64, 175;
    --primary-light: #ffffff;
    --secondary: #3b82f6;
    --secondary-light: #eff6ff;
    --dark: #0f172a;
    --light-gray: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
    --accent-pink: #fbcfe8;
    --accent-green: #dcfce7;
    --accent-yellow: #fef9c3;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(36, 74, 151, 0.06);
    --shadow-lg: 0 16px 48px rgba(36, 74, 151, 0.12);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------
   BASE RESET
   ------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-gray);
    color: #475569;
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-light);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------------------------------
   LAYOUT CONTAINERS & GRID SYSTEM
   ------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 80px 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.row-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}
.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}
.col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding: 0 15px;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* -------------------------------------------------------------
   TOP BAR & HEADER
   ------------------------------------------------------------- */
.top-bar {
    background-color: #1e3b8a;
    padding: 8px 0;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
}
.top-bar-socials a,
.top-bar-links a {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}
.top-bar-socials a:hover,
.top-bar-links a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* -------------------------------------------------------------
   GLASSMORPHIC STICKY HEADER
   ------------------------------------------------------------- */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.header-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}
.logo-img {
    height: 50px;
    width: auto;
}
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    position: static;
}
.nav-item {
    margin: 0 15px;
    position: static; /* Vital for megamenu */
}
.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary);
}

/* -------------------------------------------------------------
   MEGAMENU
   ------------------------------------------------------------- */
.megamenu-parent {
    position: static !important;
}
.megamenu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-lg);
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    padding: 40px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    display: flex;
}
.megamenu-parent:hover .megamenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.megamenu-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    width: 100%;
}
.megamenu-col {
    border-right: 1px solid var(--border);
    padding-right: 30px;
}
.megamenu-col:last-child {
    border-right: none;
    padding-right: 0;
}
.megamenu-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 8px;
}
.megamenu-list {
    list-style: none;
}
.megamenu-item {
    margin-bottom: 15px;
}
.megamenu-link {
    display: flex;
    align-items: center;
}
.megamenu-link:hover {
    transform: translateX(5px);
}
.megamenu-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--light-gray);
    border: 1px solid var(--border);
    margin-right: 15px;
    padding: 4px;
}
.megamenu-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    display: block;
}
.megamenu-desc {
    font-size: 11px;
    color: #64748b;
}

/* Callout badge */
.megamenu-badge {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #bfdbfe;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.megamenu-badge img {
    height: 48px;
    margin-bottom: 12px;
}
.megamenu-badge h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 6px;
}
.megamenu-badge p {
    font-size: 12px;
    color: #1e40af;
    line-height: 1.5;
}
/* -------------------------------------------------------------
   STANDARD DROPDOWN MENU
   ------------------------------------------------------------- */
.nav-item {
    position: relative !important;
}
.nav-item.megamenu-parent {
    position: static !important;
}
.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 250px;
    background: var(--white);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
    border-bottom-left-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
    padding: 10px 0;
    list-style: none;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.nav-item:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    width: 100%;
}
.dropdown-link {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
    border-bottom: 1px solid #f8fafc;
}
.dropdown-link:last-child {
    border-bottom: none;
}
.dropdown-link:hover {
    background-color: var(--secondary-light);
    color: var(--primary);
    padding-left: 25px;
}

/* -------------------------------------------------------------
   MOBILE MENU HAMBURGER & INTERACTIVE OVERLAY
   ------------------------------------------------------------- */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: var(--transition);
}
.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.mobile-overlay .nav-menu {
    flex-direction: column;
}
.mobile-overlay .nav-item {
    margin: 15px 0;
}
.mobile-overlay .nav-link {
    font-size: 24px;
    font-weight: 700;
}

/* -------------------------------------------------------------
   PREMIUM AUTOPLAY VANILLA HERO CAROUSEL
   ------------------------------------------------------------- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #000;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 50%);
    display: flex;
    align-items: center;
    z-index: 3;
}
.slide-content-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: 550px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
.slide.active .slide-content-card {
    transform: translateY(0);
    opacity: 1;
}

/* -------------------------------------------------------------
   OVERLAPPING CATEGORY CAROUSEL SYSTEM
   ------------------------------------------------------------- */
.categories-overlap-section {
    position: relative;
    margin-top: -85px; /* Overlaps 30% of the slider height (slider height 100vh) */
    z-index: 100;
    padding-top: 0 !important;
    padding-bottom: 40px !important;
}
.category-carousel-wrapper {
    position: relative;
    width: 100%;
}
.category-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
}
.category-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

/* Category card sizing: exactly 3 visible at once */
.category-banner-card {
    flex: 0 0 calc((100% - 40px) / 3); /* exactly 3 fits with 2 gaps of 20px */
    border-radius: 0; /* Straight edges */
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    height: 185px; /* Larger height */
    background: #2563eb; /* Lighter Royal Blue background on all tiles */
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 992px) {
    .category-banner-card {
        flex: 0 0 calc((100% - 20px) / 2); /* 2 visible at once */
    }
}
@media (max-width: 576px) {
    .category-banner-card {
        flex: 0 0 100%; /* 1 visible at once */
    }
}

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

.category-banner-content {
    max-width: 58%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}
.category-banner-title {
    font-size: 21px;
    font-weight: 800;
    margin: 0 0 4px 0 !important;
    color: #ffffff !important;
    line-height: 1.2;
}
.category-banner-age {
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 12px;
    font-weight: 500;
}
.category-banner-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.category-banner-card:hover .category-banner-link {
    background: #ffffff;
    color: var(--primary) !important;
}
.category-banner-img {
    max-height: 145px; /* Larger image height to match larger tile */
    max-width: 42%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.45)); /* Contour shadow on packaging */
    transition: var(--transition);
}
.category-banner-card:hover .category-banner-img {
    transform: scale(1.06) rotate(1deg);
}

/* Nav arrows */
.carousel-nav-btn {
    display: none !important;
}

/* -------------------------------------------------------------
   PLAIN HEADER TOP BAR
   ------------------------------------------------------------- */
.top-bar-socials a {
    transition: var(--transition);
}
.top-bar-socials a:hover, .top-bar-links a:hover {
    opacity: 0.8;
}
.slide-content-card h1,
.slide-content-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 15px;
}
.slide-content-card p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 25px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
}
.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* -------------------------------------------------------------
   BUTTONS STYLING
   ------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 74, 151, 0.3);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* -------------------------------------------------------------
   DYNAMIC CATEGORIES CIRCULAR GRID
   ------------------------------------------------------------- */
.categories-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.category-circle-card {
    text-align: center;
    width: 180px;
    text-decoration: none;
}
.category-circle-img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    background: var(--white);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.category-circle-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px dashed var(--secondary);
    opacity: 0.5;
    transition: var(--transition);
}
.category-circle-card:hover .category-circle-img-wrap {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(82, 190, 243, 0.3);
    border-color: var(--secondary);
}
.category-circle-card:hover .category-circle-img-wrap::after {
    transform: rotate(45deg);
    border-color: var(--primary);
}
.category-circle-img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}
.category-circle-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 10px;
}

/* -------------------------------------------------------------
   PREMIUM GLASSMORPHIC PRODUCT CARDS
   ------------------------------------------------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.premium-product-card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.premium-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 74, 151, 0.2);
}
.product-image-container {
    width: 100%;
    height: 220px;
    background: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 10px;
    background: var(--accent-green);
    color: #166534;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}
.product-img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.premium-product-card:hover .product-img {
    transform: scale(1.06);
}
.product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.product-category-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.product-summary {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}
.price-tag {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

/* -------------------------------------------------------------
   3-CARD PRIORITIES & QUALITIES LAYOUT
   ------------------------------------------------------------- */
.priority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.priority-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 40px 30px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.priority-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.priority-card:nth-child(1) { border-color: var(--secondary); }
.priority-card:nth-child(2) { border-color: var(--secondary); }
.priority-card:nth-child(3) { border-color: var(--accent-pink); }

.priority-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
}
.priority-card:nth-child(1) .priority-icon-wrap { background: #dbeafe; color: var(--secondary); }
.priority-card:nth-child(2) .priority-icon-wrap { background: #e0f2fe; color: var(--secondary); }
.priority-card:nth-child(3) .priority-icon-wrap { background: #fce7f3; color: #db2777; }

.priority-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.priority-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* -------------------------------------------------------------
   VANILLA CUSTOM TESTIMONIALS SLIDER
   ------------------------------------------------------------- */
.testimonials-section {
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}
.testimonials-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 50px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.5);
}
.quote-icon {
    font-size: 48px;
    color: rgba(36, 74, 151, 0.08);
    position: absolute;
    top: 20px;
    left: 40px;
}
.rating-stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 18px;
}
.testimonial-text {
    font-size: 18px;
    color: #334155;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px auto;
    border: 2px solid var(--secondary);
}
.testimonial-author {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.testimonial-role {
    font-size: 12px;
    color: #64748b;
}

/* -------------------------------------------------------------
   EDITORIAL BLOG GRIDS
   ------------------------------------------------------------- */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}
.editorial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.editorial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.editorial-image {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.editorial-body {
    padding: 24px;
}
.editorial-date {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.editorial-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 12px;
}
.editorial-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

/* -------------------------------------------------------------
   MINIMALIST PREMIUM FOOTER
   ------------------------------------------------------------- */
.footer {
    background-color: #1e3b8a;
    color: #e2e8f0;
    padding: 80px 0 30px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social-list {
    display: flex;
    list-style: none;
}
.footer-social-item {
    margin-right: 15px;
}
.footer-social-link {
    color: #94a3b8;
    font-size: 18px;
    transition: var(--transition);
}
.footer-social-link:hover {
    color: var(--secondary);
}
.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}
.footer-links {
    list-style: none;
}
.footer-link-item {
    margin-bottom: 12px;
}
.footer-link {
    color: #94a3b8;
    font-size: 14px;
    transition: var(--transition);
}
.footer-link:hover {
    color: var(--white);
    padding-left: 4px;
}
.app-badge-container {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.app-badge {
    height: 40px;
    width: auto;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* -------------------------------------------------------------
   RESPONSIVE DESIGN INTERFACE & MEDIA BREAKPOINTS
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu-desktop {
        display: none;
    }
    .priority-grid {
        grid-template-columns: 1fr;
    }
    .col-3, .col-4, .col-6, .col-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .slide-content-card h1,
    .slide-content-card h2 {
        font-size: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .section {
        padding: 50px 0;
    }
}

/* -------------------------------------------------------------
   FIX FOR FIXED STICKY NAVIGATION OVERLAPS
   ------------------------------------------------------------- */
.content--body {
    margin-top: 100px;
}

/* -------------------------------------------------------------
   BRANDED SECURITY RECAPTCHA CARD - CLEAN NO SCROLLBARS
   ------------------------------------------------------------- */
.recaptcha-card {
    transition: var(--transition);
    overflow: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
.recaptcha-card:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 12px rgba(36, 74, 151, 0.06), inset 0 1px 2px rgba(0,0,0,0.02) !important;
}
.recaptcha-card .recaptcha-inner-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
    width: 100% !important;
    min-height: 78px !important;
    padding: 2px 0 !important;
}
.recaptcha-card .g-recaptcha,
.g-recaptcha {
    display: inline-block !important;
    width: 304px !important;
    height: 78px !important;
    min-height: 78px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
}
.g-recaptcha iframe,
.recaptcha-card iframe {
    overflow: hidden !important;
    border: none !important;
    display: block !important;
}
@media (max-width: 360px) {
    .recaptcha-card .g-recaptcha,
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center center;
        -webkit-transform: scale(0.85);
        -webkit-transform-origin: center center;
    }
}

