/* =========================================
   DML Trans GmbH - Premium Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Rich Color Palette */
    --clr-dark-blue: #021a32;
    --clr-blue: #185FA5;
    --clr-blue-light: #2c7ac4;
    --clr-light-blue: #85B7EB;
    --clr-accent: #00e1ff; /* Added an energetic accent color */
    
    --clr-white: #FFFFFF;
    --clr-gray-100: #f8fafc;
    --clr-gray-200: #e2e8f0;
    --clr-gray-500: #64748b;
    --clr-gray-800: #1e293b;
    --clr-gray-900: #0f172a;
    
    /* Typography */
    --font-main: 'Inter', Helvetica, sans-serif;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue-light) 100%);
    --grad-dark: linear-gradient(135deg, var(--clr-dark-blue) 0%, #042c54 100%);
    
    /* Animations & Shadows */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 20px rgba(24, 95, 165, 0.4);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--clr-gray-800);
    line-height: 1.6;
    background-color: var(--clr-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* Typography elements */
h1, h2, h3, h4 {
    color: var(--clr-gray-900);
    line-height: 1.2;
    font-weight: 800;
}

.text-center { text-align: center; }

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header {
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--clr-gray-500);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-size: 1rem;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    transition: transform var(--transition-smooth);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--clr-white);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--clr-blue-light) 0%, var(--clr-blue) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--clr-white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* --- Header & Nav --- */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    z-index: 1000;
    transition: all var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link { display: flex; align-items: center; }
#main-logo { max-height: 40px; }

/* CSS Logo */
.css-logo { display: flex; align-items: center; gap: 12px; }
.logo-bars { display: flex; gap: 4px; height: 36px; align-items: flex-end; }
.bar { width: 8px; border-radius: 4px; }
.bar-1 { height: 100%; background-color: var(--clr-dark-blue); }
.bar-2 { height: 75%; background-color: var(--clr-blue); }
.bar-3 { height: 50%; background-color: var(--clr-light-blue); }

.logo-text { display: flex; flex-direction: column; }
.logo-dml { font-size: 1.4rem; font-weight: 900; color: var(--clr-dark-blue); line-height: 1; letter-spacing: -0.5px;}
.logo-line { height: 2px; width: 100%; background: var(--grad-primary); margin: 2px 0; border-radius: 2px;}
.logo-sub { font-size: 0.6rem; color: var(--clr-gray-500); letter-spacing: 0.25em; font-weight: 700; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; gap: 32px; }

.nav-link {
    font-weight: 600;
    color: var(--clr-gray-800);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--grad-primary);
    transition: width var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover { color: var(--clr-blue); }
.nav-link:hover::after { width: 100%; }

.mobile-toggle {
    display: none; background: none; border: none;
    font-size: 1.5rem; color: var(--clr-dark-blue); cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 200px 0 160px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--clr-dark-blue);
    overflow: hidden;
}

/* Dynamic glow blobs */
.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatShape 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: var(--clr-blue);
}

.shape-2 {
    bottom: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: #042c54;
    animation-delay: -5s;
}

.shape-3 {
    top: 30%; right: 20%;
    width: 30vw; height: 30vw;
    background: var(--clr-light-blue);
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--clr-light-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px; height: 8px;
    background-color: var(--clr-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--clr-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 225, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 225, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 225, 255, 0); }
}

.hero h1 {
    color: var(--clr-white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    max-width: 900px;
    text-wrap: balance;
}

.hero h1 span {
    color: var(--clr-light-blue);
    background: linear-gradient(135deg, var(--clr-light-blue) 0%, var(--clr-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--clr-gray-200);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 48px;
    max-width: 700px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 64px;
}

/* Glass Card in Hero */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.2);
    border-left: 1px solid rgba(255,255,255,0.1);
    padding: 24px 40px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow-glass);
}

.hero-glass-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.hero-glass-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--clr-white);
    text-align: left;
}

.hero-glass-item i {
    font-size: 24px;
    color: var(--clr-light-blue);
    background: rgba(255,255,255,0.1);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
}

.hero-glass-item div { display: flex; flex-direction: column; }
.hero-glass-item strong { font-size: 1.1rem; font-weight: 700; }
.hero-glass-item span { font-size: 0.85rem; color: var(--clr-gray-200); }

/* --- Services Grid System --- */
.grid { display: grid; gap: 32px; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* Background patterns */
.pattern-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--clr-gray-200) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

/* Service Card with Glass/Floating effect */
.service-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border: 1px solid var(--clr-gray-100);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.card-glow {
    position: absolute;
    width: 100px; height: 100px;
    background: var(--grad-primary);
    filter: blur(50px);
    top: -50px; right: -50px;
    border-radius: 50%;
    opacity: 0.15;
    transition: opacity var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(24, 95, 165, 0.1);
}

.service-card:hover .card-glow { opacity: 0.3; }

