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

/* Reset and Custom Variables */
:root {
    --bg-dark: #03060f;
    --bg-card: rgba(10, 18, 42, 0.4);
    --bg-card-hover: rgba(16, 29, 66, 0.55);
    --border-color: rgba(0, 163, 255, 0.12);
    --border-hover: rgba(0, 224, 255, 0.3);
    
    --primary: #00A3FF;
    --primary-glow: rgba(0, 163, 255, 0.25);
    --accent: #00E0FF;
    --accent-glow: rgba(0, 224, 255, 0.35);
    --dark-blue: #070c1e;
    
    --text-main: #F0F5FA;
    --text-muted: #94A3B8;
    --text-dark: #03060f;
    
    --grad-primary: linear-gradient(135deg, #00A3FF 0%, #00E0FF 100%);
    --grad-dark: linear-gradient(180deg, #03060f 0%, #070c1e 100%);
    --grad-accent: linear-gradient(90deg, #00A3FF 0%, #00E0FF 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-glow: 0 0 35px rgba(0, 224, 255, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 163, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(0, 224, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Base Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Gradients & Highlights */
.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 15px rgba(0, 224, 255, 0.3);
}

.glow-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    background: var(--grad-primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 163, 255, 0.35);
    transition: var(--transition);
    overflow: hidden;
    letter-spacing: 0.02em;
}

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 224, 255, 0.55);
}

.glow-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: 0.5s;
}

.glow-btn:hover::before {
    left: 100%;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.outline-btn:hover {
    background: rgba(0, 163, 255, 0.06);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.15);
    transform: translateY(-3px);
}

.outline-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Glassmorphism Cards */
.glass-card {
    background: linear-gradient(135deg, rgba(10, 18, 42, 0.4) 0%, rgba(5, 8, 17, 0.6) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 163, 255, 0.12);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.glass-card:hover {
    background: linear-gradient(135deg, rgba(16, 29, 66, 0.55) 0%, rgba(8, 14, 30, 0.7) 100%);
    border-color: rgba(0, 224, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 163, 255, 0.12), inset 0 0 15px rgba(0, 224, 255, 0.05);
    transform: translateY(-3px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(3, 6, 15, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 163, 255, 0.12);
    padding: 1.1rem 0;
    transition: var(--transition);
}

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

/* Logo Fallback & Style */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-frame {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    background: #f4f7fa; /* Matches the new logo design background */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.3);
    transition: var(--transition);
    padding: 3px;
    flex-shrink: 0;
}

.logo-container:hover .logo-frame {
    border-color: var(--accent);
    box-shadow: 0 0 22px rgba(0, 224, 255, 0.6);
    transform: scale(1.08) rotate(5deg);
}

.logo-container:hover .logo-title {
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.25);
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.8);
}

.glow-headlight {
    animation: headlightPulse 2.5s infinite alternate;
}

@keyframes headlightPulse {
    0% { fill: #ffffff; r: 3.5px; filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.5)); }
    100% { fill: #00E0FF; r: 4.5px; filter: drop-shadow(0 0 8px rgba(0, 224, 255, 0.9)); }
}

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

.logo-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.1;
    color: var(--text-main);
    letter-spacing: 0.05em;
    font-style: italic;
    background: linear-gradient(135deg, #FFF 40%, #00E0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--primary);
    line-height: 1;
    margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 163, 255, 0.2);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 110;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 163, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-meta-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.meta-point h4 {
    font-size: 1.8rem;
    color: var(--accent);
    line-height: 1.2;
}

.meta-point p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual & Interactive Slider */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 163, 255, 0.15);
    transition: var(--transition);
}

.slider-wrapper:hover {
    border-color: var(--border-hover);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 224, 255, 0.25);
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.img-before {
    z-index: 1;
}

.img-after {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--accent);
    z-index: 3;
    cursor: ew-resize;
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.9);
    transform: translateX(-50%);
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: #03060f;
    border: 2px solid var(--accent);
    border-radius: 50%;
    cursor: ew-resize;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.6), inset 0 0 8px rgba(0, 224, 255, 0.3);
    color: var(--accent);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, background-color 0.2s ease;
}

.slider-wrapper:hover .handle-button {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 25px rgba(0, 224, 255, 0.95), inset 0 0 12px rgba(0, 224, 255, 0.5);
    background: #070c1e;
}

