/* ========================================================
   MODERN ARCHITECTURAL LUXURY HERO SECTION (2026 REDESIGN)
   Theme: Royal Steel Navy & Warm Polished Bronze
   ======================================================== */
.modern-hero-section {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 125px 0 85px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c233c 0%, #133559 50%, #194675 100%);
}

/* High-Tech Architectural CAD / Blueprint Grid */
.hero-blueprint-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(184, 142, 68, 0.12) 1.2px, transparent 1.2px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
}

/* Subtle Ambient Radiant Glows */
.hero-ambient-glow-top {
    position: absolute;
    top: -120px;
    right: 5%;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 142, 68, 0.15) 0%, transparent 68%);
    pointer-events: none;
    z-index: 2;
    animation: heroGlowDrift1 16s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-ambient-glow-bottom {
    position: absolute;
    bottom: -100px;
    left: 2%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 58, 99, 0.45) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    animation: heroGlowDrift2 20s ease-in-out infinite alternate;
    will-change: transform;
}

/* Background Slider Wrap */
.hero-slider-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.05);
    animation: heroZoom 24s infinite alternate;
}

.hero-slide.active {
    opacity: 0.32;
}

@keyframes heroZoom {
    0% { transform: scale(1.03); }
    100% { transform: scale(1.12); }
}

.hero-overlay-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 35, 60, 0.45) 0%, rgba(12, 35, 60, 0.78) 65%, #0c233c 100%);
    pointer-events: none;
    z-index: 3;
}

/* Fluid Container & Split 2-Column Grid */
.hero-container-fluid {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

/* Right Lead Column */
.hero-lead-column {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 30px;
    background: #091f35;
    border: 1.5px solid #c59b4f;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin-bottom: 22px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
    animation: fadeInDown 0.8s ease-out;
}

.live-pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 10px #25d366;
    display: inline-block;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-main-title {
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.hero-gold-glow {
    color: #e5b85a;
    display: inline-block;
    text-shadow: 0 2px 16px rgba(229, 184, 90, 0.4);
    background: none;
    -webkit-text-fill-color: initial;
    filter: none;
}

.hero-main-desc {
    font-size: clamp(1rem, 1.6vw, 1.14rem);
    color: #d1dcf0;
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 680px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Action Buttons Hub */
.hero-actions-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    width: 100%;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #b88e44 0%, #9e7530 100%);
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 22px rgba(184, 142, 68, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 142, 68, 0.45);
    background: linear-gradient(135deg, #c59b4f 0%, #a87d37 100%);
    color: #ffffff;
}

.btn-hero-primary .arrow-icon {
    font-size: 0.95rem;
    transition: transform 0.3s;
}

.btn-hero-primary:hover .arrow-icon {
    transform: translateX(-5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: var(--navy-deep);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 22px;
    border-radius: 12px;
    background: rgba(37, 211, 102, 0.16);
    border: 1px solid rgba(37, 211, 102, 0.45);
    color: #4ade80;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.wa-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 8px #25d366;
    display: inline-block;
}

.btn-hero-whatsapp:hover .wa-status-dot {
    background: #ffffff;
    box-shadow: 0 0 8px #ffffff;
}

/* Integrated Trust Metrics Strip */
.hero-metrics-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    width: 100%;
    max-width: 680px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(184, 142, 68, 0.16);
    border: 1px solid rgba(184, 142, 68, 0.35);
    color: #e2c082;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.metric-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.metric-val {
    font-size: 1.05rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.metric-lbl {
    font-size: 0.72rem;
    color: #cbd5e1;
    font-weight: 600;
    margin-top: 2px;
}

.metric-divider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.15);
}

/* Left Column: Interactive 3D Showcase Card */
.hero-visual-column {
    position: relative;
}

.hero-showcase-card {
    position: relative;
    border-radius: 24px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(184, 142, 68, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(184, 142, 68, 0.2);
    border-color: rgba(184, 142, 68, 0.35);
}

.showcase-media-frame {
    position: relative;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
}

.showcase-slides-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.showcase-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease-in-out, transform 8s ease;
    transform: scale(1.02);
}

.showcase-slide-img.active {
    opacity: 1;
    transform: scale(1.08);
}

.showcase-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 35, 60, 0.08) 0%, rgba(12, 35, 60, 0.4) 50%, rgba(12, 35, 60, 0.88) 100%);
    pointer-events: none;
    z-index: 2;
}

.showcase-caption-overlay {
    position: absolute;
    bottom: 18px;
    right: 20px;
    left: 20px;
    z-index: 5;
    text-align: right;
}

