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

:root {
    /* Kept original brand colors as accents */
    --c-navy: #0f295b;
    /* Noticeably dark blue instead of black */
    --c-yellow: #eab308;
    --c-white: #ffffff;
    --c-black: #0b0c10;
    --c-gray-light: #f4f4f5;
    --c-gray-dark: #27272a;

    --font-main: 'Plus Jakarta Sans', sans-serif;
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);

    --rad-sm: 4px;
    --rad-md: 12px;
    --rad-lg: 24px;
    --rad-pill: 40px;
}

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

html,
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    cursor: none;
    /* Hide default cursor */
}

/* ====================================================
   CUSTOM CURSOR
   ==================================================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--c-yellow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(8, 26, 64, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

/* Hover state for interactive elements */
.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    background: rgba(234, 179, 8, 0.1);
    border-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--c-white);
    color: var(--c-black);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ====================================================
   HEADER
   ==================================================== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--c-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Match the subtle shadow */
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 50px;
    background: #fdfdfd;
    border-bottom: 1px solid #eaeaea;
    font-size: 12px;
    gap: 30px;
    color: #555;
}

.top-contacts {
    display: flex;
    gap: 20px;
}

.top-contacts a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.top-contacts a i {
    color: var(--c-yellow);
    /* Yellow icon color from theme */
    font-size: 14px;
}

.top-search i {
    cursor: pointer;
    font-size: 16px;
}

.modern-header {
    padding: 15px 50px;
    transition: padding 0.4s var(--ease-smooth);
}

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

.brand-logo {
    display: flex;
    flex-direction: column;
    color: var(--c-black);
    text-decoration: none;
    line-height: 1.1;
}

.logo-brand {
    color: var(--c-navy);
    font-weight: 900;
    font-size: 24px;
}

.logo-text {
    font-weight: 400;
    font-size: 12px;
    color: #555;

    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-navy);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--c-yellow);
    transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a i {
    font-size: 18px;
    color: rgba(8, 26, 64, 0.5);
    /* semi-transparent navy */
}

