/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (LIGHT THEME)
   ========================================================================== */
:root {
    /* Color Palette - Clean Corporate Light Theme */
    --bg-main: #f8fafc; /* Slate-50 background */
    --bg-card: #ffffff; /* Pure white cards */
    --bg-card-hover: #ffffff;
    --border-card: #e2e8f0; /* Slate-200 border */
    --border-card-hover: #cbd5e1;
    
    --primary-gold: #d6221c; /* Brand Red */
    --primary-gold-rgb: 214, 34, 28;
    --secondary-gold: #b91c1c; /* Darker Red */
    --amber-glow: #ef4444; /* Light Red accent */
    
    --text-primary: #0f172a; /* Slate-900 for high-contrast headers */
    --text-secondary: #334155; /* Slate-700 for readable paragraphs */
    --text-muted: #64748b; /* Slate-500 for captions */
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', var(--font-body);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Spacing & Layout */
    --container-max: 1200px;
    --nav-height: 96px;
    --radius-card: 16px;
    --radius-btn: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-card);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* Typography Presets */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

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

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */
.section-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 100px 24px;
}

.sub-heading {
    display: inline-block;
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(214, 34, 28, 0.06);
    border: 1px solid rgba(214, 34, 28, 0.15);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.new-badge {
    background: var(--primary-gold);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-body);
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gold);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(214, 34, 28, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(214, 34, 28, 0.3);
    background: var(--secondary-gold);
}

.btn-secondary {
    background: rgba(214, 34, 28, 0.03);
    color: var(--primary-gold);
    border-color: rgba(214, 34, 28, 0.15);
}

.btn-secondary:hover {
    background: rgba(214, 34, 28, 0.08);
    border-color: var(--primary-gold);
    color: var(--secondary-gold);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   HEADER / NAVBAR (GLASSMORPHISM LIGHT)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(248, 250, 252, 0.8); /* slate-50 transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 68px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(214, 34, 28, 0.1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.header-container {
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-brand {
    display: flex;
    align-items: center;
    height: 100%;
    transition: var(--transition-smooth);
}

.logo-brand img {
    height: 76px; /* Large and fully visible logo */
    width: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply; /* Blends out the white background of the original logo.png */
    transition: var(--transition-smooth);
}

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

/* Scrolled Navbar Logo adjustments */
.header.scrolled .logo-brand img {
    height: 52px; /* Scale down proportionally but keep it fully visible */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
    border-radius: 4px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

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

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

/* Visual Background Accent */
.ceo-glow-bg {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(226, 232, 240, 0.8) 0%, rgba(248, 250, 252, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.ceo-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    transition: var(--transition-smooth);
}

.ceo-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    z-index: 2;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 10px 25px rgba(15, 23, 42, 0.08));
}

/* Floating Cards Overlapping CEO (Matches Mockup) */
.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.03);
    z-index: 3;
    transition: var(--transition-smooth);
}

.floating-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    border-color: rgba(214, 34, 28, 0.2);
}

.card-bi {
    bottom: 20px;
    left: -40px;
    width: 210px;
}

.float-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.float-card-header .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.float-card-header h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.float-card-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.float-card-body .value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-body);
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 32px;
}

.mini-chart span {
    width: 6px;
    height: var(--h);
    background: rgba(59, 130, 246, 0.15); /* Soft Blue */
    border-radius: 2px;
}

.mini-chart span:last-child {
    background: #3b82f6; /* Accent Blue */
    height: 85%;
}

.card-security {
    top: 40%;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
}

.card-security svg {
    width: 20px;
    height: 20px;
    color: var(--primary-gold);
}

.card-security h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-security .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-body);
}

/* Hover Zoom effect */
.hero-visual:hover .ceo-image {
    transform: scale(1.02);
}

/* ==========================================================================
   CABINET PRESENTATION SECTION
   ========================================================================== */
.cabinet {
    background: #ffffff;
    border-top: 1px solid var(--border-card);
}

.cabinet-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.cabinet-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.cabinet-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    background: var(--bg-main);
    border: 1px solid var(--border-card);
    padding: 24px 16px;
    border-radius: var(--radius-card);
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.stat-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card:hover {
    border-color: rgba(214, 34, 28, 0.2);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transform: translateY(-2px);
}

.cabinet-image .img-wrapper-clean {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cabinet-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(15, 23, 42, 0.08));
    transition: var(--transition-smooth);
}

.cabinet-image:hover img {
    transform: translateY(-5px);
    filter: drop-shadow(0 20px 35px rgba(214, 34, 28, 0.08));
}

/* ==========================================================================
   SERVICES SECTION (BENTO GRID)
   ========================================================================== */
.services {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(290px, auto);
    gap: 24px;
}

.bento-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 2;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02), 0 2px 4px -1px rgba(15, 23, 42, 0.01);
}

/* Double Columns for Strategic Security Card */
.bento-card.featured {
    grid-column: span 2;
    border-color: rgba(214, 34, 28, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fffcfc 100%);
    box-shadow: 0 10px 30px rgba(214, 34, 28, 0.03), 0 1px 3px rgba(214, 34, 28, 0.01);
}

