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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.logo i {
    margin-right: 10px;
    color: #3498db;
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Brand accents */
:root {
    --brand-gold: #c9a227;
    --brand-gold-light: #e8d48a;
    --hero-gradient: linear-gradient(145deg, #1a1f35 0%, #2d3560 45%, #4a3f7a 100%);
}

/* Hero Section */
.hero {
    background: var(--hero-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    /* Pulsing inset glow (reads clearly; still not neon) */
    box-shadow: inset 0 0 100px rgba(201, 162, 39, 0.1);
    animation: heroInsetGlow 7.5s ease-in-out infinite;
    will-change: box-shadow;
}

/* Gold wash — opacity pulses for visible “breathing” */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 90% 58% at 100% 0%, rgba(201, 162, 39, 0.28) 0%, rgba(201, 162, 39, 0.06) 45%, transparent 65%);
    pointer-events: none;
    will-change: opacity;
    animation: heroCornerPulse 8s ease-in-out infinite;
}

/* Large soft center bloom — scale + opacity pulse */
.hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 38%;
    width: 160%;
    max-width: 110rem;
    height: 110%;
    transform: translate3d(-50%, -50%, 0) scale(1);
    background: radial-gradient(ellipse 50% 42% at 50% 42%, rgba(201, 162, 39, 0.26) 0%, rgba(102, 126, 234, 0.14) 40%, rgba(74, 63, 122, 0.06) 60%, transparent 75%);
    pointer-events: none;
    filter: blur(2px);
    will-change: opacity, transform;
    animation: heroPulseGlow 6.5s ease-in-out infinite;
}

/* Pointer-follow spotlight (JS positions; lerp in script) */
.hero-spotlight {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 38vmin;
    height: 38vmin;
    min-width: 200px;
    min-height: 200px;
    max-width: 480px;
    max-height: 480px;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
    opacity: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(201, 162, 39, 0.38) 0%,
        rgba(102, 126, 234, 0.12) 38%,
        transparent 70%
    );
    mix-blend-mode: screen;
    transform: translate3d(0, 0, 0) translate(-50%, -50%) scale(0.92);
    transition: opacity 0.5s ease;
    filter: blur(0.5px);
}

.hero[data-spotlight-active="true"] .hero-spotlight {
    opacity: 1;
}

/* Fine pointers: “aim” at the light; large touch: default */
/* Custom ring: hidden until JS (fine pointer) moves it */
.hero-pointer {
    position: fixed;
    z-index: 5;
    width: 22px;
    height: 22px;
    left: 0;
    top: 0;
    box-sizing: border-box;
    margin: 0;
    border: 2px solid rgba(232, 212, 138, 0.95);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(26, 31, 53, 0.6), 0 0 20px rgba(201, 162, 39, 0.45);
    pointer-events: none;
    will-change: left, top, opacity;
    display: none;
    opacity: 0;
}

@media (pointer: fine) and (min-width: 900px) {
    .hero {
        cursor: none;
    }

    .hero a,
    .hero button,
    .hero input,
    .hero .tracking-number-input,
    .hero label,
    [data-hero] select {
        cursor: pointer;
    }

    [data-hero] input[type="text"] {
        cursor: text;
    }

    body.hero-cursor-on .hero-pointer {
        display: block;
        opacity: 1;
    }
}

/* Wider hero: less “boxed” on large screens */
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4.5vw, 4.5rem);
    align-items: center;
    width: 100%;
    max-width: min(92rem, 100% - clamp(1.5rem, 4vw, 3.5rem));
    margin-left: auto;
    margin-right: auto;
    padding-left: max(0px, env(safe-area-inset-left, 0));
    padding-right: max(0px, env(safe-area-inset-right, 0));
    box-sizing: border-box;
}

@media (min-width: 90rem) {
    .hero-inner {
        max-width: min(96rem, 100% - 2 * clamp(2rem, 5vw, 4rem));
    }
}

.hero-text h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    margin-bottom: 1rem;
    line-height: 1.12;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-gold-light);
    margin-bottom: 1rem;
}

.hero-badge i {
    color: var(--brand-gold);
}

.hero-lead {
    font-size: 1.1rem;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-highlights i {
    color: #2ecc71;
    margin-right: 0.4rem;
}

.hero-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.hero-visual-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(26, 31, 53, 0.92);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 12px;
    padding: 0.75rem 1.1rem;
    text-align: right;
    backdrop-filter: blur(8px);
}

.hero-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

/* Tracking Form */
.tracking-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    max-width: none;
    width: 100%;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.tracking-form h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    display: flex;
    gap: 10px;
}

.tracking-fields {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.form-group input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.tracking-fields input,
.tracking-fields select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.tracking-fields select {
    appearance: none;
}

.tracking-preview {
    margin-top: 12px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.preview-track {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
}

.preview-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #2ecc71, #f1c40f);
    transition: width 0.25s ease;
}

.tracking-preview p {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
}

.track-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.track-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.order-cta {
    margin-top: 12px;
    text-align: center;
}

.order-cta p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
}