.nav-links a:hover {
    color: var(--c-navy);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--c-white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 100;
    border-radius: var(--rad-md);
    top: 100%;
    left: 0;
    padding: 10px 0;
    border: 1px solid #eaeaea;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 500;
    display: block !important;
    border-bottom: 1px solid #f4f4f4;
    transition: all 0.3s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--c-navy);
    color: var(--c-white) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-outline-nav {
    border: 1px solid var(--c-navy);
    color: var(--c-navy);
    padding: 10px 24px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-outline-nav:hover {
    background: var(--c-navy);
    color: var(--c-yellow);
}


.mobile-menu-icon {
    font-size: 26px;
    cursor: pointer;
    color: var(--c-navy);
    margin-left: 20px;
    display: none;
    /* hidden on desktop */
}

/* ====================================================
   HERO (SIMILAR TO AIS)
   ==================================================== */
.split-hero {
    position: relative;
    height: 85vh;
    width: 100%;
    margin-top: 110px;
    /* Offset for the header-wrapper */
    background: #fdf8f8;
    /* Soft light pinkish/white body */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s var(--ease-smooth), visibility 1.2s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-image-half {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content-half {
    position: relative;
    width: 50%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Creates the dark faded edge on the right */
    background: linear-gradient(to right, rgba(11, 12, 16, 0.95) 40%, rgba(11, 12, 16, 0.6) 75%, transparent 100%);
    z-index: -1;
}

.hero-text-box {
    padding-left: 10%;
    max-width: 600px;
}

.ais-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.ais-sub {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-yellow);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-left: 50px;
}

.hero-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-features span i {
    color: var(--c-yellow);
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    /* slight navy highlight */
    border-radius: 50%;
    padding: 2px;
}

.btn-read-more {
    display: inline-block;
    background: var(--c-yellow);
    border: 1px solid var(--c-yellow);
    color: var(--c-navy);
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-read-more:hover {
    background: var(--c-white);
    color: var(--c-navy);
    border-color: var(--c-white);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 5vw;
    /* align with 10% padding of 50% container */
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot.active {
    background: var(--c-yellow);
}

/* ====================================================
   INFINITE MARQUEE
   ==================================================== */
.marquee-section {
    background: var(--c-navy);
    color: var(--c-white);
    padding: 25px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    padding-right: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.marquee-content span i {
    color: var(--c-yellow);
    font-size: 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

/* ====================================================
   ABOUT & STATS
   ==================================================== */
.about-section {
    padding: 80px 40px;
    /* Reduced from 100px */
    background: var(--c-white);
}

.about-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /* Reduced from 70px */
    align-items: center;
}

.about-text h2 {
    font-size: clamp(30px, 3.5vw, 45px);
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--c-navy);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    color: var(--c-gray-dark);
    line-height: 1.6;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* important for mobile responsive */
}

.stat-item {
    background: rgba(15, 41, 91, 0.03);
    border: 1px solid rgba(15, 41, 91, 0.08);
    /* light navy border */
    padding: 25px 30px;
    border-radius: var(--rad-md);
    flex: 1;
    min-width: 200px;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(15, 41, 91, 0.06);
    background: var(--c-white);
}

.stat-icon {
    font-size: 32px;
    color: var(--c-navy);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--c-yellow);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-gray-dark);
}

.about-image {
    position: relative;
    border-radius: var(--rad-md);
    /* slightly sharper corners */
    overflow: hidden;
    aspect-ratio: 4/3;
    /* Changed from 4/5 tall to landscape for smaller footprint */
    box-shadow: -20px -20px 0px rgba(15, 41, 91, 0.04);
    /* Subtle architectural offset shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================================================
   SPACES WE TRANSFORM
   ==================================================== */
.spaces-section {
    padding: 80px 40px 60px;
    background: var(--c-navy);
}

.spaces-section .solid-text {
    color: var(--c-white);
}



.spaces-grid-track {
    width: 100%;
}

.spaces-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 cards on desktop */
    gap: 20px;
}

.space-card {
    position: relative;
    border-radius: var(--rad-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
}

.m-dup {
    display: none;
}

.space-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.space-card:hover img {
    transform: scale(1.08);
}

.space-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(8, 26, 64, 0.9), transparent);
    color: var(--c-white);
}

.space-overlay h4 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
}

.space-overlay p {
    font-size: 14px;
    color: var(--c-yellow);
    font-weight: 500;
}

/* ====================================================
   PRODUCTS SHOWCASE
   ==================================================== */
.products-section {
    padding: 80px 40px 100px;
    background: var(--c-gray-light);
}


.section-heading {
    text-align: center;
    margin-bottom: 40px;
    /* Reduced gap between headings and cards */
}

.outline-text {
    font-size: clamp(50px, 9vw, 110px);
    font-weight: 900;
    color: var(--c-yellow);
    -webkit-text-stroke: 0;
    line-height: 0.85;
    z-index: 1;
    letter-spacing: 2px;
}

.solid-text {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--c-navy);
    letter-spacing: -0.5px;
    margin-top: 5px;
    /* Prevent text from merging upwards */
    position: relative;
    z-index: 2;
}

.product-panel {
    max-width: 1300px;
    margin: 0 auto 90px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 65px;
    align-items: center;
}

.product-panel.reverse {
    grid-template-columns: 1fr 1.2fr;
    text-align: right;
}

.product-panel.reverse .p-image {
    order: 2;
}

.product-panel.reverse .p-content {
    order: 1;
}

.product-panel.reverse .p-features {
    justify-content: flex-end;
}

.product-panel.reverse .p-features li {
    flex-direction: row-reverse;
}

.p-image {
    border-radius: var(--rad-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    aspect-ratio: 4/3;
    /* Forces landscape instead of massive portrait height */
}

.p-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.product-panel:hover .p-image img {
    transform: scale(1.05);
}

.p-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-yellow);
    margin-bottom: 20px;
}