.service-icon {
    width: 72px; height: 72px;
    background: var(--clr-gray-100);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    color: var(--clr-blue);
    margin-bottom: 32px;
    transition: all var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    background: var(--grad-primary);
    color: var(--clr-white);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--clr-gray-500);
    margin-bottom: 32px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.card-link {
    color: var(--clr-blue);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.card-link i { transition: transform var(--transition-fast); }
.card-link:hover i { transform: translateX(5px); }

/* --- About Section (Warum DML) --- */
.bg-light-gradient {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.125rem;
    color: var(--clr-gray-500);
    margin-bottom: 40px;
}

.stats-mini {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--clr-gray-200);
}

.stat-mini-item { display: flex; flex-direction: column; }
.stat-num { font-size: 3rem; font-weight: 900; color: var(--clr-dark-blue); line-height: 1;}
.stat-text { color: var(--clr-blue); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 8px;}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    background: var(--clr-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
    width: 56px; height: 56px;
    background: var(--clr-gray-100);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--clr-blue);
    margin-bottom: 20px;
    transition: all var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--grad-primary);
    color: var(--clr-white);
}

.feature-item h4 { font-size: 1.125rem; margin-bottom: 8px; }
.feature-item p { color: var(--clr-gray-500); font-size: 0.9rem; line-height: 1.5; }

/* --- Parallax CTA --- */
.parallax-cta {
    padding: 120px 0;
    position: relative;
    background: url('https://images.unsplash.com/photo-1586864387789-228f0166ce51?auto=format&fit=crop&q=80&w=2000') center/cover fixed;
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(2,26,50,0.95), rgba(24,95,165,0.85));
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.parallax-cta h2 { color: var(--clr-white); font-size: 2.5rem; margin-bottom: 24px; }
.parallax-cta p { color: var(--clr-gray-200); font-size: 1.125rem; margin-bottom: 40px; }

/* --- Contact Section --- */
.contact-section { background: var(--clr-gray-100); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-intro { color: var(--clr-gray-500); font-size: 1.1rem; margin-bottom: 40px; }

.contact-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
    display: flex; align-items: center; gap: 20px;
    background: var(--clr-white);
    padding: 24px; border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}
.contact-card:hover { transform: translateX(10px); }

.icon-box {
    width: 48px; height: 48px;
    background: var(--clr-blue); color: var(--clr-white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}

.details { display: flex; flex-direction: column; }
.details strong { font-size: 1rem; color: var(--clr-gray-900); }
.details span { font-size: 0.95rem; color: var(--clr-gray-500); }

/* Form styling */
.contact-form-container {
    background: var(--clr-white);
    padding: 48px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-gray-200);
}

.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

label {
    display: block; margin-bottom: 8px;
    font-weight: 600; color: var(--clr-gray-800); font-size: 0.95rem;
}

input, textarea, select {
    width: 100%; padding: 16px;
    border: 1px solid var(--clr-gray-200);
    border-radius: 12px;
    font-family: inherit; font-size: 1rem;
    background-color: var(--clr-gray-100);
    color: var(--clr-gray-900);
    transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--clr-blue);
    background-color: var(--clr-white);
    box-shadow: 0 0 0 4px rgba(24, 95, 165, 0.1);
}

select { appearance: none; cursor: pointer; }
.custom-select { position: relative; }
.custom-select::after {
    content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    color: var(--clr-gray-500); pointer-events: none;
}

.btn-submit { width: 100%; padding: 18px; font-size: 1.125rem; font-weight: 700; border-radius: 12px; }

/* --- Footer --- */
.footer {
    background: var(--clr-dark-blue);
    color: var(--clr-white);
    position: relative;
    padding-top: 80px; /* Reduced for subpages without wave */
}

.footer-with-wave {
    padding-top: 150px;
}

.footer-wave {
    position: absolute;
    top: -1px; left: 0; width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-wave .shape-fill { fill: var(--clr-gray-100); }

.footer-content-wrap { padding-bottom: 32px; }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo .bar { background-color: #ffffff !important; }

.footer-brand p { color: var(--clr-gray-200); margin-bottom: 24px; max-width: 350px; line-height: 1.8; }

.social-links { display: flex; gap: 16px; }
.social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-white);
    transition: all var(--transition-fast);
}
.social-links a:hover {
    background: var(--clr-blue);
    transform: translateY(-3px);
}

.footer-links h4 { color: var(--clr-white); font-size: 1.25rem; margin-bottom: 24px; }
.footer-links ul li { margin-bottom: 16px; }
.footer-links a { color: var(--clr-gray-200); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: 0.8rem; color: var(--clr-light-blue); transition: transform var(--transition-fast); }
.footer-links a:hover { color: var(--clr-white); }
.footer-links a:hover i { transform: translateX(4px); }

.footer-bottom { text-align: center; color: var(--clr-gray-500); font-size: 0.9rem; }

.footer-qr h4 { color: var(--clr-white); font-size: 1.25rem; margin-bottom: 24px; }
.footer-qr p { color: var(--clr-gray-200); font-size: 0.85rem; line-height: 1.5; }