.caption-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #b88e44 0%, #9e7530 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.caption-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.caption-subtitle {
    font-size: 0.85rem;
    color: #d1dcf0;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Floating Glass Badges */
.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(12, 35, 60, 0.88);
    border: 1px solid rgba(184, 142, 68, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    z-index: 8;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

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

.float-top-right {
    top: -22px;
    right: -15px;
}

.float-bottom-left {
    bottom: 72px;
    left: -20px;
    animation-delay: -2s;
}

.float-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(184, 142, 68, 0.2);
    color: #e2c082;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.float-icon-box.gold-icon {
    color: #e2c082;
    background: rgba(184, 142, 68, 0.2);
}

.float-text-box {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.float-text-box strong {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 800;
}

.float-text-box span {
    font-size: 0.72rem;
    color: #cbd5e1;
    font-weight: 600;
}

/* Interactive Service Navigation Pills */
.hero-service-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.hero-pill-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.hero-pill-link:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 142, 68, 0.3);
}

/* About Section on Home */
.home-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.home-about-img-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(15, 39, 66, 0.12);
    box-shadow: 0 20px 50px rgba(15, 39, 66, 0.12);
}

.home-about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.home-about-img-box:hover img {
    transform: scale(1.05);
}

.home-about-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid var(--primary);
    border-radius: 14px;
    padding: 15px 22px;
    box-shadow: 0 10px 30px rgba(15, 39, 66, 0.15);
    backdrop-filter: blur(8px);
    text-align: center;
}

.home-about-badge strong {
    display: block;
    font-size: 2rem;
    color: var(--navy-deep);
    line-height: 1;
    margin-bottom: 4px;
}

.home-about-badge span {
    font-size: 0.85rem;
    color: var(--text-body);
    font-weight: 700;
}

/* Why Choose Us / Quality Pillars (Home) */
.why-us {
    background-color: var(--bg-section-alt);
}

.home-feature-card {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(15, 39, 66, 0.05);
}

.home-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 18px 40px rgba(15, 43, 72, 0.1), 0 0 18px rgba(184, 142, 68, 0.12);
}

.home-feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: rgba(184, 142, 68, 0.1);
    border: 1px solid rgba(184, 142, 68, 0.25);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    transition: transform 0.3s;
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary);
    color: #ffffff;
}

.home-feature-card h3 {
    color: var(--navy-deep);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.home-feature-card p {
    color: var(--text-body);
    font-size: 0.94rem;
    line-height: 1.75;
}

/* Testimonials Section */
.testimonials {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    padding-block: 18px;
}

.testimonials-wrapper::before,
.testimonials-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-wrapper::before {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.testimonials-wrapper::after {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.testimonials-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    animation: testimonials-marquee 16s linear infinite;
    will-change: transform;
}

.testimonials-wrapper:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid rgba(15, 39, 66, 0.1);
    box-shadow: 0 10px 30px rgba(15, 39, 66, 0.06);
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(15, 39, 66, 0.12);
    border-color: var(--primary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 39, 66, 0.2);
}

.testimonial-avatar span {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.testimonial-text {
    margin-top: 6px;
    margin-bottom: 14px;
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.7;
}

.testimonial-client h3 {
    font-size: 1rem;
    color: var(--navy-deep);
    margin-bottom: 2px;
}

.testimonial-client span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.testimonial-rating {
    margin-top: 6px;
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-rating i {
    margin-left: 2px;
}

/* Contact Info & Form on Home */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, #0d2744 0%, #15385f 100%);
    padding: 38px;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(15, 43, 72, 0.12);
}

.contact-info h3 {
    color: #ffffff;
    font-size: 1.45rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-info-item i {
    color: #e2c082;
    font-size: 1.2rem;
}

.contact-info-item a,
.contact-info-item span {
    color: #ffffff;
    font-weight: 600;
}

.contact-form {
    background: #ffffff;
    padding: 38px;
    border-radius: 16px;
    border: 1px solid rgba(15, 43, 72, 0.08);
    box-shadow: 0 15px 40px rgba(15, 43, 72, 0.06);
}

.contact-form h4 {
    color: var(--navy-deep);
    font-size: 1.3rem;
    margin-bottom: 22px;
    text-align: center;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-family: inherit;
    transition: all 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 142, 68, 0.15);
    outline: none;
}

/* ========================================================
   10. EXECUTIVE DYNAMIC BACKGROUND SYSTEM (HOMEPAGE SECTIONS)
   Architectural CAD Mesh + Floating Ambient Luxury Orbs + Laser Sweep
   ======================================================== */

.section-animated-wrapper {
    position: relative !important;
    overflow: hidden !important;
}

/* 1. Subtle architectural CAD blueprint grid drifting in background */
.section-bg-mesh {
    position: absolute;
    inset: -60px;
    background-image: 
        linear-gradient(to right, rgba(184, 142, 68, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(184, 142, 68, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
    animation: cadMeshDrift 40s linear infinite;
    will-change: transform;
}

@keyframes cadMeshDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(50px, 50px, 0);
    }
}

/* Alternate reverse drift for alternating rhythm between sections */
.section-bg-mesh-alt {
    animation: cadMeshDriftAlt 45s linear infinite;
}

@keyframes cadMeshDriftAlt {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50px, 50px, 0);
    }
}

/* 2. Floating Ambient Luxury Glow Orbs (Pure GPU Accelerated) */
.section-ambient-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(85px);
    -webkit-filter: blur(85px);
    opacity: 0.6;
    will-change: transform, opacity;
}

