/* ===================================
   DARSCO WELDING - V2 Design
   Blueprint Industrial Theme
   Teal + Amber Color Palette
   =================================== */

:root {
    /* Colors - Completely New Palette */
    --bg-deep: #0a1628;
    --bg-card: #1a2a42;
    --bg-card-hover: #243650;
    --accent-cyan: #00d4ff;
    --accent-amber: #ffb347;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --amber-glow: rgba(255, 179, 71, 0.3);
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(100, 116, 139, 0.3);
    --white: #ffffff;
    --success: #10b981;

    /* Typography */
    --font-main: 'Space Grotesk', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* ===================================
   FLOATING CONTACT BAR
   =================================== */
.floating-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.floating-phone {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 24px;
    background: var(--accent-cyan);
    color: var(--bg-deep);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.floating-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.5);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 0 var(--space-lg);
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-mark {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-amber));
    color: var(--bg-deep);
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: var(--radius-sm);
}

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

.logo-name {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.03em;
}

.logo-tag {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.nav {
    display: none;
    gap: var(--space-xl);
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--accent-cyan);
}

.header-cta {
    display: none;
    padding: 10px 20px;
    background: transparent;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--accent-cyan);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.header-cta:hover {
    background: var(--accent-cyan);
    color: var(--bg-deep);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle span:first-child {
    top: 6px;
}

.menu-toggle span:last-child {
    bottom: 6px;
    width: 60%;
}

.menu-toggle.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:last-child {
    bottom: 50%;
    width: 100%;
    transform: translateY(50%) rotate(-45deg);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent-cyan), #00a8cc);
    color: var(--bg-deep);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-light {
    background: var(--white);
    color: var(--bg-deep);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-full {
    width: 100%;
}

/* ===================================
   HERO - SPLIT SCREEN
   =================================== */
.hero {
    min-height: 100vh;
    padding: 120px var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 179, 71, 0.03));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-grid {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.text-accent {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-location svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-amber);
}

/* Hero Visual */
.hero-visual {
    display: none;
}

.visual-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 450px;
    margin: 0 auto;
}

.spark-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weld-glow {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, rgba(0, 212, 255, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-amber);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-amber);
}

.spark-1 {
    top: 30%;
    left: 40%;
    animation: spark-fly 2s ease-out infinite;
}

.spark-2 {
    top: 40%;
    left: 55%;
    animation: spark-fly 2s ease-out infinite 0.3s;
}

.spark-3 {
    top: 35%;
    left: 48%;
    animation: spark-fly 2s ease-out infinite 0.6s;
}

@keyframes spark-fly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(30px, -50px) scale(0);
        opacity: 0;
    }
}

.visual-badge {
    position: absolute;
    bottom: 20%;
    right: 10%;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
}

.vb-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.vb-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* Hero Scroll Indicator */
.hero-scroll {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.6);
    }
}

/* ===================================
   STATS STRIP
   =================================== */
.stats-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    padding: var(--space-sm);
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.stat-divider {
    display: none;
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===================================
   SERVICES - BENTO GRID
   =================================== */
.services {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro {
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.section-intro h2,
.about-content h2,
.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.bento-card {
    position: relative;
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bento-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.bento-card p {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.card-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    display: block;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

/* Card Images */
.card-image {
    width: 100%;
    height: 160px;
    margin: calc(-1 * var(--space-lg));
    margin-bottom: var(--space-md);
    width: calc(100% + 2 * var(--space-lg));
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bento-card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding-top: var(--space-sm);
}

/* Emergency Card - Featured */
.bento-emergency {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 179, 71, 0.05));
    border-color: rgba(0, 212, 255, 0.3);
}

.bento-emergency .card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.emergency-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.emergency-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-cyan);
}

.emergency-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 20px;
    background: var(--accent-cyan);
    color: var(--bg-deep);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.emergency-cta:hover {
    gap: var(--space-md);
}

.cta-arrow {
    transition: transform 0.2s;
}

.emergency-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.card-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 6px 12px;
    background: var(--accent-amber);
    color: var(--bg-deep);
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-mono);
    border-radius: 4px;
    letter-spacing: 0.05em;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--bg-card);
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-content p {
    color: var(--text-secondary);
    margin: var(--space-md) 0 var(--space-xl);
    max-width: 500px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.af-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.af-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.af-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-cyan);
}

.af-item strong {
    display: block;
    margin-bottom: 2px;
}

.af-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* About Visual */
.about-visual {
    display: none;
}

.av-box {
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 179, 71, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-inner {
    text-align: center;
}

.av-large {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.av-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
    padding: var(--space-2xl) var(--space-lg);
    background: linear-gradient(135deg, var(--accent-cyan), #00a8cc);
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

.cta-tag {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: rgba(10, 22, 40, 0.6);
    margin-bottom: var(--space-xs);
}

.cta-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--bg-deep);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info p {
    color: var(--text-secondary);
    margin: var(--space-md) 0 var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.cd-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.cd-item:hover {
    border-color: var(--accent-cyan);
}

.cd-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-sm);
}

.cd-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-cyan);
}

.cd-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.cd-value {
    font-weight: 600;
}

.service-areas {
    padding: var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.sa-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-amber);
    margin-bottom: var(--space-xs);
    font-family: var(--font-mono);
}

.service-areas p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    margin-top: var(--space-sm);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    margin-top: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================
   RESPONSIVE - Tablet
   =================================== */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat-divider {
        display: block;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-emergency {
        grid-column: span 2;
    }

    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ===================================
   RESPONSIVE - Desktop
   =================================== */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .header-cta {
        display: inline-block;
    }

    .menu-toggle {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        display: block;
    }

    .hero-scroll {
        display: flex;
        position: absolute;
        bottom: var(--space-xl);
        left: 50%;
        transform: translateX(-50%);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-visual {
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ===================================
   RESPONSIVE - Large Desktop
   =================================== */
@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }

    .bento-emergency {
        grid-column: span 1;
        grid-row: span 2;
    }
}

/* ===================================
   MOBILE NAV OVERLAY
   =================================== */
@media (max-width: 767px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-deep);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xl);
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        font-size: 1.5rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge,
.hero h1,
.hero-desc,
.hero-actions,
.hero-location {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero-desc {
    animation-delay: 0.3s;
}

.hero-actions {
    animation-delay: 0.4s;
}

.hero-location {
    animation-delay: 0.5s;
}