/* ============================================
   LaserCraft — Premium Light + Gold Design
   Corporate Trust • Apple-style Glassmorphism
   ============================================ */

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

/* --- CSS Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gold Palette */
    --gold: #b8912e;
    --gold-light: #d4a853;
    --gold-lighter: #e8c97a;
    --gold-dark: #96750f;
    --gold-glow: rgba(184, 145, 46, 0.25);
    --gold-gradient: linear-gradient(135deg, #d4a853 0%, #f0d78c 40%, #d4a853 60%, #b8912e 100%);
    --gold-text-gradient: linear-gradient(135deg, #b8912e, #d4a853, #96750f);

    /* Light Palette */
    --bg-primary: #f8f7f4;
    /* Warm off-white */
    --bg-secondary: #f1efe9;
    /* Slightly darker warm */
    --bg-white: #ffffff;
    --bg-cream: #faf9f6;
    --bg-warm-gray: #edeae3;

    /* Glass effects (light mode) */
    --bg-glass: rgba(255, 255, 255, 0.55);
    --bg-glass-hover: rgba(255, 255, 255, 0.8);
    --border-glass: rgba(0, 0, 0, 0.06);
    --border-glass-hover: rgba(184, 145, 46, 0.35);

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-tertiary: #888888;
    --text-gold: #96750f;

    /* Corporate Navy accent (for trust) */
    --navy: #1c2b3a;
    --navy-light: #2d3e50;

    /* Effects */
    --blur: blur(40px);
    --blur-light: blur(20px);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 20px rgba(184, 145, 46, 0.15);
    --shadow-gold-lg: 0 8px 40px rgba(184, 145, 46, 0.25);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Spacing */
    --section-padding: 80px;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 18px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   FLOATING GLASSMORPHIC HEADER
   ============================================ */
.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--container-max);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(40px) saturate(1.5);
    -webkit-backdrop-filter: blur(40px) saturate(1.5);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 1000;
    transition: all 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(184, 145, 46, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 
                0 0 0 1px rgba(184, 145, 46, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(48px) saturate(1.6);
    -webkit-backdrop-filter: blur(48px) saturate(1.6);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo i {
    font-size: 28px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(184, 145, 46, 0.3));
}

.logo span {
    color: var(--navy);
}

.nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s var(--ease-out);
    position: relative;
    padding: 10px 18px;
    border-radius: 10px;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

.nav-link.active {
    color: var(--gold-dark);
    background: rgba(184, 145, 46, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #fff;
    box-shadow: var(--shadow-gold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--border-glass-hover);
    color: var(--gold-dark);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--bg-cream);
}

/* Subtle diagonal lines pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 40px,
            rgba(184, 145, 46, 0.03) 40px,
            rgba(184, 145, 46, 0.03) 41px);
    pointer-events: none;
}

/* Soft radial glow */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(184, 145, 46, 0.07) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {

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

    50% {
        transform: translate(-20px, -15px) scale(1.03);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(184, 145, 46, 0.08);
    border: 1px solid rgba(184, 145, 46, 0.18);
    border-radius: 999px;
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.hero-badge i {
    font-size: 14px;
}

.hero-text h1 {
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--navy);
    animation: fadeInUp 0.8s var(--ease-out) 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.highlight {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    opacity: 0.4;
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 520px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
}

.stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-image-container img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: all 0.6s var(--ease-out);
}

.hero-image-container:hover img {
    transform: scale(1.03);
}

/* Soft gradient overlay */
.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(28, 43, 58, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

/* Floating tech badges on hero image */
.hero-float-badge {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--blur-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-float-badge i {
    color: var(--gold);
    font-size: 16px;
}

.hero-float-badge:nth-child(2) {
    bottom: 24px;
    left: 16px;
    animation-delay: 0.5s;
}

.hero-float-badge:nth-child(3) {
    top: 24px;
    right: 16px;
    animation-delay: 1s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

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

/* ============================================
   PAGE HERO (Sub pages)
   ============================================ */
.page-hero {
    padding: 130px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-cream);
}

/* Dot pattern for page heroes */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(184, 145, 46, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(184, 145, 46, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--navy);
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 17px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(184, 145, 46, 0.07);
    border: 1px solid rgba(184, 145, 46, 0.15);
    border-radius: 999px;
    font-size: 11px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION — Glass Cards
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

/* Wavy pattern background */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(184, 145, 46, 0.02) 2px,
            rgba(184, 145, 46, 0.02) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(184, 145, 46, 0.02) 2px,
            rgba(184, 145, 46, 0.02) 4px
        );
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.6;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    padding: 32px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 145, 46, 0.3);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 
                0 0 0 1px rgba(184, 145, 46, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(32px) saturate(1.5);
    -webkit-backdrop-filter: blur(32px) saturate(1.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(184, 145, 46, 0.08);
    border: 1px solid rgba(184, 145, 46, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-icon {
    background: rgba(184, 145, 46, 0.12);
    border-color: rgba(184, 145, 46, 0.3);
    box-shadow: 0 0 20px rgba(184, 145, 46, 0.12);
}

.service-icon i {
    font-size: 22px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.service-card>p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-tertiary);
}

.service-features i {
    color: var(--gold);
    font-size: 11px;
}

/* ============================================
   FEATURES SECTION — Warm Gray + Gold
   ============================================ */
.features {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-secondary);
}

/* Subtle cross-hatch pattern */
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 145, 46, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 145, 46, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 36px 20px;
    border-radius: 18px;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-out);
    background: transparent;
}

.feature-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-item i {
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(184, 145, 46, 0.25));
    transition: all 0.3s var(--ease-out);
}

.feature-item:hover i {
    filter: drop-shadow(0 0 16px rgba(184, 145, 46, 0.4));
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.feature-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

/* Connecting line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 70px;
    right: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 145, 46, 0.25), rgba(184, 145, 46, 0.25), transparent);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s var(--ease-out);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.step:hover .step-number {
    background: rgba(184, 145, 46, 0.12);
    border-color: rgba(184, 145, 46, 0.4);
    box-shadow: 0 0 28px rgba(184, 145, 46, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy);
}

.step-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION — Corporate Trust Banner
   ============================================ */
.cta-section {
    padding: 64px 0;
    margin: 0 24px 0;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--navy);
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(184, 145, 46, 0.04) 80px,
            rgba(184, 145, 46, 0.04) 82px
        ),
        radial-gradient(ellipse 500px 300px at 30% 30%, rgba(184, 145, 46, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 400px 200px at 70% 70%, rgba(184, 145, 46, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Gold laser sweep line */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    animation: laserSweep 4s ease-in-out infinite;
}

@keyframes laserSweep {
    0% {
        transform: translateX(-50%);
    }

    50% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(24px, 2.5vw, 38px);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #ffffff;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   ABOUT PAGES
   ============================================ */
.about-story {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 70px,
            rgba(184, 145, 46, 0.015) 70px,
            rgba(184, 145, 46, 0.015) 72px
        );
    pointer-events: none;
}

.about-tech {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

/* Subtle dot pattern */
.about-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(184, 145, 46, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.about-process {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.about-quality {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.about-quality::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(184, 145, 46, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.about-content,
.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2,
.quality-text h2 {
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--navy);
}

.about-text p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.8;
}

.about-image img,
.quality-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    position: relative;
}

.tech-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(22px) saturate(1.3);
    -webkit-backdrop-filter: blur(22px) saturate(1.3);
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tech-item:hover {
    border-color: rgba(184, 145, 46, 0.3);
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px) saturate(1.4);
    -webkit-backdrop-filter: blur(30px) saturate(1.4);
}

.tech-item i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(184, 145, 46, 0.2));
    transition: all 0.3s var(--ease-out);
}

.tech-item:hover i {
    filter: drop-shadow(0 0 14px rgba(184, 145, 46, 0.35));
    transform: scale(1.1);
}

.tech-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.tech-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-out);
}

.timeline-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.timeline-icon {
    width: 52px;
    height: 52px;
    background: rgba(184, 145, 46, 0.08);
    border: 1px solid rgba(184, 145, 46, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-out);
}

.timeline-item:hover .timeline-icon {
    background: rgba(184, 145, 46, 0.12);
    box-shadow: 0 0 16px rgba(184, 145, 46, 0.1);
}

.timeline-icon i {
    font-size: 20px;
    color: var(--gold);
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.quality-list {
    list-style: none;
}

.quality-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 8px 0;
}

.quality-list i {
    color: var(--gold);
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(184, 145, 46, 0.2));
}