.order-btn {
    display: inline-block;
    text-decoration: none;
    background: #fff;
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.tracking-format-hint {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
}

.recent-tracking {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    text-align: center;
}

.recent-tracking ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.recent-tracking button {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
}

/* Visual feature strip */
.visual-strip {
    padding: 3.5rem 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.visual-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.visual-tile {
    text-align: center;
}

.visual-tile-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.visual-tile-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.visual-tile:hover .visual-tile-img img {
    transform: scale(1.04);
}

.visual-tile h3 {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 0.4rem;
}

.visual-tile p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card--image {
    padding: 0;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.service-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

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

.service-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    text-align: left;
    flex: 1;
}

.service-card--image i {
    font-size: 1.5rem;
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.service-card--image h3 {
    font-size: 1.2rem;
}

.service-card--image p {
    font-size: 0.95rem;
}

.service-card:not(.service-card--image):hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image {
    text-align: center;
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.about-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-floating-card i {
    font-size: 1.5rem;
    color: var(--brand-gold);
    margin-top: 0.15rem;
}

.about-floating-card strong {
    display: block;
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.about-floating-card span {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.35;
}

/* Mid-page CTA */
.cta-band {
    position: relative;
    padding: 4.5rem 0;
    background-color: #1a1f35;
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26, 31, 53, 0.92) 0%, rgba(26, 31, 53, 0.65) 55%, rgba(201, 162, 39, 0.2) 100%);
    pointer-events: none;
}

.cta-band-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-band-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 0.5rem;
    max-width: 24rem;
}

.cta-band-text p {
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-gold {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    background: var(--brand-gold);
    color: #1a1f35;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s, transform 0.2s;
}

.btn-gold:hover {
    background: #ddb82e;
    transform: translateY(-2px);
}

.btn-outline-light {
    display: inline-block;
    padding: 0.85rem 1.4rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s, border-color 0.2s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: #3498db;
    width: 50px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3498db;
}

.submit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* --- Motion & scroll reveal --- */
.reveal {
    --reveal-d: 0;
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    filter: blur(0);
    transition:
        opacity 0.75s cubic-bezier(0.22, 0.9, 0.35, 1),
        transform 0.75s cubic-bezier(0.22, 0.9, 0.35, 1);
    transition-delay: calc(var(--reveal-d) * 0.1s);
    will-change: opacity, transform;
}

.reveal--visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Hero: staggered load animation */
.hero-entrance > * {
    animation: heroContentIn 0.85s cubic-bezier(0.22, 0.9, 0.35, 1) both;
}

.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.12s; }
.hero-text > *:nth-child(3) { animation-delay: 0.2s; }
.hero-text > *:nth-child(4) { animation-delay: 0.28s; }

.hero-panel > *:nth-child(1) { animation-delay: 0.15s; }
.hero-panel > *:nth-child(2) { animation-delay: 0.28s; }

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Subtle continuous motion (hero badge) */
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.hero-visual-badge {
    animation: floatBadge 4.5s ease-in-out infinite;
}

/* Inset “frame” of light on the full hero */
@keyframes heroInsetGlow {
    0%,
    100% {
        box-shadow:
            inset 0 0 90px rgba(201, 162, 39, 0.08),
            inset 0 -30px 100px rgba(102, 126, 234, 0.05);
    }
    50% {
        box-shadow:
            inset 0 0 200px rgba(201, 162, 39, 0.22),
            inset 0 0 240px rgba(90, 110, 190, 0.08),
            inset 0 -40px 120px rgba(26, 31, 53, 0.35);
    }
}

/* Top-right gold wash: visible fade in / out */
@keyframes heroCornerPulse {
    0%,
    100% {
        opacity: 0.55;
    }
    50% {
        opacity: 1;
    }
}

/* Center bloom: breathing scale + strength */
@keyframes heroPulseGlow {
    0%,
    100% {
        opacity: 0.42;
        transform: translate3d(-50%, -50%, 0) scale(0.98);
    }
    50% {
        opacity: 0.88;
        transform: translate3d(-50%, -50%, 0) scale(1.08);
    }
}

/* Service cards: scroll reveal + hover (no inline JS) */
.service-card--image.reveal--visible {
    transition:
        transform 0.4s cubic-bezier(0.22, 0.9, 0.35, 1),
        box-shadow 0.4s ease;
}

.service-card--image.reveal--visible:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .reveal--visible {
        animation: none;
    }

    .hero-entrance > *,
    .hero-visual-badge,
    .hero,
    .hero::before,
    .hero::after {
        animation: none;
    }

    .hero {
        box-shadow: inset 0 0 100px rgba(201, 162, 39, 0.1);
        cursor: auto;
    }

    .hero .hero-spotlight,
    .hero-pointer {
        display: none !important;
    }
}

/* Animations (legacy + utilities) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        background: #fff;
        border-radius: 10px;
        padding: 12px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
        flex-direction: column;
        gap: 0.8rem;
        z-index: 1100;
    }

    .nav-menu.active {
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights {
        align-items: center;
    }

    .visual-strip-grid {
        grid-template-columns: 1fr;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-band-text h2,
    .cta-band-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-band-actions {
        justify-content: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services h2 {
        margin-bottom: 0.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }

    .tracking-fields {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .tracking-form {
        padding: 1.5rem;
    }
    
    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }
}