.p-content h2 {
    font-size: 36px;
    color: var(--c-navy);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.p-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.p-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.p-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.p-features i {
    color: var(--c-yellow);
    font-size: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-navy);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-yellow);
    transition: width 0.3s var(--ease-smooth);
}

.btn-secondary:hover::after {
    width: 100%;
}

/* ====================================================
   ADVANTAGES GRID
   ==================================================== */
.advantages-section {
    padding: 100px 40px;
    background: var(--c-navy);
    color: var(--c-white);
}

.adv-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.adv-intro h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
}

.adv-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    max-width: 600px;
}

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

.adv-card {
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--rad-md);
    transition: background 0.4s, transform 0.3s var(--ease-smooth);
}

.adv-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.adv-icon {
    font-size: 34px;
    color: var(--c-yellow);
    margin-bottom: 25px;
}

.adv-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.adv-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ====================================================
   PROCESS SECTION
   ==================================================== */
.process-section {
    padding: 100px 40px;
    background: var(--c-navy);
    border-top: none;
}

.process-container {
    max-width: 1300px;
    margin: 0 auto;
}

.process-container h2 {
    font-size: clamp(30px, 4vw, 45px);
    margin-bottom: 80px;
    color: var(--c-white);
    text-align: center;
    letter-spacing: -1px;
    font-weight: 800;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    background: var(--c-navy);
    padding: 0 15px;
    flex: 1;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--c-yellow);
    color: var(--c-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 5px solid var(--c-navy);
}

.process-step h4 {
    font-size: 20px;
    color: var(--c-white);
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ====================================================
   REVIEWS & TESTIMONIALS
   ==================================================== */
.reviews-section {
    padding: 100px 0 100px;
    background: var(--c-white);
}

.reviews-section .section-heading {
    padding: 0 40px;
}

.reviews-track-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: marquee-reviews 40s linear infinite;
    padding-left: 20px;
}

@media (hover: hover) {
    .reviews-track:hover {
        animation-play-state: paused;
    }
}

