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

:root {
    --primary-color: #d4af37;
    /* Gold */
    --primary-dark: #b5952f;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-light: #1e1e1e;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: #121212;
    overflow-x: hidden;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Header */
.site-header {
    background-color: #ffffff;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9990; /* Keep it below mobile menu */
    padding: 0 4%;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* 1. Left Nav Links */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
}

/* 2. Center Logo */
.logo {
    text-decoration: none;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img {
    height: 68px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    white-space: nowrap;
    font-style: normal;
    line-height: 1;
    text-transform: uppercase;
}

.logo-highlight {
    font-style: normal;
    background: linear-gradient(135deg, #b5952f, #f2d06b, #b5952f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 3px;
}

/* 3. Right Action Button */
.header-actions {
    flex: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-contact {
    background-color: #4a4441;
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #111;
}

/* Mobile Menu */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .header-inner {
        height: 80px;
    }

    .logo {
        flex: none;
        justify-content: flex-start;
    }

    .logo-img {
        height: 65px;
    }

    .header-actions {
        flex: none;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-block;
    }

    .modern-menu-btn {
        background-color: #f5efe6;
        color: #333;
        border: none;
        padding: 8px 24px;
        border-radius: 30px;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
    }
}

/* Modern Mobile Menu Overlay */
.modern-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box;
    overscroll-behavior: contain;
    touch-action: none;
    background-color: #423023;
    /* Dark border color */
    z-index: 9999;
    padding: 10px;
    /* Creates the dark border around the inner container */
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    pointer-events: none;
}

.modern-mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mmm-inner {
    background-color: #fcf7ef;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mmm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mmm-close-btn {
    background: transparent;
    border: none;
    font-size: 44px;
    line-height: 1;
    color: #423023;
    font-weight: 300;
    cursor: pointer;
    padding: 0;
}

.mmm-nav {
    flex-grow: 1;
}

.mmm-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mmm-nav a {
    text-decoration: none;
    color: #423023;
    font-size: 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    display: inline-block;
    margin-top: 5px;
}

.mmm-nav sup {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-left: 5px;
    color: #8c7667;
}

.mmm-footer {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #5c4738;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-darker);
}

/* Main */
.site-main {
    flex: 1;
}

/* Split Slider */
.split-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #121212;
}

.slider-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-left {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay on left image */
.slide-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.slide-right {
    width: 50%;
    height: 100%;
    position: relative;
}

/* Slide Content */
.slide-content-left {
    position: absolute;
    top: 50%;
    left: 5%;
    width: calc(50% - 220px);
    transform: translateY(-50%);
    text-align: left;
    z-index: 30;
}

.slide-content-left h2 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.slide-content-left p {
    font-size: 14px;
    letter-spacing: 4px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.arch-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 520px;
    z-index: 20;
}

.arch-border {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    pointer-events: none;
}

.arch-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.slide-content-right {
    position: absolute;
    bottom: 20%;
    left: 75%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 350px;
    text-align: center;
    z-index: 10;
}

.slide-content-right p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-shop {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background-color: #fff;
    color: #000;
}

.slider-nav {
    position: absolute;
    bottom: 5%;
    left: 75%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 30;
}

.slider-nav button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.slider-nav button:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .split-slider {
        min-height: 800px;
    }

    .slide {
        flex-direction: column;
    }

    .slide-left,
    .slide-right {
        width: 100%;
        height: 50%;
    }

    .slide-content-left {
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }

    .slide-content-left h2 {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .slide-content-left p {
        font-size: 12px;
        letter-spacing: 2px;
        margin-top: 10px;
    }

    .arch-container {
        width: 220px;
        height: 320px;
        top: 50%;
    }

    .slide-content-right {
        bottom: 18%;
        left: 50%;
        width: 90%;
    }

    .slide-content-right p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-shop {
        padding: 10px 20px;
        font-size: 12px;
    }

    .slider-nav {
        left: 50%;
        bottom: 5%;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .split-slider {
        min-height: 700px;
    }

    .slide-content-left {
        top: 18%;
    }

    .slide-content-left h2 {
        font-size: 32px;
    }

    .arch-container {
        width: 180px;
        height: 260px;
        top: 50%;
    }

    .slide-content-right {
        bottom: 12%;
    }

    .slide-content-right p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .slider-nav {
        bottom: 3%;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Modern Page Banner */
.modern-page-banner {
    padding: 20px 4% 60px;
    background-color: transparent;
}

.mpb-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mpb-image {
    width: 100%;
    height: 55vh;
    min-height: 400px;
    border-radius: 40px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mpb-title-box {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background-color: #222;
    padding: 40px 60px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 55px;
    border: 15px solid #121212;
}

.mpb-title-box h1 {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.mpb-title-box p {
    font-size: 15px;
    color: #a0a0a0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .mpb-image {
        height: 40vh;
        border-radius: 20px;
    }

    .mpb-title-box {
        padding: 20px 30px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 30px;
        border-width: 10px;
        bottom: -10px;
        left: -10px;
    }

    .mpb-title-box h1 {
        font-size: 36px;
    }

    .mpb-title-box p {
        font-size: 13px;
    }
}

/* Footer */
/* Footer Refined - Harper Architects Style */
.site-footer {
    background-color: #1a1a1a;
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), url('../images/premium_footer_bg.png');
    background-size: cover;
    background-position: center;
    color: #d8bfa7;
    padding: 60px 0 20px;
    font-family: 'Inter', sans-serif;
    border-top-left-radius: 50% 80px;
    border-top-right-radius: 50% 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-top {
    text-align: center;
    padding-bottom: 20px;
}

.footer-top h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #d8bfa7;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.footer-divider {
    height: 1px;
    background-color: rgba(216, 191, 167, 0.2);
    width: 100%;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.fm-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fm-link {
    color: #d8bfa7;
    text-decoration: none;
    font-size: 38px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    display: inline-flex;
    align-items: flex-start;
    transition: color 0.3s ease;
}

.fm-link:hover {
    color: #fff;
}

.fm-link sup {
    font-size: 14px;
    margin-left: 8px;
    margin-top: 6px;
    color: rgba(216, 191, 167, 0.7);
    font-family: 'Inter', sans-serif;
}

.footer-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 0 40px;
    font-size: 13px;
    line-height: 1.6;
}

.fi-col:nth-child(1) {
    text-align: left;
}

.fi-col:nth-child(2) {
    text-align: left;
}

.fi-col:nth-child(3) {
    text-align: center;
}

.fi-col:nth-child(4) {
    text-align: right;
}

.fi-col p {
    margin: 0;
    color: #d8bfa7;
}

.fi-col a {
    color: #d8bfa7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fi-col a:hover {
    color: #fff;
}

.footer-credit {
    text-align: center;
    font-size: 12px;
    color: rgba(216, 191, 167, 0.6);
}

.footer-credit p {
    margin: 8px 0;
}

@media (max-width: 992px) {
    .footer-middle {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .fm-link {
        font-size: 32px;
    }

    .footer-info-row {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .fi-col:nth-child(1),
    .fi-col:nth-child(2),
    .fi-col:nth-child(3),
    .fi-col:nth-child(4) {
        text-align: center;
    }
}

/* Generic Layouts */
.about-grid,
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

@media (max-width: 768px) {

    .about-grid,
    .contact-section {
        grid-template-columns: 1fr;
    }
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 18px;
}

.products-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.product-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.product-img {
    height: 250px;
    background-color: #2a2a2a;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.gallery-item {
    height: 300px;
    background-color: #2a2a2a;
    border-radius: 8px;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-radius: 4px;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Video Scroll Section */
.video-scroll-section {
    width: 100%;
    height: 250vh;
    position: relative;
    background-color: var(--bg-dark);
    z-index: 50;
}

.video-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    width: 65%;
    height: 65vh;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    will-change: width, height, border-radius;
    transition: width 0.1s, height 0.1s, border-radius 0.1s;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
}

.video-overlay h2 {
    font-size: 50px;
    letter-spacing: 4px;
    margin-bottom: 10px;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-overlay p {
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .video-container {
        width: 85%;
        height: 50vh;
        border-radius: 30px;
    }

    .video-overlay h2 {
        font-size: 30px;
    }
}

/* Cloud/Megam Effect Wrapper */
.dark-cloud-wrapper {
    position: relative;
    background-color: #0c0c0c;
    background-image: 
        radial-gradient(ellipse at 15% 20%, rgba(196, 225, 86, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(196, 225, 86, 0.03) 0%, transparent 40%);
    overflow: hidden;
}

/* Editorial Section */
.editorial-section {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding: 120px 0;
    color: #fff;
    font-family: var(--font-main);
}

.editorial-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

/* Left Column */
.editorial-left {
    flex: 1;
    position: relative;
    padding-bottom: 80px;
}

.editorial-feature-img {
    width: 90%;
    height: 700px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.editorial-feature-card {
    position: absolute;
    bottom: 0;
    left: 15%;
    background-color: #f5f4f0;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.add-btn {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.add-btn:hover {
    transform: scale(1.1);
}

.editorial-feature-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.editorial-feature-card .price {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.editorial-feature-card .desc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.read-more {
    font-size: 12px;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

/* Right Column */
.editorial-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.editorial-header {
    text-align: center;
    padding: 20px 20px 60px;
}

.editorial-header h2 {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.editorial-header h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.editorial-header p {
    font-size: 13px;
    color: #bbb;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

.editorial-thumbnails {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.thumb-wrapper {
    text-align: center;
}

.thumb-item {
    width: 170px;
    height: 170px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.thumb-item:hover {
    transform: translateY(-5px);
}

.thumb-wrapper span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.editorial-wide-card {
    background-color: #7b6d61;
    border-radius: 30px;
    padding: 30px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 180px;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: auto;
}

.wide-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to right, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

.wide-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.wide-card-content h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
}

.wide-card-content p {
    font-size: 13px;
    opacity: 0.8;
    font-style: italic;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background 0.3s;
}

.arrow-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .editorial-container {
        flex-direction: column;
        gap: 40px;
    }

    .editorial-feature-img {
        width: 100%;
        height: 500px;
    }

    .editorial-feature-card {
        left: 5%;
        width: 90%;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--bg-darker);
}

.banner-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.banner-slide.active .banner-bg {
    transform: scale(1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 800px;
}

.banner-content h2 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease forwards;
}

.banner-content p {
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease forwards;
}

.banner-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease forwards;
}

.banner-slide.active .banner-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.banner-slide.active .banner-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.banner-slide.active .banner-content .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.banner-nav {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 20px;
}

.banner-nav button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-nav button:hover {
    background: #fff;
    color: #000;
}

.banner-dots {
    position: absolute;
    bottom: 5%;
    left: 10%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

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

.banner-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .banner-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .banner-content h2 {
        font-size: 40px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .banner-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .banner-nav {
        display: none;
    }

    .banner-dots {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Modern About/Design Section */
.modern-design-section {
    padding: 100px 5%;
    background-color: transparent;
}

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

/* Top Split */
.md-top-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.md-text-content h2 {
    font-size: 34px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.md-text-content p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

.md-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.md-btn:hover {
    background-color: #d4af37;
    color: #fff;
}

.md-arrow {
    font-size: 16px;
}

/* Image Grid */
.md-image-grid {
    display: flex;
    gap: 20px;
}

.md-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.md-img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.md-img-tall {
    height: 380px;
}

.md-img-short {
    height: 220px;
}

/* Bottom Stats Row */
.md-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.md-stat-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.md-dots {
    display: flex;
    gap: 4px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.md-dots span {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

.md-dots span.active {
    background-color: #fff;
}

.md-stat-card h3 {
    font-size: 56px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-top: 10px;
}

.md-stat-card p {
    font-size: 14px;
    color: #aaa;
    text-align: right;
    margin: 0;
    align-self: flex-end;
}

/* Responsive */
@media (max-width: 992px) {
    .md-top-split {
        grid-template-columns: 1fr;
    }

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

    .md-text-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .md-stats-row {
        grid-template-columns: 1fr;
    }

    .md-text-content h2 {
        font-size: 26px;
    }

    .md-image-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .md-col {
        gap: 15px;
    }

    .md-img-tall {
        height: 240px;
    }

    .md-img-short {
        height: 160px;
    }
}

var-btn:hover {
    color: #000;
    border-color: #f2f43a;
}

/* Immersive Toughened Glass Section */
.immersive-glass-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.immersive-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.immersive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.immersive-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 5%;
}

.immersive-title {
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -3px;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.immersive-subtitle {
    font-size: 20px;
    color: #fff;
    margin-top: 20px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.immersive-badges {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.immersive-badges .badge {
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .immersive-glass-section {
        height: 60vh;
    }

    .immersive-badges {
        bottom: 30px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .immersive-subtitle {
        font-size: 16px;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 100px 5%;
    background-color: transparent;
    text-align: center;
}

.comp-header {
    margin-bottom: 50px;
}

.comp-header h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 300;
}

.comp-header p {
    color: #ddd;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.comp-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    background-color: #ddd;
    /* Prevent text selection while dragging */
    user-select: none;
}

.comp-img-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.comp-foreground {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.comp-img-fg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    /* width will be set by JS */
    object-fit: cover;
    object-position: left center;
}

.comp-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #f2f43a;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.comp-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: #111;
    border: 3px solid #f2f43a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.comp-arrow {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
    z-index: 4;
    pointer-events: none;
}

.comp-arrow.left {
    left: -12px;
    border-width: 5px 6px 5px 0;
    border-color: transparent #fff transparent transparent;
}

.comp-arrow.right {
    right: -12px;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #fff;
}

.comp-label {
    position: absolute;
    bottom: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 4;
    pointer-events: none;
    font-weight: 500;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

@media (max-width: 768px) {
    .comp-slider {
        height: 400px;
    }

    .comp-header h2 {
        font-size: 30px;
    }
}


/* Hero Slider Section */
.hero-slider-section {
    padding: 0;
    background-color: #121212;
    width: 100%;
}

.heroSwiper {
    width: 100%;
    height: 85vh;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.heroSwiper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
    pointer-events: none;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hs-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 4% 5vh 4%;
    z-index: 10;
}

/* LEFT BOX */
.hs-left-box {
    background-color: #222;
    border: 4px solid #f5f4f0;
    border-radius: 30px;
    padding: 30px;
    max-width: 550px;
}

.hs-title-area {
    margin-bottom: 30px;
}

.hs-title-area h1 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.hs-inline-img {
    display: inline-block;
    width: 100px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 10px;
}

.hs-inline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hs-thumbs {
    display: flex;
    gap: 10px;
}

.hs-thumbs img {
    width: 60px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.hs-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hs-btn:hover {
    background-color: #fff;
    color: #000;
}

.hs-btn .arrow {
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.hs-btn:hover .arrow {
    background-color: #000;
    color: #fff;
}

/* RIGHT AREA */
.hs-right-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    max-width: 450px;
}

.hs-stats {
    display: flex;
    gap: 15px;
}

.hs-stat-box {
    background-color: #222;
    border: 4px solid #f5f4f0;
    padding: 15px 20px;
    border-radius: 16px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.hs-desc-box {
    background-color: #222;
    border: 4px solid #f5f4f0;
    padding: 20px 25px;
    border-radius: 20px;
}

.hs-desc-box p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .hs-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hs-right-area {
        align-items: flex-start;
        max-width: 100%;
        width: 100%;
    }

    .hs-left-box {
        padding: 20px;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        padding: 0;
    }

    .heroSwiper {
        height: auto;
        border-radius: 0;
    }

    .heroSwiper .swiper-slide img {
        height: auto;
    }

    .hs-title-area h1 {
        font-size: 28px;
    }

    .hs-inline-img {
        width: 80px;
        height: 30px;
    }
}


/* Scroll Hero Gallery Section */
.scroll-hero-section {
    height: 300vh;
    /* Allow for plenty of scroll to trigger the animation */
    background-color: transparent;
    /* Changed to transparent for dark theme */
    position: relative;
    z-index: 10;
}

.scroll-hero-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sh-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-img {
    position: absolute;
    overflow: hidden;
    will-change: width, height, transform, border-radius;
    /* transition via JS requestAnimationFrame or fast inline styles */
}

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

/* Center Image Initial State */
.sh-img-center {
    width: 96vw;
    height: 92vh;
    border-radius: 24px;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Side Images Initial State */
.sh-img-left,
.sh-img-right {
    width: 25vw;
    height: 50vh;
    border-radius: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.sh-img-left {
    left: 50%;
    /* margin-left acts as translation base */
    margin-left: -12.5vw;
}

.sh-img-right {
    right: 50%;
    margin-right: -12.5vw;
}

/* Hero Content overlay */
.sh-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 120px 5% 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    color: #fff;
    will-change: opacity;
    font-family: 'Inter', sans-serif;
}

.sh-content-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.sh-title {
    font-size: 90px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -3.5px;
    margin: 0;
    max-width: 60%;
}

.sh-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 450px;
}

.sh-desc {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.sh-actions {
    display: flex;
    gap: 15px;
}

.btn-sh-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sh-light:hover {
    background-color: #ddd;
}

.btn-sh-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sh-dark:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 992px) {
    .sh-title {
        font-size: 50px;
    }

    .sh-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .sh-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sh-title {
        font-size: 40px;
    }

    .sh-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-sh-light,
    .btn-sh-dark {
        width: 100%;
    }

    .sh-img-left,
    .sh-img-right {
        height: 40vh;
    }
}

/* Sectors We Serve Section */
.sectors-section {
    padding: 100px 5%;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
}

.sectors-header {
    text-align: center;
    margin-bottom: 60px;
}

.sectors-header h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sectors-header p {
    color: #aaa;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.sector-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    height: 420px;
    cursor: pointer;
}

.sector-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
}

.sc-img-wrapper {
    width: 100%;
    height: 65%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.sc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card:hover .sc-img-wrapper img {
    transform: scale(1.08);
}

.sc-content {
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 35%;
}

.sc-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sc-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
    margin: 0;
}

@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sectors-header h2 {
        font-size: 24px;
    }
}

/* =============================================
   Benefits of Toughened Glass Section (Offset Grid)
   ============================================= */
.benefits-section {
    position: relative;
    padding: 120px 0 200px 0; /* Extra bottom padding for offset */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.6); /* Dark overlay */
    z-index: 1;
}

.benefits-container {
    position: relative;
    z-index: 2;
    max-width: 1300px; /* To make cards large but contained */
    margin: 0 auto;
    padding: 0 5%;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.b-staggered-grid {
    display: flex;
    flex-direction: column;
}

.b-grid-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    width: 55%; /* Two cards take slightly more than half to look substantial */
}

/* Staggering logic */
.b-grid-row.row-left {
    align-self: flex-start;
}

.b-grid-row.row-right {
    align-self: flex-end;
}

.b-card {
    flex: 1; /* Both cards in the row share width equally */
    background-color: #e9e5db;
    padding: 50px 40px;
    aspect-ratio: 1; /* Make perfectly square */
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.b-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: translateY(-10px);
}

.b-card-num {
    font-size: 16px;
    font-weight: 500;
    color: #3e352c;
    font-family: 'Inter', sans-serif;
    margin-bottom: 40px;
    display: block;
}

.b-card-content {
    margin-top: auto; /* Push to bottom */
}

.b-card-title {
    font-family: 'Outfit', serif;
    font-size: 32px;
    color: #3e352c;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.b-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #5a5047;
    margin: 0;
}

@media (max-width: 992px) {
    .b-grid-row {
        width: 100%;
        flex-direction: column;
        gap: 30px;
    }
    .b-card {
        aspect-ratio: auto;
    }
    .benefits-section {
        padding: 80px 0;
    }
}

/* Video Scroll Parallax Section */
.video-scroll-section {
    position: relative;
    height: 250vh;
    background-color: #121212;
}

.vs-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.vs-video-container {
    position: relative;
    width: 65%;
    height: 65vh;
    border-radius: 50px;
    overflow: hidden;
    will-change: width, height, border-radius;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.vs-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    will-change: opacity;
}

.video-overlay h2 {
    font-size: 80px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.1;
    transform: translateY(30px);
    transition: transform 0.5s ease-out;
}

@media (max-width: 768px) {
    .video-overlay h2 {
        font-size: 40px;
    }
}

/* =========================================
   ABOUT PREMIUM BLOCK (VeelMan style)
   ========================================= */

.about-premium-block {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: #000;
    overflow: hidden;
    margin: 50px 0;
}

.apb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.apb-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.apb-overlay-panel {
    position: relative;
    width: 60%;
    background: linear-gradient(to right, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.95) 70%, rgba(15, 15, 15, 0.6) 100%);
    padding: 100px 5%;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

/* Grid Lines Decoration */
.apb-line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.apb-line-h1 {
    top: 25%;
    left: 0;
    width: 100%;
    height: 1px;
}

.apb-line-h2 {
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 1px;
}

.apb-line-v1 {
    top: 0;
    left: 10%;
    width: 1px;
    height: 100%;
}

.apb-line-v2 {
    top: 0;
    left: 40%;
    width: 1px;
    height: 100%;
}

.apb-line-d1 {
    top: 50%;
    left: -20%;
    width: 150%;
    height: 1px;
    transform: rotate(25deg);
    transform-origin: center;
}

.apb-line-d2 {
    top: 50%;
    left: -20%;
    width: 150%;
    height: 1px;
    transform: rotate(-25deg);
    transform-origin: center;
}

.apb-content {
    position: relative;
    z-index: 10;
    padding-left: 5%;
    max-width: 800px;
}

.apb-title {
    font-size: 64px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.apb-text-wrap {
    position: relative;
    max-width: 600px;
}

.apb-text-wrap p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

.apb-diamond {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .apb-overlay-panel {
        width: 70%;
    }
    .apb-title {
        font-size: 54px;
    }
}

@media (max-width: 992px) {
    .apb-overlay-panel {
        width: 85%;
    }
    .apb-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .about-premium-block {
        min-height: 70vh;
    }
    .apb-overlay-panel {
        width: 100%;
        background: linear-gradient(to right, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.85) 100%);
        padding: 60px 5%;
        min-height: auto;
    }
    .apb-content {
        padding-left: 0;
    }
    .apb-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .apb-text-wrap p {
        font-size: 15px;
    }
    .apb-diamond {
        display: none;
    }
    .apb-line {
        display: none; /* Hide decorative lines on mobile for cleaner look */
    }
}

/* =========================================
   PREMIUM FEATURES SECTION
   ========================================= */
.premium-features-section {
    background-color: #121212;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.premium-features-section {
    background-color: #f7f4ee;
}

.pf-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.pf-image-col {
    width: 45%;
    position: relative;
    min-height: 100vh;
    overflow: hidden; /* Added for parallax wrapper */
}

.pf-image-inner {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%; /* For parallax */
    background-size: cover;
    background-position: center;
}

.pf-image-fade {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, #f7f4ee 0%, rgba(247, 244, 238, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

.pf-content-col {
    width: 55%;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.pf-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pf-item {
    padding: 40px 0;
    border-bottom: 1px solid rgba(62, 53, 44, 0.1);
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
}

.pf-item::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #3e352c; /* Highlight color */
    transition: width 0.4s ease;
}

.pf-item:hover::before {
    width: 100%;
}

.pf-item:hover {
    transform: translateX(10px);
}

.pf-item:first-child {
    padding-top: 0;
}

.pf-item:last-child {
    border-bottom: 1px solid rgba(62, 53, 44, 0.1);
}

.pf-label {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #7a6a5c;
    margin-bottom: 15px;
    font-weight: 500;
    transition: color 0.4s ease;
}

.pf-item:hover .pf-label {
    color: #3e352c;
}

.pf-title {
    font-size: 42px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    margin: 0 0 20px 0;
    color: #3e352c;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
}

.pf-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5047;
    margin: 0;
    max-width: 90%;
    font-weight: 300;
    transition: color 0.4s ease;
}

.pf-item:hover .pf-desc {
    color: #3e352c;
}

@media (max-width: 1024px) {
    .pf-image-col {
        width: 40%;
    }
    .pf-content-col {
        width: 60%;
        padding: 80px 5%;
    }
    .pf-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .pf-container {
        flex-direction: column;
    }
    .pf-image-col {
        width: 100%;
        min-height: 50vh;
    }
    .pf-image-inner {
        position: absolute;
        height: 130%; /* keep parallax ratio */
    }
    .pf-image-fade {
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, #f7f4ee 0%, rgba(247, 244, 238, 0) 100%);
    }
    .pf-content-col {
        width: 100%;
        padding: 20px 5% 60px 5%;
    }
    .pf-title {
        font-size: 32px;
    }
    .pf-desc {
        max-width: 100%;
    }
}

/* =========================================
   PREMIUM ABOUT PAGE STYLES
   ========================================= */

/* Hero Section */
.premium-about-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.pah-bg-wrapper {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: -2;
}

.pah-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.pah-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.4) 100%);
    z-index: -1;
}

.pah-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.pah-text-wrapper {
    max-width: 800px;
}

.gsap-reveal-text {
    overflow: hidden;
    margin: 0;
    line-height: 1.1;
    font-size: 72px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    letter-spacing: -2px;
}

.gsap-reveal-text span {
    display: block;
}

.pah-text-wrapper p {
    margin-top: 30px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* About Story Section */
.premium-about-story {
    padding: 100px 0;
}

.pas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pas-text-col .pas-subtitle {
    display: inline-block;
    color: #a38c76;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
}

.pas-text-col h2 {
    font-size: 54px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.pas-desc {
    margin-top: 40px;
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.8;
}

.pas-desc p {
    margin-bottom: 20px;
}

.pas-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item h3 {
    font-size: 42px;
    color: #fff;
    margin: 0 0 10px 0;
    font-family: 'Outfit', sans-serif;
}

.stat-item h3 span {
    color: #a38c76;
}

.stat-item p {
    color: #777;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.pas-image-col {
    position: relative;
    height: 700px;
}

.pas-img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.pas-img-small {
    top: auto;
    bottom: -50px;
    left: -20px;
    right: auto;
    width: 45%;
    height: 50%;
    z-index: 2;
    border: 15px solid #121212;
}

.pas-img-inner {
    width: 100%;
    height: 130%; /* For parallax */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -15%;
    left: 0;
}

/* Vision Section */
.premium-vision-section {
    position: relative;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
    margin-top: 100px;
}

.pvs-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.pvs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.7);
    z-index: -1;
}

.pvs-content h2 {
    font-size: 64px;
    margin: 0;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .gsap-reveal-text {
        font-size: 54px;
    }
    .pas-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .pas-image-col {
        height: 500px;
    }
    .pvs-content h2 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .premium-about-hero {
        height: 70vh;
        min-height: 500px;
    }
    .gsap-reveal-text {
        font-size: 42px;
    }
    .pah-text-wrapper p {
        font-size: 16px;
    }
    .pas-text-col h2 {
        font-size: 42px;
    }
    .pas-stats {
        flex-direction: column;
        gap: 20px;
    }
    .pas-image-col {
        height: 400px;
    }
    .pas-img-small {
        width: 60%;
        height: 60%;
    }
    .pvs-content h2 {
        font-size: 36px;
    }
}

/* =========================================
   CORE VALUES SECTION (4-Column Layout)
   ========================================= */
.core-values-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

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

.cv-card {
    padding: 40px 30px 60px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 400px;
}

.cv-card h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cv-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: auto;
}

.cv-icon {
    margin-top: 40px;
    width: 60px;
    height: 60px;
}

.cv-icon svg {
    width: 100%;
    height: 100%;
}

/* Card Specific Colors */
.cv-card-green {
    background-color: #c4e156;
    color: #1a1a1a;
}
.cv-card-green .cv-icon svg {
    stroke: #1a1a1a;
}

.cv-card-light {
    background-color: #f2f2ef;
    color: #1a1a1a;
}
.cv-card-light .cv-icon svg {
    stroke: #1a1a1a;
}

.cv-card-dark {
    background-color: #1e1e1e;
    color: #fff;
}
.cv-card-dark .cv-icon svg {
    stroke: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .cv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cv-card {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .cv-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   INTRO ABOUT SECTION (Cream/Image split)
   ========================================= */
.intro-about-section {
    background-color: #f7f4ee;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.ia-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 80vh;
}

.ia-text-col {
    width: 45%;
    padding: 8% 5% 8% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ia-tag {
    display: inline-block;
    align-self: flex-start;
    border: 1px solid rgba(62, 53, 44, 0.2);
    padding: 6px 12px;
    font-size: 12px;
    color: #3e352c;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.ia-title {
    font-family: 'Outfit', serif; /* Use serif or display font */
    font-size: 54px;
    color: #3e352c;
    line-height: 1.1;
    font-weight: 400;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
}

.ia-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #5a5047;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

.ia-image-col {
    width: 55%;
    position: relative;
    min-height: 100%;
}

.ia-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ia-image-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, #f7f4ee 0%, rgba(247, 244, 238, 0) 100%);
    pointer-events: none;
}

/* Add a subtle bottom gradient just in case */
.ia-image-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(to top, #f7f4ee 0%, rgba(247, 244, 238, 0) 100%);
    pointer-events: none;
}

@media (max-width: 1200px) {
    .ia-text-col {
        width: 50%;
    }
    .ia-image-col {
        width: 50%;
    }
    .ia-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .ia-container {
        flex-direction: column;
    }
    .ia-text-col {
        width: 100%;
        padding: 60px 5%;
    }
    .ia-image-col {
        width: 100%;
        height: 50vh;
        min-height: 400px;
    }
    .ia-image-fade {
        width: 100%;
        height: 30%;
        background: linear-gradient(to bottom, #f7f4ee 0%, rgba(247, 244, 238, 0) 100%);
    }
    .ia-image-col::after {
        display: none;
    }
}

/* =========================================
   CONSULTATION SECTION
   ========================================= */
.consultation-section {
    background-color: #31281e; /* Dark brown from image */
    width: 100%;
    overflow: hidden;
}

.cs-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 500px;
}

.cs-text-col {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
}

.cs-text-inner {
    max-width: 450px;
    text-align: center;
}

.cs-title {
    font-family: 'Outfit', serif;
    font-size: 42px;
    color: #fff;
    font-weight: 300;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cs-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #dfd8d0;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.cs-btn {
    display: inline-block;
    background-color: #fff;
    color: #31281e;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.cs-image-col {
    width: 50%;
    position: relative;
    min-height: 100%;
}

.cs-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cs-container {
        flex-direction: column;
    }
    .cs-text-col {
        width: 100%;
        padding: 60px 5%;
    }
    .cs-image-col {
        width: 100%;
        height: 50vh;
        min-height: 400px;
    }
    .cs-title {
        font-size: 36px;
    }
}

/* =========================================
   SOLUTIONS ACCORDION SECTION (Polaroid + List)
   ========================================= */
.solutions-accordion-section {
    background-color: #e9e5db; /* Warm beige */
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.sa-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.sa-image-col {
    width: 45%;
    position: sticky;
    top: 100px; /* Stay sticky on scroll */
}

.sa-polaroid {
    background-color: #fff;
    padding: 20px 20px 60px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.sa-img {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.sa-accordion-col {
    width: calc(55% - 50px);
}

.sa-acc-item {
    border-bottom: 1px solid rgba(62, 53, 44, 0.3);
}

.sa-acc-item:first-child {
    border-top: 1px solid rgba(62, 53, 44, 0.3);
}

.sa-acc-header {
    display: flex;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sa-acc-header:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.sa-num {
    font-size: 14px;
    font-weight: 500;
    color: #3e352c;
    width: 60px;
    font-style: italic;
}

.sa-title {
    font-family: 'Outfit', serif;
    font-size: 32px;
    color: #3e352c;
    font-weight: 400;
    margin: 0;
    flex: 1;
}

.sa-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.sa-icon::before, .sa-icon::after {
    content: '';
    position: absolute;
    background-color: #3e352c;
    transition: transform 0.3s ease;
}

.sa-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.sa-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.sa-acc-item.active .sa-icon::after {
    transform: rotate(90deg); /* Turn + into - or just hide it */
    opacity: 0;
}

.sa-acc-item.active .sa-icon::before {
    /* If you want an X, rotate both. Let's just make it a minus for active state */
    transform: rotate(180deg);
}

/* If user wants X like image: */
.sa-acc-item.active .sa-icon::before {
    transform: rotate(45deg);
}
.sa-acc-item.active .sa-icon::after {
    transform: rotate(45deg);
    opacity: 1;
}

.sa-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.sa-acc-inner {
    padding: 0 0 40px 60px; /* Indent to match title */
}

.sa-acc-inner p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5047;
    margin: 0;
    max-width: 90%;
}

@media (max-width: 992px) {
    .sa-image-col, .sa-accordion-col {
        width: 100%;
    }
    .sa-image-col {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
    .sa-img {
        height: 40vh;
    }
    .sa-title {
        font-size: 24px;
    }
    .sa-acc-inner {
        padding-left: 0;
    }
}

/* =========================================
   VISION & MISSION SECTION
   ========================================= */
.vision-mission-section {
    padding: 100px 0;
    background-color: #121212;
    color: #fff;
}

.vm-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.vm-col {
    flex: 1;
    min-width: 300px;
}

.vm-title {
    font-family: 'Outfit', serif;
    font-size: 36px;
    color: #c4e156;
    margin-bottom: 25px;
    font-weight: 300;
}

.vm-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #bbb;
}

.vm-list {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #bbb;
    list-style-type: none;
    padding: 0;
}

.vm-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.vm-list li::before {
    content: '\2022'; /* Bullet */
    position: absolute;
    left: 0;
    color: #c4e156;
    font-size: 20px;
    line-height: 1;
    top: 2px;
}/* Applications Scroll Section */
.applications-scroll-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.app-scroll-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    gap: 60px;
    position: relative;
    align-items: flex-start;
}

.app-scroll-content {
    flex: 1;
    padding-bottom: 50px;
}

.app-header {
    margin-bottom: 60px;
}

.app-header h2 {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.app-header p {
    font-size: 16px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.app-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-list li {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.app-list li:hover {
    background-color: rgba(255, 255, 255, 0.03);
    padding-left: 20px;
}

.app-list li:last-child {
    border-bottom: none;
}

.app-list h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.app-list p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
}

.app-sticky-image {
    flex: 1;
    position: sticky;
    top: 100px;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.app-image-wrapper {
    width: 100%;
    height: 80%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.app-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.app-image-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .app-scroll-container {
        flex-direction: column;
    }
    
    .app-sticky-image {
        position: relative;
        top: 0;
        height: 60vh;
        width: 100%;
        margin-top: 40px;
        order: -1;
    }
    
    .app-image-wrapper {
        height: 100%;
    }
    
    .app-list li:hover {
        padding-left: 0;
    }
}
/* Update Applications Scroll Section */
.applications-scroll-section {
    background-color: #ffffff;
    padding: 100px 0;
    color: #121212;
    position: relative;
}

.app-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.app-header-center h2 {
    font-size: 42px;
    font-weight: 400;
    color: #121212;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.app-header-center p {
    font-size: 16px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.app-scroll-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    gap: 80px;
    position: relative;
    align-items: flex-start;
}

.app-scroll-content {
    flex: 1;
    padding-bottom: 50vh; /* space to scroll past the last item */
}

.app-item {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    opacity: 0.3;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(-20px);
}

.app-item.active {
    opacity: 1;
    transform: translateX(0);
}

.app-item h3 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #121212;
    font-family: 'Outfit', sans-serif;
}

.app-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 400px;
}

.app-sticky-image {
    flex: 1;
    position: sticky;
    top: 150px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px; /* For 3D tilt */
}

.app-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-image-wrapper:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.app-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1) translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-image-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@media (max-width: 992px) {
    .app-scroll-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .app-scroll-content {
        padding-bottom: 0;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 30px;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        order: 2;
    }
    
    .app-scroll-content::-webkit-scrollbar {
        display: none;
    }
    
    .app-item {
        min-height: auto;
        min-width: 80vw;
        scroll-snap-align: center;
        opacity: 0.5;
        transform: none;
        background: #f9f9f9;
        padding: 30px;
        border-radius: 15px;
    }
    
    .app-item.active {
        opacity: 1;
        background: #f0f0f0;
    }
    
    .app-item h3 {
        font-size: 28px;
    }
    
    .app-sticky-image {
        position: relative;
        top: 0;
        height: 50vh;
        width: 100%;
        order: 1;
    }
    
    .app-image-wrapper {
        transform: none;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
}
/* Contact Split Section */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

.contact-split-section {
    background-color: #f6f4ed; /* Light beige from the image */
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    color: #333;
    padding: 40px;
    gap: 40px;
}

.cs-left {
    flex: 1;
    padding: 60px 40px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-subtitle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b5952f;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cs-subtitle::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #b5952f;
    margin-right: 15px;
}

.cs-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 400;
    color: #222;
    margin-bottom: 30px;
    max-width: 500px;
}

.cs-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 450px;
}

.cs-contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cs-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cs-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.cs-icon svg {
    width: 20px;
    height: 20px;
    stroke: #8c7667;
}

.cs-text h4 {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
}

.cs-text p {
    font-size: 15px;
    color: #222;
    margin: 0;
    font-weight: 500;
}

/* Right Side */
.cs-right {
    flex: 1.2;
    background-image: url('../images/sect_villa.png'); /* placeholder */
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cs-form-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 50px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.4);
}

.cs-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #222;
    margin-bottom: 10px;
}

.cs-form-card > p {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.cs-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cs-form-group.full-width {
    grid-column: 1 / -1;
}

.cs-form-group input,
.cs-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.cs-form-group input:focus,
.cs-form-group textarea:focus {
    border-color: #b5952f;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(181, 149, 47, 0.1);
}

.cs-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.cs-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.cs-checkbox input {
    margin-top: 3px;
    accent-color: #b5952f;
}

.cs-checkbox label {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.cs-submit-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.cs-submit-btn:hover {
    background: #333;
}

@media (max-width: 992px) {
    .contact-split-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .cs-left {
        padding: 40px 20px;
    }
    
    .cs-title {
        font-size: 42px;
    }
    
    .cs-right {
        padding: 20px;
        border-radius: 20px;
    }
    
    .cs-form-card {
        padding: 30px;
    }
    
    .cs-form {
        grid-template-columns: 1fr;
    }
}
/* Products Page Styles */
.products-intro {
    text-align: center;
    padding: 60px 20px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.products-intro h2 {
    font-size: 36px;
    font-family: 'Outfit', sans-serif;
    color: #b5952f;
    margin-bottom: 20px;
}

.products-intro p {
    font-size: 18px;
    color: #aaa;
    line-height: 1.6;
}

/* Solutions Grid */
.solutions-grid-section {
    padding: 40px 4% 80px;
}

.sg-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.sg-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: background 0.4s ease;
}

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

.sg-card:hover .sg-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
}

.sg-title {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.sg-desc {
    font-size: 14px;
    color: #ddd;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.1s;
}

.sg-card:hover .sg-title {
    transform: translateY(0);
}

.sg-card:hover .sg-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Hardware Brands */
.hardware-brands-section {
    background-color: #0a0a0a;
    padding: 100px 4%;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.hb-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hb-header h2 {
    font-size: 36px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 20px;
}

.hb-header p {
    font-size: 16px;
    color: #888;
}

.hb-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.hb-card {
    background: #151515;
    border-radius: 20px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hb-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}

.hb-logo-wrapper {
    width: 100%;
    height: 280px;
    background: #222;
    overflow: hidden;
    position: relative;
}

.hb-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hb-card:hover .hb-logo-wrapper img {
    transform: scale(1.1);
}

.hb-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hb-title {
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hb-desc {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sg-container, .hb-grid {
        grid-template-columns: 1fr;
    }
    
    .sg-card {
        height: 300px;
    }
    
    .sg-desc {
        opacity: 1;
        transform: translateY(0);
    }
    
    .sg-title {
        transform: translateY(0);
    }
    
    .sg-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.1) 100%);
    }
}

@media (max-width: 1024px) {
    .intro-about-section,
    .modern-design-section,
    .comparison-section,
    .editorial-section,
    .applications-scroll-section,
    .benefits-section,
    .premium-features-section,
    .solutions-accordion-section,
    .consultation-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}



/* Premium Gallery Page Styling */
.premium-gallery-section {
    padding: 100px 5%;
    background-color: #121212;
}
.pg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.pg-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
.pg-item:hover img {
    transform: scale(1.08);
}
.pg-item:hover .pg-overlay {
    opacity: 1;
}
.pg-title {
    color: #fff;
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 0;
}
.pg-subtitle {
    color: #c9b161;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.pg-item:hover .pg-title,
.pg-item:hover .pg-subtitle {
    transform: translateY(0);
}
.pg-span-2-col {
    grid-column: span 2;
}
.pg-span-2-row {
    grid-row: span 2;
}
@media (max-width: 1024px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }
}
@media (max-width: 768px) {
    .premium-gallery-section {
        padding: 50px 5%;
    }
    .pg-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
    }
    .pg-span-2-col, .pg-span-2-row {
        grid-column: span 1;
        grid-row: span 1;
    }
    .pg-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 70%);
    }
    .pg-title, .pg-subtitle {
        transform: translateY(0);
    }
}


.editorial-feature-card h3, .editorial-feature-card .price { color: #1a1a1a !important; }


/* Floating Contact Widget */
.floating-contact-widget { position: fixed; bottom: 30px; right: 30px; z-index: 9999; }
.fcw-toggle { width: 60px; height: 60px; background-color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.fcw-toggle:hover { transform: scale(1.1); }
.fcw-toggle svg { width: 30px; height: 30px; animation: fcwPulse 2s infinite; }
@keyframes fcwPulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
.fcw-menu { position: absolute; bottom: 75px; right: 0; display: flex; flex-direction: column; gap: 15px; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform-origin: bottom right; }
.floating-contact-widget:hover .fcw-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.fcw-item { display: flex; align-items: center; gap: 15px; background-color: #1a1a1a; color: #fff; padding: 12px 20px; border-radius: 30px; text-decoration: none; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; white-space: nowrap; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.1); }
.fcw-item span { margin-right: 5px; }
.fcw-item svg { width: 20px; height: 20px; }
.fcw-wa:hover { background-color: #25D366; color: #fff; border-color: #25D366; }
.fcw-call:hover { background-color: var(--primary-color); color: #fff; border-color: var(--primary-color); }

/* Creative Map Section */
.contact-map-section { padding: 100px 5%; background-color: var(--bg-dark); position: relative; }
.map-container { max-width: 1400px; margin: 0 auto; position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.map-overlay-text { position: absolute; top: 40px; left: 40px; background: rgba(18, 18, 18, 0.85); backdrop-filter: blur(10px); padding: 25px 35px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); z-index: 2; pointer-events: none; }
.map-overlay-text h3 { color: var(--primary-color); font-size: 24px; margin-bottom: 5px; font-family: 'Outfit', sans-serif; }
.map-overlay-text p { color: #fff; font-size: 14px; margin: 0; }
.map-frame { width: 100%; height: 500px; border-radius: 20px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%); transition: filter 0.5s ease; }
.map-frame iframe:hover { filter: invert(90%) hue-rotate(180deg) brightness(100%) contrast(100%); }
@media (max-width: 768px) { .map-overlay-text { top: 20px; left: 20px; right: 20px; padding: 15px 20px; } .map-frame { height: 400px; } }

/* Product Gallery Showcase */
.product-gallery-showcase { padding: 80px 5%; background-color: var(--bg-darker); }
.pgs-header { text-align: center; margin-bottom: 50px; }
.pgs-header h2 { font-size: 42px; color: var(--primary-color); font-family: 'Outfit', sans-serif; margin-bottom: 10px; }
.pgs-header p { color: var(--text-muted); }
.pgs-grid { column-count: 4; column-gap: 20px; max-width: 1400px; margin: 0 auto; }
.pgs-item { break-inside: avoid; margin-bottom: 20px; position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.pgs-item img { width: 100%; display: block; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.pgs-item:hover img { transform: scale(1.08); }
.pgs-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%); opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: flex-end; justify-content: center; padding: 20px; }
.pgs-item:hover .pgs-overlay { opacity: 1; }
.pgs-overlay-icon { width: 45px; height: 45px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1a1a1a; transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.pgs-item:hover .pgs-overlay-icon { transform: translateY(0); }
.pgs-overlay-icon svg { width: 20px; height: 20px; }
@media (max-width: 1024px) { .pgs-grid { column-count: 3; } }
@media (max-width: 768px) { .pgs-grid { column-count: 2; } }
@media (max-width: 480px) { .pgs-grid { column-count: 1; } }

/* Premium Split Card Design (Artova Style) */
.premium-split-container { max-width: 1300px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }
.premium-split-card { display: flex; background: #222; overflow: hidden; height: 500px; box-shadow: 0 40px 80px rgba(0,0,0,0.6); transition: transform 0.5s ease; }
.premium-split-card:hover { transform: translateY(-10px); }
.premium-split-card.reverse { flex-direction: row-reverse; }
.psc-text-panel { width: 40%; padding: 60px; display: flex; flex-direction: column; justify-content: space-between; background: #252525; position: relative; z-index: 2; box-shadow: 20px 0 50px rgba(0,0,0,0.3); }
.premium-split-card.reverse .psc-text-panel { box-shadow: -20px 0 50px rgba(0,0,0,0.3); }
.psc-logo { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 300; color: #fff; letter-spacing: 4px; text-transform: uppercase; text-align: center; }
.psc-desc { font-size: 14px; color: #b0b0b0; line-height: 1.8; margin-top: auto; margin-bottom: 50px; font-weight: 300; text-align: justify; }
.psc-link { font-size: 13px; color: #fff; letter-spacing: 2px; text-align: center; text-transform: lowercase; opacity: 0.7; transition: opacity 0.3s ease; }
.psc-link:hover { opacity: 1; }
.psc-image-panel { width: 60%; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.premium-split-card:hover .psc-image-panel { transform: scale(1.05); }
@media (max-width: 992px) { .premium-split-card, .premium-split-card.reverse { flex-direction: column; height: auto; } .psc-text-panel { width: 100%; padding: 40px; min-height: 350px; box-shadow: none !important; } .psc-image-panel { width: 100%; height: 400px; } }

/* MOBILE FIX: Disabling 250vh/300vh scroll gaps for video & hero sections */
@media (max-width: 768px) {
    .video-scroll-section, .scroll-hero-section {
        height: auto !important;
        min-height: auto !important;
        padding: 20px 0;
    }
    .video-sticky-wrapper, .vs-sticky-wrapper, .scroll-hero-sticky {
        position: relative !important;
        height: 400px !important;
        top: auto !important;
    }
    .vs-video-container, .scroll-hero-gallery {
        width: 100% !important;
        height: 100% !important;
        border-radius: 12px !important;
        transform: none !important;
        position: relative !important;
    }
    .scroll-hero-gallery img {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* FIX MOBILE HORIZONTAL OVERFLOW */
body { width: 100%; max-width: 100vw; overflow-x: clip; }
@media (max-width: 992px) {
    .editorial-feature-card { right: auto !important; bottom: -20px !important; }
}

/* FINAL MOBILE FIXES based on subagent report */
@media (max-width: 992px) {
    .sh-content-row { flex-direction: column; align-items: flex-start; gap: 30px; }
    .sh-title { font-size: 40px !important; max-width: 100%; line-height: 1.2; }
    .hs-left-box { padding: 30px !important; }
    .hs-title-area h1 { line-height: 1.4 !important; padding-top: 10px; }
    .app-scroll-content { display: flex !important; flex-direction: column !important; flex-wrap: wrap !important; overflow-x: visible !important; gap: 20px !important; }
    .app-item { width: 100% !important; min-width: 100% !important; }
    .hero-slider-section { height: auto !important; overflow: visible !important; }
}

/* FINAL MOBILE POLISH */
@media (max-width: 992px) {
    .md-dots { display: none !important; }
    .b-card { min-height: auto !important; justify-content: flex-start !important; gap: 15px; padding: 30px !important; }
    .floating-contact-widget { bottom: 15px !important; right: 15px !important; }
    .fcw-toggle { width: 50px !important; height: 50px !important; }
    .fcw-toggle svg { width: 25px !important; height: 25px !important; }
    .fcw-menu { bottom: 60px !important; }
    .fcw-menu.active { opacity: 1 !important; visibility: visible !important; transform: translateY(0) scale(1) !important; }
}