/* --- Animations & Utilities --- */
/* These classes will be triggered via Javascript Observer */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Delay classes */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Custom smooth float animation */
@keyframes softFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* --- Dropdown Menu --- */
.has-dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.8rem;
    margin-left: 4px;
    transition: transform var(--transition-fast);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
    border: 1px solid var(--clr-gray-200);
    z-index: 1050;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin-bottom: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--clr-gray-800);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--clr-gray-100);
    color: var(--clr-blue);
    padding-left: 28px;
}

/* --- Subpage Specific Styles --- */
.subpage-hero {
    padding: 180px 0 100px;
    min-height: 50vh;
}

.subpage-hero .hero-bg-shapes {
    opacity: 0.4;
}

.subpage-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.service-detail-section {
    padding: 100px 0;
    background: var(--clr-white);
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-text-content h2 {
    margin-bottom: 24px;
}

.service-text-content p {
    color: var(--clr-gray-500);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-text-content ul {
    margin-top: 32px;
}

.service-text-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--clr-gray-800);
}

.service-text-content ul li i {
    color: var(--clr-blue);
    font-size: 1.2rem;
    margin-top: 4px;
}

.service-image-box {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--clr-gray-100);
    padding: 40px;
    border: 1px solid var(--clr-gray-200);
    box-shadow: var(--shadow-md);
}

.service-image-box .box-icon {
    font-size: 6rem;
    color: var(--clr-blue);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    right: -20px;
}

.service-image-box h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

/* --- Process Roadmap --- */
.process-section {
    padding: 100px 0;
    background: var(--clr-gray-100);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    gap: 20px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--clr-gray-200);
    z-index: 1;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--grad-primary);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 0 0 10px var(--clr-gray-100), var(--shadow-md);
    margin-bottom: 24px;
    transition: all var(--transition-smooth);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(24, 95, 165, 0.1), var(--shadow-glow);
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--clr-gray-500);
    font-size: 0.95rem;
}

/* --- FAQ Accordion --- */
.faq-section {
    padding: 100px 0;
    background: var(--clr-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--clr-gray-200);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-gray-800);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--clr-blue);
}

.faq-icon {
    font-size: 1rem;
    color: var(--clr-blue);
    transition: transform var(--transition-smooth);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer-content {
    padding-bottom: 24px;
    color: var(--clr-gray-500);
    line-height: 1.6;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-glass-content { flex-direction: column; align-items: flex-start; }
    .about-wrapper, .contact-wrapper { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
        flex-direction: column; padding: 32px 24px;
        box-shadow: var(--shadow-lg);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        gap: 24px;
    }
    
    .nav-menu.active { clip-path: circle(150% at 100% 0); }
    .nav-list { flex-direction: column; width: 100%; text-align: center; }
    .nav-cta { width: 100%; justify-content: center; }
    .mobile-toggle { display: block; }
    
    .hero { padding: 160px 0 100px; }
    .hero h1 { font-size: 2.25rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    
    .features-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 40px; }
    .process-steps::before { display: none; }
}

/* =========================================
   Mission Interactive Hub
   ========================================= */
.mission-interactive-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .mission-interactive-wrapper {
        grid-template-columns: 1fr;
    }
}

.mission-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-tab {
    background: transparent;
    border: 1px solid rgba(24, 95, 165, 0.1);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.mission-tab:hover {
    background: rgba(24, 95, 165, 0.03);
    color: var(--clr-blue);
    transform: translateX(5px);
}

.mission-tab.active {
    background: var(--clr-white);
    color: var(--clr-blue);
    border-color: rgba(24, 95, 165, 0.3);
    box-shadow: var(--shadow-sm);
    transform: translateX(10px);
}

.tab-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(24, 95, 165, 0.3);
    transition: all 0.3s ease;
}

.mission-tab.active .tab-number {
    color: var(--clr-blue);
}

.mission-content-display {
    position: relative;
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    min-height: 400px;
    overflow: hidden;
}

.mission-pane {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-pane.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pane-anim-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--clr-blue);
    margin-bottom: 24px;
}

.circle-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(24, 95, 165, 0.1);
    animation: pulseCircle 2s infinite;
}

@keyframes pulseCircle {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.mission-pane h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--clr-dark);
}

.mission-pane p {
    font-size: 1.1rem;
    color: var(--clr-gray-500);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .mission-tab.active { transform: translateX(0); }
    .mission-content-display { padding: 30px; min-height: 350px; }
    .mission-pane { top: 30px; left: 30px; right: 30px; }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: -150%;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--clr-blue);
    flex-shrink: 0;
}

.cookie-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--clr-dark);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--clr-gray-500);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--clr-blue);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 20px;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF !important; /* Ensure it overrides other link colors */
    border-radius: 50%;
    font-size: 35px;
    box-shadow: 0px 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: wa-pulse 3s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes wa-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: var(--clr-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--clr-gray-200);
}

.whatsapp-float .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
    /* Hide tooltip on very small mobile screens to prevent overflow */
    .whatsapp-float .wa-tooltip {
        display: none;
    }
}

@media (max-width: 900px) {
    .service-content-wrapper { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
}