.card-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(214, 34, 28, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* Card Icons */
.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(214, 34, 28, 0.05);
    border: 1px solid rgba(214, 34, 28, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-bottom: 32px;
    transition: var(--transition-smooth);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.featured .card-content h3 {
    font-size: 1.8rem;
    margin-top: 10px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-tag {
    display: inline-block;
    background: rgba(214, 34, 28, 0.08);
    border: 1px solid rgba(214, 34, 28, 0.15);
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Norms list */
.norm-list {
    list-style: none;
    margin-top: 16px;
    border-top: 1px solid var(--border-card);
    padding-top: 16px;
}

.norm-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.norm-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Card Hover Effects */
.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 34, 28, 0.25);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.bento-card:hover .card-icon {
    background: var(--primary-gold);
    color: #ffffff;
    transform: scale(1.05);
}

/* Badge & highlight styles */
.highlight-badge {
    background: rgba(214, 34, 28, 0.08);
    color: var(--primary-gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

/* ANGE Official Badge inside Environmental Studies Card */
.badge-ange-container {
    margin-bottom: 16px;
}

.badge-ange {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #047857; /* Forest green */
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.03);
}

.badge-ange-check {
    width: 12px;
    height: 12px;
    color: #047857;
}

/* Legal statement styling in the Environmental studies card */
.ange-legal-statement {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.04);
    border-left: 3px solid #059669;
    border-radius: 4px 12px 12px 4px;
}

.ange-legal-statement p {
    color: var(--text-primary);
    font-size: 0.9rem !important;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

/* Custom green accent for Env Card */
#card-env-studies {
    border-color: rgba(16, 185, 129, 0.2);
}

#card-env-studies:hover {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.06);
}

#card-env-studies:hover .card-icon {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
}

.env-gradient {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Featured Full Width Bento Card (Strategy & HR) */
.bento-card.featured-full {
    grid-column: span 3;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-color: rgba(15, 23, 42, 0.08);
}

.bento-card.featured-full:hover {
    border-color: rgba(214, 34, 28, 0.2);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.strategy-gradient {
    background: radial-gradient(circle, rgba(214, 34, 28, 0.015) 0%, rgba(255, 255, 255, 0) 75%);
}

.grid-two-cols {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 48px;
    align-items: start;
    margin-top: 10px;
}

.norm-list-cols {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.norm-list-cols li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.norm-list-cols li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Reassurance Banner (Official ANGE) */
.reassurance-ange-banner {
    background: linear-gradient(90deg, rgba(240, 253, 250, 0.75) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.12);
    border-bottom: 1px solid rgba(16, 185, 129, 0.12);
    padding: 36px 0;
    position: relative;
    z-index: 10;
}

.reassurance-ange-banner .banner-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.reassurance-ange-banner .banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #059669;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    flex-shrink: 0;
}

.badge-ange-icon {
    width: 16px;
    height: 16px;
    stroke-width: 3px;
}

.reassurance-ange-banner .banner-message {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    flex-grow: 1;
    text-align: left;
}

.reassurance-ange-banner .banner-message strong {
    color: #047857;
}

/* ==========================================================================
   PARTNERS & REFERENCES SECTION
   ========================================================================== */
.references {
    background: #ffffff;
    text-align: center;
}

.references h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.partners-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Gradient Mask overlays to fade left/right edges for a premium slider feel */
.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.partner-logo {
    background: var(--bg-main);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 0 0 calc((100% - (2 * 24px)) / 3);
    box-sizing: border-box;
    transition: var(--transition-smooth);
    min-height: 140px;
}

.partner-logo img {
    height: 45px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.partner-logo .text-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.partner-logo span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    text-align: center;
}

.partner-logo:hover {
    border-color: rgba(214, 34, 28, 0.2);
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.partner-logo:hover .text-logo {
    color: var(--primary-gold);
}

/* Slider controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-card);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-control svg {
    width: 20px;
    height: 20px;
}

.slider-control:hover {
    background: var(--primary-gold);
    color: #ffffff;
    border-color: var(--primary-gold);
    box-shadow: 0 6px 16px rgba(214, 34, 28, 0.2);
}

.slider-control.prev {
    left: 0;
}

.slider-control.next {
    right: 0;
}

/* Pagination Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-card);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--primary-gold);
    width: 20px;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .partner-logo {
        flex: 0 0 calc((100% - (1 * 24px)) / 2);
    }
    .partners-slider-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 640px) {
    .partner-logo {
        flex: 0 0 100%;
    }
    .partners-slider-wrapper {
        padding: 0 35px;
    }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Contact Details Info List */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-list h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-list a, .contact-list p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-list a:hover {
    color: var(--primary-gold);
}

.contact-list .sub-email, .contact-list .city {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
    margin-bottom: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background-color: var(--bg-main);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-btn);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-gold);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(214, 34, 28, 0.08);
}

/* Dropdown arrow custom styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Form Errors */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.error-msg {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 6px;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Status message */
.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-btn);
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #0f172a; /* Slate-900 for solid institutional footer */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    color: #94a3b8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */

/* Mobile Menu State */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: #ffffff;
        backdrop-filter: none;
        padding: 40px 24px;
        border-top: 1px solid var(--border-card);
        transform: translateX(100%);
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    }
    
    .navbar.active {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 8px 0;
    }
    
    /* Toggle active animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Grid Adjustments */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .floating-card {
        display: none; /* Hide floating overlay cards on tablet/mobile to avoid overlapping text */
    }
    
    .cabinet-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cabinet-image {
        order: -1;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.featured-full {
        grid-column: span 2;
    }
    
    .grid-two-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reassurance-ange-banner .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .reassurance-ange-banner .banner-badge {
        align-self: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cabinet-text h2, .section-header h2, .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.featured, .bento-card.featured-full {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .norm-list-cols {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Honeypot field (anti-spam) hidden from human view but accessible by bots */
.hidden-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

