/* ============================================
   HOME PAGE - Specific Styles
   ============================================ */

/* ---- Hero Section ---- */
.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--royal-blue-dark);
}

.hero-bg-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -8%;
    background:
        radial-gradient(ellipse 80% 60% at 80% 40%, rgba(26, 50, 99, 0.85) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 60%, rgba(74, 112, 152, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #0F1F3A 0%, #1A3263 40%, #2548A0 70%, #0F1F3A 100%);
    will-change: transform;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 80px 80px;
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(245, 166, 35, 0.07) 0%, transparent 55%);
}

.hero-light-beam {
    position: absolute;
    top: -20%;
    right: 5%;
    width: 2px;
    height: 140%;
    background: linear-gradient(to bottom, transparent, rgba(245, 166, 35, 0.25), transparent);
    transform: rotate(15deg);
    animation: beamPulse 4s ease-in-out infinite;
}

@keyframes beamPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #F5A623;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 12s linear infinite;
    will-change: transform;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.hero-particles span:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.hero-particles span:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.hero-particles span:nth-child(5) {
    left: 85%;
    animation-delay: 8s;
}

.hero-particles span:nth-child(6) {
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatParticle {
    from {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }

    30% {
        opacity: .4;
    }

    to {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

/* ---- Hero Content Layout ---- */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

@media(max-width:900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.9s ease forwards;
}

.reveal:nth-child(1) {
    animation-delay: .2s;
}

.reveal:nth-child(2) {
    animation-delay: .4s;
}

.reveal:nth-child(3) {
    animation-delay: .6s;
}

.reveal:nth-child(4) {
    animation-delay: .8s;
}

.reveal:nth-child(5) {
    animation-delay: 1s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Hero Text ---- */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan-accent);
}

.eyebrow-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--cyan-accent);
    border-radius: 2px;
}

.hero-headline {
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    color: white;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.headline-accent {
    background: linear-gradient(90deg, #F5A623, #FFD27A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 28px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: white;
    line-height: 1;
}

.trust-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* ---- Hero Glass Panel ---- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glass-panel {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 18px;
    will-change: transform;
    transition: transform 0.2s ease;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform-style: preserve-3d;
}

.glass-panel-inner {
    padding: 40px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.glass-reflection {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-20deg);
    animation: reflectionSweep 5s ease infinite;
}

@keyframes reflectionSweep {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 200%;
    }
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #F5A623;
    margin-bottom: 24px;
}

.glass-content h3 {
    color: white;
    font-size: 26px;
    margin-bottom: 10px;
}

.glass-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.glass-specs {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-row span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.spec-row strong {
    font-size: 13px;
    color: white;
    font-weight: 600;
}

.glass-panel-cta {
    display: inline-block;
    color: #F5A623;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.glass-panel-cta:hover {
    letter-spacing: 1.5px;
}

.glass-glow {
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.1), inset 0 0 40px rgba(245, 166, 35, 0.04);
    pointer-events: none;
}

/* Floating geometry */
.hero-geo {
    position: absolute;
    border-radius: 50%;
    animation: geoFloat 6s ease-in-out infinite;
}

.hero-geo-1 {
    width: 80px;
    height: 80px;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.2);
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.hero-geo-2 {
    width: 120px;
    height: 120px;
    background: rgba(37, 72, 160, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    bottom: 40px;
    left: -40px;
    animation-delay: 2s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-geo-3 {
    width: 50px;
    height: 50px;
    background: rgba(245, 166, 35, 0.15);
    bottom: -10px;
    right: 60px;
    animation-delay: 4s;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}

@keyframes geoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) rotate(5deg);
    }

    66% {
        transform: translateY(6px) rotate(-3deg);
    }
}

/* ---- Hero Scroll Indicator ---- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: heroScrollFade 2s ease infinite;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(245, 166, 35, 0.7);
    border-radius: 2px;
    animation: scrollDot 2s ease infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

@keyframes heroScrollFade {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

/* ---- Product Cards ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.35s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--card-hover-shadow);
}

.product-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.p-toughened {
    background: linear-gradient(135deg, #0F1F3A, #1A3263);
}

.p-partition {
    background: linear-gradient(135deg, #1A3263, #253d7a);
}

.p-laminated {
    background: linear-gradient(135deg, #0F1F3A, #1a2e60);
}

.p-soundproof {
    background: linear-gradient(135deg, #1A3263, #0c1a38);
}

.p-designer {
    background: linear-gradient(135deg, #1e3a70, #1A3263);
}

.p-spider {
    background: linear-gradient(135deg, #0F1F3A, #1a326a);
}

.product-img-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.85;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.75) 0%, rgba(26, 50, 99, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay span {
    color: white;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
    border-radius: 100px;
}

.product-card-body {
    padding: 24px;
}

.product-card-body h3 {
    font-size: 18px;
    color: var(--royal-blue);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: 14px;
    color: var(--steel-grey);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-link {
    color: #F5A623;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.product-link:hover {
    letter-spacing: 2px;
}

/* ---- Manufacturing Process ---- */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.process-step-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    background: var(--royal-blue);
    padding: 0 12px;
}