.handle-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.slider-wrapper:hover .handle-button svg {
    transform: scale(1.05);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 0.45rem 0.9rem;
    background: rgba(3, 6, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.slider-wrapper:hover .slider-label {
    background: rgba(3, 6, 15, 0.95);
    border-color: rgba(0, 224, 255, 0.2);
}

.label-before {
    left: 20px;
    color: #FFB800; /* Yellowish indicator for oxidized */
}

.label-after {
    right: 20px;
    color: var(--accent); /* Electric cyan for clean */
}

.price-tag-floating {
    position: absolute;
    top: -20px;
    right: -10px;
    background: var(--grad-primary);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0, 163, 255, 0.4);
    transform: rotate(12deg);
    animation: float-price 5s ease-in-out infinite alternate;
}

.price-tag-floating span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes float-price {
    0% { transform: rotate(12deg) translateY(0); }
    100% { transform: rotate(8deg) translateY(-10px); }
}

/* Sections General */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4.5rem auto;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-desc {
    font-size: 1.05rem;
}

/* Marketing / Why Choose Us */
.marketing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.marketing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 163, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.marketing-card:hover .card-icon {
    background: var(--accent);
    color: var(--text-dark);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.4);
    transform: scale(1.05);
}

.marketing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.marketing-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

@media (min-width: 1025px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 32px; /* Center of the step-num */
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, rgba(0, 163, 255, 0) 0%, rgba(0, 224, 255, 0.3) 50%, rgba(0, 163, 255, 0) 100%);
        z-index: 1;
        pointer-events: none;
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 64px;
    height: 64px;
    background: #03060f;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--accent);
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.15);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .step-num {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.08);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
}

/* Service Area Section */
.area-section {
    background: radial-gradient(circle at center, rgba(10, 24, 53, 0.3) 0%, transparent 70%);
}

.area-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.area-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.area-content p {
    margin-bottom: 2rem;
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.area-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.map-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
    position: relative;
    transition: var(--transition);
}

.map-container:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 55px rgba(0, 163, 255, 0.1);
}

.map-mockup {
    width: 100%;
    height: 100%;
    background-color: #03060f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    text-align: center;
}

/* Styled map graphic with circles */
.map-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    background-image: 
        radial-gradient(rgba(0, 163, 255, 0.25) 1.5px, transparent 0),
        radial-gradient(rgba(0, 163, 255, 0.25) 1.5px, transparent 0);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
}

.map-radar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(0, 224, 255, 0.25);
    background: rgba(0, 163, 255, 0.02);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.05);
}

.map-radar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(0, 224, 255, 0.15) 0deg, transparent 90deg);
    animation: radarSweep 4s infinite linear;
    transform-origin: center;
    pointer-events: none;
}

.map-radar::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 224, 255, 0.12);
    pointer-events: none;
}

@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.map-pin {
    position: absolute;
    z-index: 3;
    animation: bounce 2.2s infinite ease-in-out;
}

.map-pin-label {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
    z-index: 2;
}

.map-pin-sub {
    font-size: 0.85rem;
    color: var(--accent);
    z-index: 2;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes radarPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Service Request Form Section */
.form-section {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, #060a17 100%);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.form-info h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.form-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 163, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}

.info-text p {
    font-size: 0.9rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-input {
    background: rgba(3, 6, 15, 0.65);
    border: 1px solid rgba(0, 163, 255, 0.15);
    border-radius: 12px;
    padding: 0.95rem 1.25rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input::placeholder {
    color: rgba(148, 163, 184, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.25), inset 0 0 8px rgba(0, 224, 255, 0.05);
    background: rgba(3, 6, 15, 0.85);
}

textarea.form-input {
    resize: none;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    margin-top: 1rem;
    font-size: 1.15rem;
}

/* Success Modal & States */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.success-modal {
    width: 90%;
    max-width: 450px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .success-modal {
    transform: scale(1);
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 224, 255, 0.1);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
}

.success-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.success-modal p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Footer Section */
footer {
    background: #02040a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 4rem 0 2rem 0;
}

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

.footer-brand p {
    margin-top: 1rem;
    max-width: 320px;
    font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

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

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.contact-link-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-link-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge-idaho {
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero {
        padding-top: 7rem;
        min-height: auto;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-meta-points {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .marketing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .area-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(3, 6, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
        transition: var(--transition);
        border-top: 1px solid rgba(0, 163, 255, 0.12);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Case Study / Results Section */
.case-study-section {
    background: linear-gradient(180deg, rgba(0, 163, 255, 0.01) 0%, rgba(10, 24, 53, 0.2) 100%);
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.trust-info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.trust-info-card h3 {
    font-size: 1.8rem;
    color: var(--text-main);
}

.trust-pitch {
    font-size: 1.05rem;
    line-height: 1.6;
}

.trust-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0.5rem 0;
}

.trust-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.trust-features-list li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.trust-features-list li span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-features-list li strong {
    color: var(--text-main);
}

.trust-quote {
    border-left: 3px solid var(--accent);
    padding-left: 1.25rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quote-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.5;
}

.quote-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Adjustments for Tundra Slider Wrapper aspect ratio */
.tundra-slider-wrapper {
    aspect-ratio: 1.4 / 1; /* Match the Tundra photo's natural landscape aspect ratio */
}

@media (max-width: 1024px) {
    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: left;
    }
    
    .case-study-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

