/* ==========================================
   EAGLEEYE INVESTIGATION BUREAU - STYLESHEET
   Truth. Integrity. Discretion.
   ========================================== */

/* DESIGN TOKENS */
:root {
    --color-primary: #071A2E;         /* Deep Navy */
    --color-bg-dark: #0A0A0A;         /* Midnight Black */
    --color-bg-card: rgba(7, 26, 46, 0.5); /* Glass Navy */
    --color-gold: #D4AF37;            /* Gold Accent */
    --color-gold-light: #F3E5AB;      /* Light Gold Accent */
    --color-silver: #C0C0C0;          /* Silver Accent */
    --color-white: #FFFFFF;
    --color-soft-gray: #F5F7FA;
    --color-text-dark: #1E293B;       /* Dark slate for light backgrounds */
    --color-text-light: #E2E8F0;      /* Slate light for dark backgrounds */
    --color-text-muted: #94A3B8;      /* Muted text color */
    --color-red: #EF4444;             /* For prohibitions */
    --color-green: #10B981;           /* For permissions */
    
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Inter', 'Poppins', 'Manrope', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glow-gold: 0 0 15px rgba(212, 175, 55, 0.3);
    --glow-gold-strong: 0 0 25px rgba(212, 175, 55, 0.6);
    --glow-silver: 0 0 15px rgba(192, 192, 192, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.gold-text { color: var(--color-gold) !important; }
.silver-text { color: var(--color-silver) !important; }
.red-text { color: var(--color-red) !important; }
.green-text { color: var(--color-green) !important; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.underline { text-decoration: underline; }
.shadow-gold { box-shadow: var(--glow-gold); }

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* SECTION BADGE & HEADER */
.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.gold-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.silver-badge {
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid var(--color-silver);
    color: var(--color-silver);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* TOP RIBBON */
.top-ribbon {
    background: #020b14;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    color: var(--color-text-muted);
}

.ribbon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 4rem;
}

.ribbon-left, .ribbon-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ribbon-left span, .ribbon-right a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ribbon-right a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.ribbon-right a:hover {
    color: var(--color-gold);
}

.divider {
    color: rgba(255, 255, 255, 0.1);
}

/* MAIN NAVBAR */
.main-header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: var(--color-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    transition: var(--transition-smooth);
}

.logo-area:hover .logo-svg {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
    transform: rotate(5deg) scale(1.05);
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.1em;
    line-height: 1;
}

.brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), #AA7C11);
    color: var(--color-bg-dark);
    border: 1px solid var(--color-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    box-shadow: var(--glow-gold-strong);
    transform: translateY(-2px);
}

.btn-outline-silver {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-silver:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-silver);
    color: var(--color-silver);
    box-shadow: var(--glow-silver);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* GLASSMORPHISM CARD */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #091F37 0%, var(--color-bg-dark) 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all; /* Canvas intercepts clicks for network interaction */
}

.cyber-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.light-effects {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* HERO EMBLEM & PULSES */
.hero-emblem-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 2rem;
    cursor: pointer;
}

.hero-eagle-svg {
    width: 100%;
    height: 100%;
    z-index: 6;
}

.radar-ping {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 20px;
    left: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    animation: radar-ping-anim 4s infinite linear;
    opacity: 0;
    z-index: 5;
}

/* Animations keyframes */
@keyframes radar-ping-anim {
    0% { transform: scale(0.5); opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { transform: scale(1.8); opacity: 0; }
}

.rotating-ring {
    transform-origin: 100px 100px;
    animation: rotate-ring-anim 20s infinite linear;
}

@keyframes rotate-ring-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-line {
    transform-origin: 100px 100px;
    animation: radar-sweep-anim 8s infinite linear;
}

@keyframes radar-sweep-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-wing {
    animation: wing-shimmer 3s infinite ease-in-out alternate;
}

@keyframes wing-shimmer {
    0% { opacity: 0.8; filter: brightness(1); }
    100% { opacity: 1; filter: brightness(1.3) drop-shadow(0 0 5px rgba(212, 175, 55, 0.4)); }
}

.hero-agency-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-silver);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, #FFFFFF 50%, #C0C0C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.hero-subtitle {
    max-width: 800px;
    color: var(--color-text-light);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-bottom-curve svg {
    display: block;
    width: 100%;
    height: 40px;
}

/* ABOUT US SECTION */
.about-section {
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

/* OSINT DASHBOARD WORKINGS */
.about-dashboard-wrapper {
    position: relative;
    border-radius: 12px;
    background: #020810;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--glow-gold);
    overflow: hidden;
    min-height: 420px;
}

.dashboard-border-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    animation: dash-border-anim 4s infinite linear;
}

@keyframes dash-border-anim {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.dashboard-header {
    background: #041221;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-green);
}

.pulse-dot.active {
    animation: dot-pulse 1.5s infinite alternate;
}

@keyframes dot-pulse {
    from { opacity: 0.4; }
    to { opacity: 1; transform: scale(1.2); }
}

.header-indicator-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.header-controls {
    display: flex;
    gap: 5px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.control-dot.red { background-color: var(--color-red); }
.control-dot.yellow { background-color: var(--color-gold); }
.control-dot.green { background-color: var(--color-green); }

.dashboard-screen {
    padding: 1.25rem;
    position: relative;
}

.screen-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 15px 15px;
    z-index: 1;
    pointer-events: none;
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.widget {
    background: rgba(2, 11, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.85rem;
}

.widget-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.threat-bar {
    width: 100%;
    height: 10px;
    background: #020a12;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.threat-fill {
    height: 100%;
    background: var(--color-gold);
    box-shadow: 0 0 5px var(--color-gold);
}

.threat-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 600;
}

.india-map-vector {
    height: 140px;
    border-radius: 4px;
    background: #01060b;
    position: relative;
    overflow: hidden;
}

.radar-scope {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, transparent 20%, rgba(212, 175, 55, 0.03) 60%, transparent 100%);
}

.radar-sweep {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    transform-origin: 50% 50%;
    animation: radar-sweep-log 4s infinite linear;
}

@keyframes radar-sweep-log {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.map-ping {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    cursor: pointer;
}

.map-ping::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    top: -6px;
    left: -6px;
    animation: ping-wave 1.5s infinite ease-out;
}

@keyframes ping-wave {
    0% { transform: scale(0.2); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.map-city-label {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-white);
}

.dashboard-logs {
    background: rgba(2, 11, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.85rem;
    height: 110px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.log-stream {
    font-family: monospace;
    font-size: 0.7rem;
    line-height: 1.4;
    color: var(--color-text-muted);
}

.log-line {
    margin-bottom: 0.25rem;
}

.text-green { color: var(--color-green); }
.text-gold { color: var(--color-gold); }

/* ABOUT CONTENT & COUNTERS */
.about-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-gold);
    padding: 1.25rem;
    border-radius: 0 6px 6px 0;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* SERVICES OVERVIEW */
.services-section {
    background: radial-gradient(circle at center, #0b1c2e 0%, var(--color-bg-dark) 80%);
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(7, 26, 46, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.card-bg-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--glow-gold);
}

.service-card:hover .card-bg-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.service-svg-icon {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.service-card:hover .service-svg-icon {
    transform: scale(1.05);
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-points-preview {
    list-style: none;
    margin-bottom: 2rem;
}

.service-points-preview li {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-points-preview li::before {
    content: '▪';
    color: var(--color-gold);
}

.btn-card-details {
    background: none;
    border: none;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    transition: var(--transition-smooth);
}

.btn-card-details i {
    transition: var(--transition-smooth);
}

.btn-card-details:hover {
    color: var(--color-gold-light);
}

.btn-card-details:hover i {
    transform: translateX(5px);
}

/* SERVICE DETAILS DRAWER OVERLAY */
.service-drawer-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.service-drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.service-drawer-container {
    width: 100%;
    max-width: 550px;
    height: 100%;
    background: #04101e;
    border-left: 2px solid var(--color-gold);
    padding: 4rem 3rem;
    overflow-y: auto;
    transform: translateX(100%);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-drawer-overlay.active .service-drawer-container {
    transform: translateX(0);
}

.close-drawer-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-drawer-btn:hover {
    color: var(--color-gold);
}

.drawer-header-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-silver);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.drawer-title {
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.drawer-desc {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.drawer-sub-header {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.4rem;
}

.drawer-items-list {
    list-style: none;
    margin-bottom: 3.5rem;
}

.drawer-items-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.drawer-items-list li i {
    margin-top: 3px;
}

.drawer-items-list li strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 2px;
}

.drawer-items-list li span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* WHY CHOOSE US */
.why-choose-us-section {
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.why-card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    bottom: -75px;
    right: -75px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.why-card:hover {
    background: rgba(7, 26, 46, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.why-card:hover .why-card-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    bottom: -35px;
    right: -35px;
}

.why-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.why-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.why-card-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* INVESTIGATION PROCESS TIMELINE */
.process-section {
    background: #020a12;
    padding: 8rem 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
    padding: 2rem 0;
}

.timeline-progress-bar {
    position: absolute;
    left: 31px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.timeline-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%; /* Dynamic fill via JS scroll */
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-light));
    box-shadow: 0 0 10px var(--color-gold);
    transition: height 0.1s linear;
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-silver);
    transition: var(--transition-smooth);
}

.step-content {
    padding: 2rem;
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.step-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Active / Hover States */
.timeline-step.active .step-marker {
    border-color: var(--color-gold);
    box-shadow: var(--glow-gold);
    background: var(--color-primary);
}

.timeline-step.active .step-num {
    color: var(--color-gold);
}

.timeline-step.active .step-content {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--glow-gold);
    background: rgba(7, 26, 46, 0.75);
}

/* INDUSTRIES WE SERVE */
.industries-section {
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: default;
}

.industry-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.industry-card-inner i {
    font-size: 2.2rem;
    transition: var(--transition-smooth);
}

.industry-card-inner h4 {
    font-size: 1.05rem;
    color: var(--color-text-light);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    background: rgba(7, 26, 46, 0.35);
    border-color: var(--color-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), var(--glow-gold);
    transform: scale(1.03);
}

.industry-card:hover i {
    transform: scale(1.1);
}

.industry-card:hover h4 {
    color: var(--color-white);
}

/* CONFIDENTIALITY SECURE SHIELD */
.confidentiality-section {
    background: radial-gradient(circle at center, #021124 0%, var(--color-bg-dark) 90%);
    padding: 8rem 0;
}

.confidentiality-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
}

.shield-animation-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.shield-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
}

.shield-halo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: shield-glow-pulse 4s infinite alternate;
}

@keyframes shield-glow-pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 1; }
}

.shield-outline {
    stroke-dasharray: 260;
    stroke-dashoffset: 0;
    animation: shield-draw 6s infinite ease-in-out;
}

@keyframes shield-draw {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 260; }
}

.confidentiality-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.conf-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.conf-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.conf-feature-item i {
    font-size: 1.4rem;
    margin-top: 3px;
}

.conf-feature-item h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.conf-feature-item p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.testimonials-slider-container {
    max-width: 850px;
    margin: 4rem auto 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    padding: 3.5rem;
    text-align: center;
    position: relative;
    border-color: rgba(212, 175, 55, 0.15);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 1.5rem;
    left: 2.5rem;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
}

.client-org {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-arrow {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: var(--glow-gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* INQUIRY FORM SECTION */
.inquiry-section {
    background: radial-gradient(circle at center, #07192b 0%, var(--color-bg-dark) 90%);
    padding: 8rem 0;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.inquiry-info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-quick-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.quick-item i {
    font-size: 1.8rem;
}

.quick-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-item span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-item strong {
    font-size: 1.05rem;
    color: var(--color-white);
}

.inquiry-form-wrapper {
    padding: 3rem;
    position: relative;
    border-color: rgba(212, 175, 55, 0.15);
}

.form-header-title {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.form-header-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

.form-group label .required {
    color: var(--color-red);
}

.form-group label .optional {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    background: rgba(7, 26, 46, 0.8);
}

.form-group select option {
    background: #07192b;
    color: var(--color-white);
}

.form-row.flex-start {
    align-items: flex-start;
}

.form-group-radio {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-group-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

.radio-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    font-size: 0.85rem;
    user-select: none;
    color: var(--color-text-muted);
    font-weight: 500;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-container .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.radio-container:hover input ~ .checkmark {
    border-color: var(--color-gold);
}

.radio-container input:checked ~ .checkmark {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.radio-container input:checked ~ .checkmark::after {
    display: block;
}

.radio-container .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #0A0A0A;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-container .custom-checkbox {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .custom-checkbox {
    border-color: var(--color-gold);
}

.checkbox-container input:checked ~ .custom-checkbox {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.checkbox-container input:checked ~ .custom-checkbox::after {
    display: block;
}

.checkbox-container .custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #0A0A0A;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* SUCCESS MODAL OVERLAY IN FORM */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 16, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-card {
    text-align: center;
    border-color: var(--color-gold);
    padding: 2.5rem;
    max-width: 400px;
    box-shadow: var(--glow-gold);
}

.success-icon-badge {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    animation: icon-pop-scale 0.5s ease-out;
}

@keyframes icon-pop-scale {
    0% { transform: scale(0.3); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-ref {
    font-size: 0.9rem;
    color: var(--color-silver);
    margin: 0.5rem 0 1.25rem 0;
}

.success-message {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.summary-details-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 1rem;
    text-align: left;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.summary-details-box strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 0.5rem;
}

.summary-details-box ul {
    list-style: none;
}

.summary-details-box li {
    margin-bottom: 0.25rem;
    color: var(--color-text-muted);
}

.summary-details-box li span {
    color: var(--color-gold);
    font-weight: 600;
}

/* LEGAL COMPLIANCE SECTION */
.compliance-section {
    background: var(--color-bg-dark);
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.compliance-card {
    padding: 3rem;
}

.compliance-card.do-not {
    border-color: rgba(239, 68, 68, 0.2);
}

.compliance-card.do-not:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(239, 68, 68, 0.1);
}

.compliance-card.do-provide {
    border-color: rgba(16, 185, 129, 0.2);
}

.compliance-card.do-provide:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.1);
}

.compliance-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.compliance-header i {
    font-size: 2.2rem;
}

.compliance-header h3 {
    font-size: 1.6rem;
    color: var(--color-white);
}

.compliance-sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.compliance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.compliance-list li i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.compliance-list li strong {
    font-size: 0.95rem;
    color: var(--color-white);
    display: block;
    margin-bottom: 0.2rem;
}

.compliance-list li p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* CONTACT SECTION & FOOTER */
.contact-section {
    background-color: #030d17;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand-title {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.footer-parent-org {
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-silver);
    margin-bottom: 2.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-block i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.info-block strong {
    font-size: 0.85rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.2rem;
}

.info-block p, .info-block a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-block a:hover {
    color: var(--color-gold);
}

.footer-title {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1.5px;
    background-color: var(--color-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.main-footer {
    background-color: #020910;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2.5rem 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.disclaimer-text {
    font-size: 0.7rem;
    max-width: 700px;
    opacity: 0.7;
}

/* ANIMATION ON SCROLL INITIATORS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-grid, .inquiry-grid, .compliance-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-dashboard-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .confidentiality-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
        text-align: center;
    }
    
    .conf-features {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .ribbon-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .ribbon-left, .ribbon-right {
        justify-content: center;
        width: 100%;
    }
    
    /* Mobile Menu Drawer Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.25rem;
    }
    
    .nav-cta-container {
        display: none; /* Hide button on desktop nav header in mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
        display: inline-flex;
        text-align: left;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .step-marker {
        width: 48px;
        height: 48px;
    }
    
    .step-num {
        font-size: 1rem;
    }
    
    .timeline-progress-bar {
        left: 23px;
    }
    
    .timeline-step {
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .inquiry-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .compliance-card {
        padding: 2rem 1.5rem;
    }
    
    .service-drawer-container {
        padding: 3rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .conf-features {
        grid-template-columns: 1fr;
    }
}