.process-step-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 28px 20px;
    width: 100%;
    transition: var(--transition);
}

.process-step.active .process-step-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 166, 35, 0.3);
    height: 100%;
}

.process-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 200, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-icon svg {
    width: 28px;
    height: 28px;
}

.process-icon-heat {
    background: rgba(255, 107, 53, 0.12) !important;
    animation: heatGlow 2s ease-in-out infinite;
}

@keyframes heatGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.15);
    }
}

.process-step-content h3 {
    font-size: 15px;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 16px;
}

.process-indicator {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.pi-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.pi-dot.active {
    background: #F5A623;
}

/* ---- Portfolio Grid (Masonry-style) ---- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: auto;
    gap: 20px;
}

.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-img {
    position: relative;
    height: 100%;
    min-height: 240px;
    overflow: hidden;
}

[style*="span 2"] .portfolio-img {
    min-height: 500px;
}

.portfolio-img-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
}

/* Portfolio image backgrounds (gradient stand-ins) */
.p-img-1 {
    background: linear-gradient(135deg, #1A3263 0%, #2a5f8a 50%, #F5A623 100%);
}

.p-img-2 {
    background: linear-gradient(135deg, #0F1F3A 0%, #1A3263 100%);
}

.p-img-3 {
    background: linear-gradient(135deg, #112040 0%, #1A3263 100%);
}

.p-img-4 {
    background: linear-gradient(135deg, #0a1428 0%, #182c55 100%);
}

.p-img-5 {
    background: linear-gradient(135deg, #0c1730 0%, #1A3263 100%);
}

/* Overlay on each portfolio card */
.portfolio-img-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 20, 44, 0.85) 0%, transparent 60%);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img-inner::before {
    background: linear-gradient(to top, rgba(6, 20, 44, 0.9) 0%, rgba(245, 166, 35, 0.1) 100%);
}

.portfolio-label {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
}

.portfolio-cat {
    display: inline-block;
    background: #F5A623;
    color: #1A3263;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.portfolio-label h4 {
    color: white;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

/* ---- Company Stats ---- */
.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.stat-card {
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.3);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- Why Choose Us ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F5A623, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: rgba(245, 166, 35, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.08);
}

.why-icon svg {
    width: 32px;
    height: 32px;
}

.why-card h4 {
    font-size: 17px;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--steel-grey);
    line-height: 1.65;
}

/* ---- Reviews Section ---- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.review-stars {
    color: #F5A623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    color: var(--steel-grey);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ra-info h4 {
    font-size: 15px;
    color: var(--royal-blue);
    margin-bottom: 4px;
    font-weight: 700;
}

.ra-info span {
    font-size: 12px;
    color: var(--steel-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Contact Section ---- */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(245, 166, 35, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon svg {
    width: 20px;
    height: 20px;
}

.ci-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ci-value {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.ci-value:hover {
    color: #F5A623;
}

/* ---- Contact Form ---- */
.contact-form-wrap {
    padding: 40px;
}

.contact-form-wrap h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 13px 16px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-select option {
    background: var(--royal-blue);
    color: white;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--cyan-accent);
    background: rgba(0, 200, 224, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 200, 224, 0.12);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 130px;
        text-align: center;
    }

    .hero-subtext {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust-bar {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .process-step-content {
        padding: 24px 15px;
    }

    .process-step-content h3 {
        font-size: 14px;
    }

    .process-step-content p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .process-icon {
        width: 44px;
        height: 44px;
    }

    .process-icon svg {
        width: 24px;
        height: 24px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .company-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-headline {
        font-size: clamp(32px, 8vw, 50px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    [style*="span 2"] {
        grid-row: span 1 !important;
    }

    .contact-form-wrap {
        padding: 28px 24px;
    }
}

/* ============================================
   GLASS BUILDING SCROLL ANIMATION
   ============================================ */

.glass-building-section {
    height: 180vh;
    /* Reduced height for auto-playing transition */
    position: relative;
}

.gbs-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0F1F3A 0%, #1A3263 50%, #0c1830 100%);
}

/* Sky / ambient glow */
.gbs-sky {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gbs-sky::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(245, 166, 35, 0.06) 0%, transparent 100%);
}

.gbs-sky-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 166, 35, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ---- Section Label ---- */
.gbs-header {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 20;
    pointer-events: none;
}

.gbs-header .section-label {
    color: #F5A623;
}

.gbs-header h2 {
    font-size: clamp(22px, 3vw, 36px);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.gbs-header h2 span {
    color: #F5A623;
}

/* ---- The Building (SVG-based) ---- */
.gbs-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- The Building (REMOVED) ---- */

/* Glow removed */

/* Ground line */
.gbs-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
}

/* Scroll hint text */
.gbs-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 20;
    animation: heroScrollFade 2s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Tracking removed */

/* Label removed */

/* ---- 2 Equal Halves Split Layout ---- */
.gbs-split-container {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 6;
    pointer-events: none;
    overflow: hidden;
}

.gbs-half {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.0s ease;
    opacity: 0;
    overflow: hidden;
}

.gbs-half-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
    filter: brightness(0.4) contrast(1.1);
}

.gbs-half:hover .gbs-half-bg {
    transform: scale(1.08);
}

.gbs-half-left {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
}

.gbs-half-right {
    transform: translateX(100%);
}

.gbs-split-container.active .gbs-half {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.gbs-half-content {
    text-align: center;
    padding: 40px;
    max-width: 440px;
    position: relative;
    z-index: 2;
}

.gbs-half-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan-accent);
    margin-bottom: 16px;
}

.gbs-half h3 {
    font-size: clamp(24px, 4vw, 36px);
    color: white;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.gbs-half p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

/* Card slot positions removed in favor of split layout */

/* Final visible state (JS sets transform and opacity) */

/* Responsive */
@media (max-width: 900px) {
    .gbs-card {
        width: 175px;
        padding: 18px 14px;
    }

    .gbs-card[data-slot="tl"] {
        top: calc(50% - 160px);
        left: calc(50% - 220px);
    }

    .gbs-card[data-slot="tr"] {
        top: calc(50% - 160px);
        left: calc(50% + 45px);
    }

    .gbs-card[data-slot="bl"] {
        top: calc(50% + 10px);
        left: calc(50% - 220px);
    }

    .gbs-card[data-slot="br"] {
        top: calc(50% + 10px);
        left: calc(50% + 45px);
    }

    .gbs-building-img {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .gbs-split-container {
        flex-direction: column;
    }

    .gbs-half-left {
        transform: translateY(-100%);
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .gbs-half-right {
        transform: translateY(100%);
    }

    .gbs-split-container.active .gbs-half {
        transform: translateY(0);
    }

    .gbs-half-content {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .glass-building-section {
        height: 280vh;
    }

    .gbs-card {
        width: 140px;
        padding: 14px 10px;
    }

    .gbs-card[data-slot="left"] {
        left: 50%;
        top: calc(50% - 140px);
        transform: translateX(-50%);
    }

    .gbs-card[data-slot="right"] {
        left: 50%;
        top: calc(50% + 100px);
        transform: translateX(-50%);
    }

    .gbs-card h4 {
        font-size: 12px;
    }

    .gbs-card p {
        display: none;
    }

    .gbs-building-img {
        width: 220px;
    }

    .gbs-progress-track {
        display: none;
    }
}

/* =============================================
   CLIENTS SECTION — Infinite Marquee
   ============================================= */
.clients-section {
    padding-bottom: 80px;
    overflow: hidden;
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 48px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: clientsScroll 40s linear infinite;
    will-change: transform;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes clientsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo-card {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.client-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(0, 200, 224, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.client-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(26, 50, 99, 0.12), 0 0 0 1px rgba(245, 166, 35, 0.15);
    border-color: rgba(245, 166, 35, 0.2);
}

.client-logo-card:hover::before {
    opacity: 1;
}

.client-logo-card img {
    width: 100px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: grayscale(0.3);
    transition: filter 0.35s ease;
}

.client-logo-card:hover img {
    filter: grayscale(0);
}

.client-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--steel-grey);
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    opacity: 0.7;
    transition: opacity 0.35s ease, color 0.35s ease;
}

.client-logo-card:hover .client-name {
    opacity: 1;
    color: var(--royal-blue);
}

/* Responsive adjustments for clients */
@media (max-width: 768px) {
    .client-logo-card {
        width: 140px;
        height: 140px;
        padding: 16px;
        gap: 8px;
    }

    .client-logo-card img {
        width: 80px;
        height: 60px;
    }

    .client-name {
        font-size: 10px;
    }

    .clients-track {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .client-logo-card {
        width: 120px;
        height: 120px;
        padding: 12px;
        border-radius: 12px;
    }

    .client-logo-card img {
        width: 64px;
        height: 48px;
    }

    .client-name {
        font-size: 9px;
    }

    .clients-track {
        gap: 16px;
    }
}