/* ============================================
   QUOTE / CONTACT FORMS
   ============================================ */
.quote-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.quote-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
}

.quote-form-container h2,
.contact-form-container h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--navy);
}

.quote-form,
.contact-form {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

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

.form-group label i {
    color: var(--gold);
    margin-right: 5px;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-cream);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(184, 145, 46, 0.4);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(184, 145, 46, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23b8912e'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-white);
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px;
    border: 1.5px dashed rgba(184, 145, 46, 0.25);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    background: rgba(184, 145, 46, 0.02);
}

.file-upload-label:hover {
    border-color: rgba(184, 145, 46, 0.5);
    background: rgba(184, 145, 46, 0.04);
}

.file-upload-label i {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 10px;
}

.file-upload-label span {
    font-size: 14px;
    color: var(--text-secondary);
}

.file-upload-label small {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.file-list {
    margin-top: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-cream);
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.file-item.file-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.file-error-text {
    color: #dc2626;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.file-item i {
    color: var(--gold);
}

.file-item.file-error i {
    color: #dc2626;
}

.file-size-warning {
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #dc2626;
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
}

.file-size-warning i {
    margin-right: 8px;
}

/* Info Cards */
.quote-info,
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-card,
.contact-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.info-card:hover,
.contact-card:hover {
    border-color: rgba(184, 145, 46, 0.3);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
}

.info-card i {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
    filter: drop-shadow(0 0 6px rgba(184, 145, 46, 0.15));
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(184, 145, 46, 0.08);
    border: 1px solid rgba(184, 145, 46, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s var(--ease-out);
}

.contact-card:hover .contact-icon {
    background: rgba(184, 145, 46, 0.12);
    box-shadow: 0 0 16px rgba(184, 145, 46, 0.1);
}

.contact-icon i {
    color: var(--gold);
    font-size: 18px;
    margin: 0;
}

.info-card h3,
.contact-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--navy);
}

.info-card p,
.contact-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-card small {
    font-size: 12px;
    color: var(--text-tertiary);
    display: block;
    margin-top: 4px;
}

.contact-card .btn {
    margin-top: 10px;
}

/* ============================================
   EXAMPLES / FAQ / MAP
   ============================================ */
.examples-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

/* Diagonal lines for examples bg */
.examples-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 60px,
            rgba(184, 145, 46, 0.025) 60px,
            rgba(184, 145, 46, 0.025) 61px);
    pointer-events: none;
}

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.map-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
}