.orb-gold-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(184, 142, 68, 0.06) 50%, transparent 72%);
}

.orb-steel-glow {
    background: radial-gradient(circle, rgba(15, 43, 72, 0.16) 0%, rgba(26, 68, 110, 0.05) 50%, transparent 72%);
}

/* Keyframe animations for gentle, high-end floating */
.orb-float-1 {
    animation: floatOrb1 18s ease-in-out infinite alternate;
}

.orb-float-2 {
    animation: floatOrb2 22s ease-in-out infinite alternate;
}

.orb-float-3 {
    animation: floatOrb3 16s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(35px, -45px, 0) scale(1.1);
    }
    100% {
        transform: translate3d(-30px, 30px, 0) scale(0.95);
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate3d(0, 0, 0) scale(0.95);
    }
    50% {
        transform: translate3d(-45px, 35px, 0) scale(1.08);
    }
    100% {
        transform: translate3d(25px, -30px, 0) scale(1);
    }
}

@keyframes floatOrb3 {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(40px, 40px, 0) scale(1.06);
    }
    100% {
        transform: translate3d(-20px, -35px, 0) scale(0.92);
    }
}

/* 3. Subtle Laser Shimmer Sweep (High-Tech CNC Vibe) */
.laser-shimmer-sweep {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(184, 142, 68, 0.02) 45%, 
        rgba(212, 175, 55, 0.07) 50%, 
        rgba(184, 142, 68, 0.02) 55%, 
        transparent 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 1;
    animation: laserSweep 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    will-change: transform, left;
}

@keyframes laserSweep {
    0% {
        left: -120%;
    }
    30% {
        left: 140%;
    }
    100% {
        left: 140%;
    }
}

/* 4. Architectural CAD Geometric Corner Crosshairs */
.cad-corner-cross {
    position: absolute;
    width: 14px;
    height: 14px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    animation: crosshairPulse 6s ease-in-out infinite alternate;
}

.cad-corner-cross::before,
.cad-corner-cross::after {
    content: '';
    position: absolute;
    background: var(--primary);
}

.cad-corner-cross::before {
    top: 6px;
    left: 0;
    width: 100%;
    height: 1.5px;
}

.cad-corner-cross::after {
    left: 6px;
    top: 0;
    width: 1.5px;
    height: 100%;
}

@keyframes crosshairPulse {
    0% { opacity: 0.2; transform: scale(0.9); }
    100% { opacity: 0.55; transform: scale(1.1); }
}

/* 5. Hero Section Specific Animations */
@keyframes heroGlowDrift1 {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-30px, 40px, 0) scale(1.15); }
    100% { transform: translate3d(20px, -20px, 0) scale(0.95); }
}

@keyframes heroGlowDrift2 {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(40px, -30px, 0) scale(1.1); }
    100% { transform: translate3d(-20px, 20px, 0) scale(0.92); }
}

/* Hero Micro Sparkles */
.hero-sparkle-dot {
    position: absolute;
    border-radius: 50%;
    background: #dfb265;
    box-shadow: 0 0 10px #dfb265, 0 0 20px rgba(223, 178, 101, 0.4);
    pointer-events: none;
    z-index: 3;
    animation: heroSparkleFloat 7s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes heroSparkleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 0.85; transform: translateY(-35px) scale(1.2); }
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .section-ambient-orb {
        filter: blur(55px);
        -webkit-filter: blur(55px);
        opacity: 0.45;
    }
    .laser-shimmer-sweep {
        display: none; /* Disable sweep on mobile to prioritize battery and simplicity */
    }
}