.review-card {
    width: 320px;
    background: var(--c-gray-light);
    border-radius: var(--rad-md);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.review-content {
    padding: 20px 25px;
    background: var(--c-white);
}

.review-content h4 {
    color: var(--c-navy);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.review-content .r-text {
    font-size: 14px;
    color: var(--c-gray-dark);
    font-style: italic;
    margin-top: 12px;
    line-height: 1.5;
}

.review-content span {
    display: flex;
    gap: 2px;
}

.review-content span i {
    color: var(--c-yellow);
    font-size: 14px;
}

.review-content .r-tag {
    font-size: 12px;
    color: var(--c-gray-dark);
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes marquee-reviews {
    0% {
        transform: translateX(0);
    }

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

    /* 20px gap / 2 */
}

/* ====================================================
   FOOTER
   ==================================================== */
.modern-footer {
    background: var(--c-navy);
    color: var(--c-white);
    padding: 80px 40px 20px;
    overflow: hidden;
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* ====================================================
   CONTACT SECTION
   ==================================================== */
.contact-section {
    padding: 120px 40px;
    background: var(--c-navy);
    color: var(--c-white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-copy h2 {
    font-size: clamp(36px, 4vw, 55px);
    margin-bottom: 20px;
    color: var(--c-yellow);
    letter-spacing: -1px;
}

.contact-copy p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 500px;
}

.contact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-features span {
    font-size: 13px;
    color: var(--c-white);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-features i {
    color: var(--c-yellow);
}

.contact-form-wrapper {
    background: var(--c-white);
    padding: 40px;
    border-radius: var(--rad-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.c-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-form .form-row {
    display: flex;
    gap: 20px;
}

.c-form input,
.c-form select,
.c-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--rad-sm);
    color: var(--c-navy);
    font-size: 15px;
    font-family: var(--font-body);
    transition: 0.3s;
    outline: none;
    appearance: none;
}

.c-form textarea {
    resize: vertical;
}

.c-form input:focus,
.c-form select:focus,
.c-form textarea:focus {
    border-color: var(--c-yellow);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.1);
}

.custom-select {
    position: relative;
}

.custom-select i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-navy);
    pointer-events: none;
}

.c-form .btn-yellow {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 15px;
    border-radius: var(--rad-sm);
    text-transform: uppercase;
    font-weight: 700;
}

.f-info h4,
.f-address h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.f-info p,
.f-address p {
    font-size: 20px;
    max-width: 350px;
    margin-bottom: 30px;
}

.f-contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.f-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 600;
    color: var(--c-yellow);
    transition: 0.3s;
}

.f-link:hover {
    color: var(--c-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.giant-brand {
    font-size: clamp(60px, 14vw, 220px);
    line-height: 0.8;
    font-weight: 800;
    letter-spacing: -3px;
    color: rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
}

.legal {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ====================================================
   SUBPAGE PRODUCT SHOWCASES (uPVC & Aluminium)
   ==================================================== */
.product-showcase {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    /* text left, image right */
    gap: 65px;
    align-items: center;
    margin-bottom: 90px;
}

.showcase-row.reverse {
    grid-template-columns: 1.15fr 1fr;
    /* image left, text right */
}

.showcase-row.reverse .showcase-text {
    order: 2;
}

.showcase-row.reverse .showcase-img {
    order: 1;
}

.showcase-img {
    border-radius: var(--rad-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    /* Removed aspect-ratio constraint so native images never get cropped */
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.showcase-row:hover .showcase-img img {
    transform: scale(1.05);
}

.product-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-yellow);
    margin-bottom: 20px;
    display: block;
}

.showcase-text h2 {
    font-size: 36px;
    color: var(--c-navy);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.showcase-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--c-yellow);
    color: var(--c-navy);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid var(--c-yellow);
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-yellow:hover {
    background: transparent;
}


/* ====================================================
   NEW ANIMATION CLASSES (Replaces old logic)
   ==================================================== */
.slide-up-trigger {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-in-trigger {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.active-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ====================================================
   RESPONSIVE DESIGN
   ==================================================== */
@media(max-width: 1024px) {

    /* Subpage Mobile Fixes */
    .product-showcase {
        padding: 0 20px 50px;
    }

    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .showcase-row .showcase-text,
    .showcase-row.reverse .showcase-text {
        order: 2;
    }

    .showcase-row .showcase-img,
    .showcase-row.reverse .showcase-img {
        order: 1;
        /* Removed 16/9 mobile crop */
    }

    .showcase-text h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .product-number {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .showcase-text p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .modern-header {
        padding: 25px;
        position: relative;
    }

    .mobile-menu-icon {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--c-white);
        padding: 0 25px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        gap: 20px;

        /* Smooth Animated Expand */
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: all 0.4s var(--ease-smooth);
        transform: translateY(-10px);
    }

    .nav-links.mobile-active {
        max-height: 500px;
        /* arbitrary height to fit items */
        opacity: 1;
        pointer-events: auto;
        padding-top: 20px;
        padding-bottom: 30px;
        overflow: visible;
        transform: translateY(0);
    }

    .nav-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .dropdown-content {
        position: relative;
        min-width: 100%;
        box-shadow: none;
        padding-left: 15px;
        border: none;
        border-left: 2px solid rgba(8, 26, 64, 0.1);
        border-radius: 0;
        margin-top: 10px;
        padding-bottom: 0;
    }

    /* Mobile Hero Styling */
    .split-hero {
        height: calc(100vh - 80px);
        min-height: auto;
    }

    .hero-image-half {
        width: 100%;
        height: 100%;
    }

    .hero-content-half {
        position: absolute;
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
        left: 0;
        padding-top: 150px;
        padding-bottom: 40px;
        background: linear-gradient(to top, rgba(11, 12, 16, 0.95) 40%, rgba(11, 12, 16, 0.6) 75%, transparent 100%);
        z-index: 2;
    }

    .hero-content-half::before {
        display: none;
    }

    .hero-text-box {
        padding: 0 20px;
        width: 100%;
    }

    .ais-title {
        color: var(--c-white);
        font-size: 26px;
        margin-bottom: 8px;
    }

    .ais-sub {
        color: rgba(255, 255, 255, 0.85);
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-features {
        margin-bottom: 15px;
        gap: 6px;
    }

    .hero-features span {
        color: rgba(255, 255, 255, 0.95);
        font-size: 11px;
    }

    .hero-features span i {
        color: var(--c-yellow);
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-tag {
        color: var(--c-yellow);
        font-size: 10px;
        margin-bottom: 8px;
    }

    .hero-tag::before {
        background: rgba(255, 255, 255, 0.3);
    }

    .btn-read-more {
        background: var(--c-yellow);
        color: var(--c-navy);
        border: 1px solid var(--c-yellow);
        padding: 10px 22px;
        font-size: 12px;
    }

    .slider-controls {
        left: 20px;
        bottom: 12px;
    }

    .about-section {
        padding: 50px 25px;
        /* Tighter padding for mobile */
    }

    .about-wrapper,
    .product-panel,
    .product-panel.reverse {
        grid-template-columns: 1fr;
        gap: 25px;
        /* Tighter gap on mobile */
    }

    .products-section {
        padding: 40px 20px;
        /* Compress overall section */
    }

    .p-image {
        aspect-ratio: 16/9;
        /* Widescreen cinematic image on mobile to save height */
    }

    .p-num {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .p-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .p-content p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .p-features {
        margin-bottom: 25px;
        gap: 10px;
    }

    .p-features li {
        font-size: 13px;
    }

    .product-panel.reverse .p-image {
        order: 1;
    }

    .product-panel.reverse .p-content {
        order: 2;
        text-align: left;
    }

    .product-panel.reverse .p-features {
        justify-content: flex-start;
    }

    .product-panel.reverse .p-features li {
        flex-direction: row;
    }

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

    /* MARQUEE MOBILE */
    .m-dup {
        display: block;
    }

    .spaces-section {
        padding: 50px 20px 40px;
    }

    .spaces-grid-track {
        overflow: hidden;
        width: calc(100vw);
        margin-left: -25px;
        /* offset typical mobile padding */
        padding-bottom: 10px;
    }

    .spaces-grid {
        display: flex;
        width: max-content;
        gap: 15px;
        animation: spaces-marquee 25s linear infinite;
        padding-left: 15px;
    }

    @media (hover: hover) {
        .spaces-grid:hover {
            animation-play-state: paused;
        }
    }

    .space-card {
        width: 250px;
        flex-shrink: 0;
    }

    .process-section {
        padding: 50px 20px;
        overflow: hidden;
    }

    .process-timeline {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        gap: 0;
    }

    .process-timeline::-webkit-scrollbar {
        height: 4px;
    }

    .process-timeline::-webkit-scrollbar-thumb {
        background: var(--c-yellow);
        border-radius: 4px;
    }

    .process-timeline::before {
        top: 30px;
        left: 0;
        width: 1000px;
        /* guarantees line goes fully under all horizontally scrolling blocks */
    }

    .process-step {
        min-width: 240px;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 0 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .c-form .form-row {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
    }

    .custom-cursor,
    .cursor-follower {
        display: none !important;
    }
}

@media(max-width: 600px) {
    /* spaces-grid marquee inherits properly from max-width: 1024px */

    .top-bar {
        justify-content: center;
        padding: 6px 4px;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .top-contacts {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .top-contacts a {
        font-size: 9px;
        white-space: nowrap;
    }

    .top-contacts a i {
        font-size: 11px;
    }

    .btn-outline-nav {
        padding: 8px 14px;
        font-size: 12px;
    }

    .mobile-menu-icon {
        font-size: 22px;
        margin-left: 12px;
    }
}

@keyframes spaces-marquee {
    0% {
        transform: translateX(0);
    }

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

/* ====================================================
   WHATSAPP FLOATING BUTTON
   ==================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    color: #FFF;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 30px;
    }
}