.example-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.example-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 145, 46, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
}

.example-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: all 0.4s var(--ease-out);
}

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

.example-info {
    padding: 18px 20px;
}

.example-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
}

.example-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.faq-item:hover {
    border-color: rgba(184, 145, 46, 0.3);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.faq-item h3 i {
    color: var(--gold);
    margin-right: 6px;
}

.faq-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Map */
.map-placeholder {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1.5px dashed rgba(184, 145, 46, 0.2);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.map-placeholder i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 12px;
    opacity: 0.4;
}

.map-placeholder p {
    color: var(--text-secondary);
    font-size: 15px;
}

.map-placeholder small {
    color: var(--text-tertiary);
    font-size: 13px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 90px,
            rgba(184, 145, 46, 0.02) 90px,
            rgba(184, 145, 46, 0.02) 92px
        );
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 43, 58, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   FOOTER — Navy Corporate
   ============================================ */
.footer {
    background: var(--navy);
    padding: 60px 0 32px;
    position: relative;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.footer-logo i {
    font-size: 22px;
    color: var(--gold-light);
}

.footer-logo span {
    color: #fff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

.social-links a:hover {
    border-color: rgba(184, 145, 46, 0.4);
    color: var(--gold-light);
    background: rgba(184, 145, 46, 0.12);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.contact-info i {
    color: var(--gold-light);
    font-size: 13px;
    width: 14px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .header {
        width: calc(100% - 32px);
    }

    .hero-content,
    .about-content,
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero-image-container img {
        height: 340px;
    }

    .quote-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

    .process-steps::before {
        display: none;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 56px;
    }

    .header {
        top: 8px;
        width: calc(100% - 16px);
        border-radius: 14px;
    }

    .header-content {
        padding: 10px 14px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 8px;
        background: var(--bg-white);
        border-radius: 14px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 12px;
        flex-direction: column;
        gap: 2px;
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .btn-primary {
        display: none;
    }

    .hero {
        padding: 120px 0 48px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-image-container img {
        height: 260px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .page-hero {
        padding: 120px 0 32px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .services-grid,
    .features-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-section {
        margin: 0 12px 0;
        padding: 48px 20px;
        border-radius: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gallery-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(184, 145, 46, 0.25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 145, 46, 0.4);
}

/* ============================================
   SELECTION COLORS
   ============================================ */
::selection {
    background: rgba(184, 145, 46, 0.2);
    color: var(--text-primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 16px rgba(184, 145, 46, 0.1);
    }

    50% {
        box-shadow: 0 0 28px rgba(184, 145, 46, 0.2);
    }
}

/* ============================================
   FILE UPLOAD STYLES
   ============================================ */
.file-upload {
    position: relative;
    border: 2px dashed rgba(184, 145, 46, 0.3);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
    background: rgba(184, 145, 46, 0.02);
}

.file-upload:hover {
    border-color: rgba(184, 145, 46, 0.5);
    background: rgba(184, 145, 46, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-secondary);
}

.file-upload-label i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 8px;
}

.file-upload-label span {
    font-weight: 600;
    color: var(--text-primary);
}

.file-upload-label small {
    font-size: 12px;
    color: var(--text-tertiary);
}

.file-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.file-preview {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.file-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.file-info i {
    color: var(--gold);
    font-size: 16px;
}

.file-info span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 13px;
}

.file-info small {
    color: var(--text-tertiary);
    font-size: 11px;
}
/* Page Hero Badge */
.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(184, 145, 46, 0.08);
    border: 1px solid rgba(184, 145, 46, 0.18);
    border-radius: 999px;
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-hero .hero-badge i {
    font-size: 14px;
}
/* File Warning Popup */
.file-warning-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.warning-content {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--bg-warm-gray);
}

.warning-header i {
    color: #f59e0b;
    font-size: 20px;
}

.warning-header h4 {
    color: var(--text-primary);
    font-weight: 600;
    flex: 1;
}

.warning-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.warning-close:hover {
    background: var(--bg-warm-gray);
    color: var(--text-primary);
}

.warning-body {
    padding: 16px 24px 24px;
}

.warning-body p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.warning-body ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.warning-body li {
    padding: 8px 12px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    margin-bottom: 6px;
    color: #dc2626;
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}