    /* ========================================
    CSS Variables & Reset
    ======================================== */

    :root {
        --color-primary: #1a1a1a;
        --color-secondary: #2d2d2d;
        --color-accent-gold: #D4AF37;
        --color-accent-hover: #E5C547;
        --color-accent-silver: #c0c0c0;
        --color-text-light: #ffffff;
        --color-text-dark: #1a1a1a;
        --color-text-gray: #666666;
        --color-brown: #3d2817;
        --color-dark-brown: #2a1f14;
        --font-primary: 'Montserrat', sans-serif;
        --font-secondary: 'Poppins', sans-serif;
        --font-accent: 'Lora', serif;
        --transition: all 0.3s ease;
        --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px; /* Adjusted for navbar height */
    }

    body {
        font-family: var(--font-primary);
        color: var(--color-text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        max-width: 100%;
        position: relative;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ========================================
    Granite Texture Patterns
    ======================================== */

    .granite-texture-1 {
        background:
            radial-gradient(circle at 20% 30%, rgba(45, 45, 45, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(61, 40, 23, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(100, 100, 100, 0.2) 0%, transparent 60%),
            linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2d2d2d 100%);
        background-size: 200% 200%, 150% 150%, 180% 180%, 100% 100%;
        animation: graniteShift 20s ease-in-out infinite;
    }

    .granite-texture-2 {
        background:
            radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.6) 0%, transparent 40%),
            radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
            linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
        background-size: 300% 300%, 200% 200%, 100% 100%;
    }

    .granite-texture-3 {
        background:
            radial-gradient(circle at 25% 35%, rgba(61, 40, 23, 0.5) 0%, transparent 45%),
            radial-gradient(circle at 75% 65%, rgba(139, 90, 43, 0.4) 0%, transparent 50%),
            linear-gradient(135deg, #3d2817 0%, #2a1f14 50%, #4a3525 100%);
        background-size: 250% 250%, 180% 180%, 100% 100%;
    }

    .granite-texture-4 {
        background:
            radial-gradient(circle at 40% 50%, rgba(100, 100, 100, 0.5) 0%, transparent 50%),
            radial-gradient(circle at 60% 30%, rgba(192, 192, 192, 0.3) 0%, transparent 45%),
            linear-gradient(90deg, #3a3a3a 0%, #2d2d2d 50%, #4a4a4a 100%);
        background-size: 220% 220%, 160% 160%, 100% 100%;
    }

    .granite-texture-5 {
        background:
            radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 60%),
            linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #000000 100%);
        background-size: 400% 400%, 100% 100%;
    }

    .granite-texture-6 {
        background:
            radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.3) 0%, transparent 45%),
            linear-gradient(45deg, #f5f5f5 0%, #e8e8e8 50%, #fafafa 100%);
        background-size: 280% 280%, 200% 200%, 100% 100%;
    }

    .granite-texture-7 {
        background:
            radial-gradient(circle at 35% 45%, rgba(212, 175, 55, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 65% 55%, rgba(61, 40, 23, 0.5) 0%, transparent 45%),
            linear-gradient(135deg, #4a3525 0%, #3d2817 50%, #5a4535 100%);
        background-size: 240% 240%, 170% 170%, 100% 100%;
    }

    .granite-texture-8,
    .granite-texture-9,
    .granite-texture-10,
    .granite-texture-11,
    .granite-texture-12,
    .granite-texture-13,
    .granite-texture-14 {
        background:
            radial-gradient(circle at 20% 30%, rgba(45, 45, 45, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(61, 40, 23, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(100, 100, 100, 0.2) 0%, transparent 60%),
            linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2d2d2d 100%);
        background-size: 200% 200%, 150% 150%, 180% 180%, 100% 100%;
    }

    @keyframes graniteShift {

        0%,
        100% {
            background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        }

        50% {
            background-position: 100% 100%, 50% 50%, 80% 80%, 0% 0%;
        }
    }



    /* ========================================
    Navbar
    ======================================== */

    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.85);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 15px 0;
        transition: var(--transition);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .navbar.scrolled {
        background: rgba(26, 26, 26, 0.95);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 12px; */
        text-decoration: none;
        color: var(--color-text-light);
    }

    .nav-logo p {
        font-size: 9px;
        font-weight: 500;
        color: var(--color-text-light);
    }

    .logo-image {
        height: 30px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .logo-image:hover {
        transform: scale(1.05);
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        background: var(--color-accent-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--color-text-dark);
        font-weight: bold;
        border-radius: 4px;
    }

    .logo-text {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.5px;
        color: var(--color-text-light);
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 35px;
        align-items: center;
        flex-grow: 1;
        justify-content: center;
    }

    .nav-link {
        color: var(--color-text-light);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
        padding: 5px 0;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-accent-gold);
        transition: var(--transition);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-accent-gold);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-quote-btn {
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
        border: none;
        padding: 12px 30px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 5px;
        transition: var(--transition);
        box-shadow: var(--shadow-glow);
        font-family: var(--font-primary);
    }

    .nav-quote-btn:hover {
        background: linear-gradient(135deg, #E5C547, #F5D557);
        transform: translateY(-2px);
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--color-text-light);
        transition: var(--transition);
    }

    /* ========================================
    Navbar Contact Info
    ======================================== */

    .nav-contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-right: 20px;
        color: var(--color-text-light);
        font-size: 14px;
    }

    .nav-email, .nav-phone {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 5px;
    }

    .nav-email a, .nav-phone a {
        color: var(--color-text-light);
        text-decoration: none;
        transition: var(--transition);
    }

    .nav-email a:hover, .nav-phone a:hover {
        color: var(--color-accent-gold);
    }

    .nav-email i, .nav-phone i {
        color: var(--color-accent-gold);
    }

    .nav-social {
        display: flex;
        align-items: center;
        /* gap: 5px; */
        margin-top: 5px;
        margin-left: 15px;
    }

    .nav-social a {
        color: var(--color-text-light);
        text-decoration: none;
        transition: var(--transition);
        font-size: 14px;
    }

    .nav-social a:hover {
        color: var(--color-accent-gold);
        transform: translateY(-2px);
    }

    @media (max-width: 992px) {
        .nav-contact-info {
            display: none;
        }
    }

    /* ========================================
    Hero Section
    ======================================== */

    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url(../images/Lemurian.jpeg);
        background-size: cover;
        animation: graniteShift 25s ease-in-out infinite;
        overflow: hidden;
        max-width: 100%;
    }

    .hero-container {
        position: relative;
        z-index: 2;
        max-width: 1400px;
        width: 100%;
        padding: 0 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            repeating-linear-gradient(0deg,
                transparent,
                transparent 2px,
                rgba(212, 175, 55, 0.03) 2px,
                rgba(212, 175, 55, 0.03) 4px);
        pointer-events: none;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: left;
        color: var(--color-text-light);
        max-width: 600px;
    }

    .hero-title {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 25px;
        line-height: 1.2;
        font-family: var(--font-primary);
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        font-family: var(--font-secondary);
    }

    .hero-cta {
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
        border: none;
        padding: 18px 45px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 5px;
        transition: var(--transition);
        box-shadow: var(--shadow-glow);
        font-family: var(--font-primary);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-cta:hover {
        background: #E5C547;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    }

    /* ========================================
    Hero Images Section
    ======================================== */

    .hero-images {
        position: relative;
        width: 100%;
        height: 600px;
        z-index: 2;
    }

    .hero-image-card {
        position: absolute;
        width: 280px;
        height: 180px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .hero-image-card:hover {
        transform: scale(1.05) translateY(-5px) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        z-index: 10;
    }

    .hero-image-img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    /* Card 1 - Top left, tilted right */
    .hero-image-card.card-1 {
        top: 10%;
        left: 5%;
        transform: rotate(8deg);
        animation: floatCard1 6s ease-in-out infinite;
    }

    /* Card 2 - Top right, tilted left */
    .hero-image-card.card-2 {
        top: 5%;
        right: 15%;
        transform: rotate(-12deg);
        animation: floatCard2 7s ease-in-out infinite;
    }

    /* Card 3 - Middle left, tilted right */
    .hero-image-card.card-3 {
        top: 35%;
        left: 10%;
        transform: rotate(10deg);
        z-index: 3;
        animation: floatCard3 8s ease-in-out infinite;
    }

    /* Card 4 - Bottom right, tilted left */
    .hero-image-card.card-4 {
        bottom: 15%;
        right: 10%;
        transform: rotate(-8deg);
        z-index: 2;
        animation: floatCard4 6.5s ease-in-out infinite;
    }

    /* Card 5 - Bottom left, tilted right (overlapping) */
    .hero-image-card.card-5 {
        bottom: 10%;
        left: 0;
        transform: rotate(15deg);
        z-index: 4;
        animation: floatCard5 7.5s ease-in-out infinite;
    }

    @keyframes floatCard1 {

        0%,
        100% {
            transform: rotate(8deg) translateY(0);
        }

        50% {
            transform: rotate(8deg) translateY(-10px);
        }
    }

    @keyframes floatCard2 {

        0%,
        100% {
            transform: rotate(-12deg) translateY(0);
        }

        50% {
            transform: rotate(-12deg) translateY(-15px);
        }
    }

    @keyframes floatCard3 {

        0%,
        100% {
            transform: rotate(10deg) translateY(0);
        }

        50% {
            transform: rotate(10deg) translateY(-12px);
        }
    }

    @keyframes floatCard4 {

        0%,
        100% {
            transform: rotate(-8deg) translateY(0);
        }

        50% {
            transform: rotate(-8deg) translateY(-10px);
        }
    }

    @keyframes floatCard5 {

        0%,
        100% {
            transform: rotate(15deg) translateY(0);
        }

        50% {
            transform: rotate(15deg) translateY(-8px);
        }
    }

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        color: var(--color-text-light);
        font-size: 12px;
        opacity: 0.7;
        animation: bounce 2s infinite;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
        border-right: 2px solid var(--color-text-light);
        border-bottom: 2px solid var(--color-text-light);
        transform: rotate(45deg);
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(10px);
        }
    }

    /* ========================================
    Animations
    ======================================== */

    .fade-in {
        animation: fadeIn 1s ease-out;
    }

    .fade-in-delay {
        animation: fadeIn 1s ease-out 0.3s both;
    }

    .fade-in-delay-2 {
        animation: fadeIn 1s ease-out 0.6s both;
    }

    .slide-up {
        animation: slideUp 0.8s ease-out;
    }

    .slide-up-delay {
        animation: slideUp 0.8s ease-out 0.2s both;
    }

    .slide-up-delay-2 {
        animation: slideUp 0.8s ease-out 0.4s both;
    }

    /* Scroll Animation Classes */
    .scroll-animate {
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .scroll-fade-in {
        opacity: 0;
        transition: opacity 1s ease-out;
    }

    .scroll-fade-in.visible {
        opacity: 1;
    }

    .scroll-slide-left {
        opacity: 0;
        transform: translateX(-60px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-slide-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .scroll-slide-right {
        opacity: 0;
        transform: translateX(60px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-slide-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .scroll-zoom-in {
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-zoom-in.visible {
        opacity: 1;
        transform: scale(1);
    }

    .scroll-rotate-in {
        opacity: 0;
        transform: rotate(-5deg) scale(0.9);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-rotate-in.visible {
        opacity: 1;
        transform: rotate(0) scale(1);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ========================================
    About Section
    ======================================== */

    .about {
        padding: 100px 0;
        /* background: #f8f8f8; */
        position: relative;
        /* background-image: url(sbg20.jpeg); */
        background-image: url(../images/hbg.jpeg);
        /* background-image: url(g2.jpeg); */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .about-intro span {
        font-size: 22px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    h2.about-tag {
        color: #ffffff;
        /* font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
        font-family: var(--font-primary);
        text-transform: uppercase;
        letter-spacing: 3px;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    }

    .section-label {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        color: var(--color-accent-gold);
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 42px;
        font-weight: 700;
        color: var(--color-text-dark);
        margin-bottom: 15px;
        font-family: var(--font-primary);
    }

    .section-description {
        font-size: 18px;
        color: var(--color-text-gray);
        /* color: #E0E0E0; */
        max-width: 600px;
        margin: 0 auto;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-single-image,
    .about-single-text {
        width: 100%;
        margin: 20px 0;
    }

    .about-single-image {
        display: flex;
        justify-content: center;
    }

    .about-image {
        position: relative;
    }

    .about-img-placeholder {
        width: 500px;
        height: 650px;
        max-width: 100%;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .about-img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .experience-badge {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: var(--color-accent-gold);
        padding: 25px 30px;
        border-radius: 10px;
        color: var(--color-text-dark);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .badge-number {
        display: block;
        font-size: 48px;
        font-weight: 800;
        line-height: 1;
    }

    .badge-text {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-top: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .about-text {
        padding: 20px 0;
    }

    .about-intro {
        font-size: 20px;
        font-weight: 600;
        color: var(--color-text-dark);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .about-text p {
        font-size: 16px;
        /* color: var(--color-text-gray); */
        color: #A7F3FF;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .about-features {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .feature-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        background: var(--color-accent-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: bold;
        color: var(--color-text-dark);
        flex-shrink: 0;
    }

    .feature-text h4 {
        font-size: 18px;
        font-weight: 600;
        /* color: var(--color-text-dark); */
        color: #A7F3FF;
        margin-bottom: 5px;
    }

    .feature-text p {
        font-size: 14px;
        /* color: var(--color-text-gray); */
        color: #ffffff;
        margin: 0;
    }

    /* -------------------------
    IMAGE + EXPERIENCE BADGE
    ---------------------------- */

    .about-image {
        position: relative;
    }

    .about-img-placeholder {
        width: 500px;
        max-width: 100%;
        aspect-ratio: 1/1;
        border-radius: 10px;
        overflow: visible !important;  
        margin: 0 auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .about-img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .experience-badge {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: var(--color-accent-gold);
        padding: 25px 30px;
        border-radius: 10px;
        color: var(--color-text-dark);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .badge-number {
        display: block;
        font-size: 48px;
        font-weight: 800;
        line-height: 1;
    }

    .badge-text {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-top: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }


    /* -------------------------
    TEXT CONTENT
    ---------------------------- */

    .about-text {
        padding: 20px 0;
    }

    .about-intro {
        font-size: 20px;
        font-weight: 600;
        color: var(--color-text-dark);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .about-text p {
        font-size: 16px;
        color: #A7F3FF;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    /* -------------------------
    FEATURES
    ---------------------------- */

    .about-features {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .feature-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        background: var(--color-accent-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: bold;
        color: var(--color-text-dark);
    }

    .feature-text h4 {
        font-size: 18px;
        font-weight: 600;
        color: #A7F3FF;
        margin-bottom: 5px;
    }

    .feature-text p {
        font-size: 14px;
        color: #ffffff;
        margin: 0;
    }

    /* ==============================
    RESPONSIVE DESIGN
    ================================= */
/* ======================================
   MOBILE – TEXT OVER IMAGE (FULL READABLE)
====================================== */
@media (max-width: 768px){

  .about .about-content{
    display: flex !important;
    flex-direction: column !important;
    gap: 26px !important;
  }

  /* IMAGE WRAPPER */
  .about .about-image{
    position: relative !important;
    display: flex;
    justify-content: center;
  }

  .about .about-image img{
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;   /* IMPORTANT: no crop */
    border-radius: 18px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  }

  /* TEXT OVER IMAGE */
  .about .about-text{
    position: relative !important;
    margin-top: -80px !important;   /* image mukalil varaan */
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.85)
    ) !important;
    color: #fff !important;
    padding: 20px 18px !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    z-index: 2 !important;
  }

  /* FULL TEXT VISIBLE */
  .about .about-text p{
    font-size: 14.5px !important;
    line-height: 1.8 !important;
    color: #f1f1f1 !important;
    margin-bottom: 12px !important;
  }

  /* NAME HIGHLIGHT */
  .about .about-text span{
    color: #e7cf61 !important;
    font-weight: 600 !important;
  }

  /* ORDER FIX */
  .about .about-content > :nth-child(1){ order: 1 !important; } /* Ashraf image */
  .about .about-content > :nth-child(2){ order: 2 !important; } /* Ashraf text */
  .about .about-content > :nth-child(4){ order: 3 !important; } /* Ashik image */
  .about .about-content > :nth-child(3){ order: 4 !important; } /* Ashik text */
}
    /* ========================================
    Image Slider Section
    ======================================== */

    .image-slider-section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
        background: #f8f8f8;
        padding: 0;
        position: relative;
    }

    .slider-row {
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .slider-row-top {
        border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    }

    .slider-row-bottom {
        border-top: 2px solid rgba(0, 0, 0, 0.05);
    }

    .slider-track {
        display: flex;
        width: fit-content;
        height: 100%;
        will-change: transform;
    }

    .slider-track-left {
        animation: slideLeft 30s linear infinite;
    }

    .slider-track-right {
        animation: slideRight 30s linear infinite;
    }

    .slider-row-top:hover .slider-track-left {
        animation-play-state: paused;
    }

    .slider-row-bottom:hover .slider-track-right {
        animation-play-state: paused;
    }

    .slider-item {
        flex-shrink: 0;
        width: 300px;
        height: 200px;
        padding: 10px;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
    }

    .slider-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-image img {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

    .slider-item:hover .slider-image {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        z-index: 10;
    }

    @keyframes slideLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes slideRight {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* ========================================
    Offers Section
    ======================================== */

    .offers {
        padding: 100px 0;
        position: relative;
        background:
            radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.8) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(61, 40, 23, 0.7) 0%, transparent 50%),
            linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #2a1a1a 100%);
        background-size: 200% 200%, 150% 150%, 100% 100%;
        animation: graniteShift 20s ease-in-out infinite;
        overflow: hidden;
    }

    .offers-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .offers-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--color-text-light);
        max-width: 800px;
        margin: 0 auto;
    }

    .offers-label {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        color: var(--color-accent-gold);
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .offers-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .offers-description {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 35px;
        line-height: 1.6;
    }

    .offers-btn {
        background: transparent;
        color: var(--color-accent-gold);
        border: 2px solid var(--color-accent-gold);
        padding: 15px 40px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 5px;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: var(--font-primary);
    }

    .offers-btn:hover {
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
        transform: translateY(-2px);
    }

    /* ========================================
    Gallery Section
    ======================================== */

    .gallery {
        padding: 100px 0;
        background-image: url(../images/change.jpeg);
        background-size: cover;   
        background-position: center;
        background-repeat: no-repeat;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .gallery-item {
        position: relative;
        height: 350px;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .gallery-img {
        width: 100%;
        height: 100%;
        background-size:auto;
        background-position: center;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .gallery-img img {
        width: 100%;
        height: 100%;
        object-fit:auto;
        object-position: center;
        display: block;
    }

    .gallery-item:hover .gallery-img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        padding: 30px;
        transform: translateY(100%);
        transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    .gallery-title {
        color: var(--color-text-light);
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .price,
    .thickness,
    .gallery-subtitle {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    /* ========================================
    Products Section
    ======================================== */

    .products {
        padding: 100px 0;
        background-image: url(../images/sbg5.jpeg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .product-card {
        background: #ffffff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .product-image {
        width: 100%;
        height: 250px;
        position: relative;
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    .product-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .product-content {
        padding: 25px;
    }

    .product-name {
        font-size: 20px;
        font-weight: 700;
        color: var(--color-text-dark);
        margin-bottom: 12px;
    }

    .product-description {
        font-size: 14px;
        color: var(--color-text-gray);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .product-btn {
        width: 100%;
        background: transparent;
        color: var(--color-accent-gold);
        border: 2px solid var(--color-accent-gold);
        padding: 12px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 5px;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-btn:hover {
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
    }

    /* ========================================
    Services Section
    ======================================== */

    .services {
        padding: 100px 0;
        /* background-image: url(sbg6.jpeg); */
        background-image: url(../images/gbg.jpeg);
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            repeating-linear-gradient(45deg,
                transparent,
                transparent 10px,
                rgba(212, 175, 55, 0.02) 10px,
                rgba(212, 175, 55, 0.02) 20px);
        pointer-events: none;
    }

    .offer-title {
        color: #ffffff;
    }

    .offer-description {
        color: wheat;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .service-card {
        background: #f8f8f8;
        padding: 40px 16px;
        border-radius: 10px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .service-card:hover::before {
        left: 100%;
    }

    .service-card:hover {
        border-color: var(--color-accent-gold);
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        background: #ffffff;
    }

    .service-card .service-icon {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    }

    .service-card:hover .service-icon {
        transform: scale(1.2) rotate(10deg);
        color: var(--color-accent-gold);
    }

    .service-card .service-title {
        transition: color 0.3s ease;
    }

    .service-card:hover .service-title {
        color: var(--color-accent-gold);
    }

    .service-icon {
        font-size: 48px;
        margin-bottom: 20px;
        display: block;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card:hover .service-icon {
        transform: scale(1.2) rotate(5deg);
    }

    .service-title {
        font-size: 20px;
        font-weight: 700;
        color: var(--color-text-dark);
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }

    .service-card:hover .service-title {
        color: var(--color-accent-gold);
    }

    .service-description {
        font-size: 14px;
        color: var(--color-text-gray);
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .service-card:hover .service-description {
        color: var(--color-text-dark);
    }

    /* Service Card Links */
    .service-card-link {
        text-decoration: none;
        display: block;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card-link:hover {
        transform: translateY(-10px) scale(1.02);
        text-decoration: none;
    }

    /* ========================================
    Upcoming Section
    ======================================== */

    .upcoming {
        padding: 100px 0;
        background: #f8f8f8;
        background-image: url(../images/bgf.jpeg);
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
    }

    .upcoming-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .upcoming-card {
        background: #ffffff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .upcoming-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .upcoming-image {
        width: 100%;
        height: 300px;
        position: relative;
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    .coming-soon-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .upcoming-content {
        padding: 25px;
    }

    .upcoming-title {
        font-size: 22px;
        font-weight: 700;
        color: var(--color-text-dark);
        margin-bottom: 12px;
    }

    .upcoming-description {
        font-size: 14px;
        color: var(--color-text-gray);
        line-height: 1.6;
    }

    /* ========================================
    Contact Section
    ======================================== */

    .contact {
        padding: 100px 0 50px;
        position: relative;
        background-size: 200% 200%, 150% 150%, 100% 100%;
        background-image: url(../images/bg15.jpeg);
        overflow: hidden;
    }

    .contact-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .contact .section-header {
        position: relative;
        z-index: 2;
    }

    .contact .section-title,
    .contact .section-description {
        color: var(--color-text-light);
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: relative;
        z-index: 2;
        margin-top: 60px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding-left: 50px;
    }

    .contact-icon {
        font-size: 32px;
        flex-shrink: 0;
    }

    .contact-icon i {
        font-size: 32px;
        color: var(--color-text-light);
    }

    .contact-details {
        margin-top: 7px;
    }

    .contact-details h4 {
        font-size: 20px;
        font-weight: 700;
        color: var(--color-text-light);
        margin-bottom: 8px;
    }

    .contact-details p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }

    .contact-quote-btn {
        margin-top: 20px;
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
        border: none;
        padding: 15px 40px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 5px;
        transition: var(--transition);
        box-shadow: var(--shadow-glow);
        font-family: var(--font-primary);
        text-transform: uppercase;
        letter-spacing: 1px;
        align-self: flex-start;
    }

    .contact-quote-btn:hover {
        background: #E5C547;
        transform: translateY(-2px);
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    }

    .contact-form-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-form {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
        backdrop-filter: blur(15px);
        padding: 80px 40px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .contact-form::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg,
                rgba(212, 175, 55, 0.3),
                rgba(192, 192, 192, 0.2),
                rgba(212, 175, 55, 0.3));
        border-radius: 15px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .contact-form:hover::before {
        opacity: 1;
        animation: borderGlow 3s ease-in-out infinite;
    }

    @keyframes borderGlow {

        0%,
        100% {
            filter: blur(10px);
        }

        50% {
            filter: blur(15px);
        }
    }

    .form-group {
        margin-bottom: 25px;
        position: relative;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 18px 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        color: var(--color-text-light);
        font-size: 16px;
        font-family: var(--font-primary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--color-accent-gold);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1),
            inset 0 2px 4px rgba(0, 0, 0, 0.1),
            0 4px 12px rgba(212, 175, 55, 0.2);
        transform: translateY(-2px);
    }

    .form-group input:focus::placeholder,
    .form-group textarea:focus::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-submit-btn {
        width: 100%;
        background: linear-gradient(135deg, var(--color-accent-gold) 0%, #E5C547 100%);
        color: var(--color-text-dark);
        border: none;
        padding: 18px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: var(--font-primary);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        position: relative;
        overflow: hidden;
    }

    .form-submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .form-submit-btn:hover::before {
        left: 100%;
    }

    .form-submit-btn:hover {
        background: linear-gradient(135deg, #E5C547 0%, #F5D557 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5),
            0 0 20px rgba(212, 175, 55, 0.3);
    }

    .form-submit-btn:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }

    .map-placeholder {
        height: 250px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 30px;
    }

    .map-content {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .map-content iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 10px;
    }

    /* ========================================
    Footer
    ======================================== */

    .footer {
        background: var(--color-primary);
        padding: 60px 0 20px;
        color: var(--color-text-light);
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        align-items: flex-start;
        /* gap: 12px; */
        margin-bottom: 20px;
    }

    .footer-logo p {
        font-size: 9px;
        font-weight: 500;
        color: var(--color-text-light);
    }

    .footer-logo-image {
        height: 30px;
        width: auto;
        object-fit: contain;
        filter: brightness(1.2);
    }

    .footer-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-text-light);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 600;
    }

    .social-link:hover {
        background: var(--color-accent-gold);
        border-color: var(--color-accent-gold);
        color: var(--color-text-dark);
        transform: translateY(-3px);
    }

    .footer-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--color-text-light);
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
        font-size: 14px;
    }

    .footer-links a:hover {
        color: var(--color-accent-gold);
        padding-left: 5px;
    }

    .footer-contact {
        list-style: none;
    }

    .footer-contact li {
        margin-bottom: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
    }

    /* ========================================
    Scroll to Top Button
    ======================================== */

    .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .scroll-to-top:hover {
        background: #E5C547;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    }

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    /* ========================================
    Popup Form Modal (Glassmorphism - No Overlay)
    ======================================== */

    .popup-modal-glass {
        position: fixed;
        top: 50%;
        right: 50px;
        transform: translateY(-50%) translateX(500px);
        width: 450px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(25px);
        border-radius: 20px;
        padding: 45px 40px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.2);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .popup-modal-glass.active {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .popup-close-glass {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        font-size: 26px;
        color: #666666;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        line-height: 1;
    }

    .popup-close-glass:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: rotate(90deg);
        color: #333333;
    }

    .popup-content-glass {
        width: 100%;
    }

    .popup-title-glass {
        font-size: 26px;
        font-weight: 700;
        color: var(--color-accent-gold);
        text-align: left;
        margin-bottom: 30px;
        font-family: var(--font-primary);
        letter-spacing: 2px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .popup-form-glass {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .popup-form-group-glass {
        width: 100%;
    }

    .popup-form-group-glass input,
    .popup-form-group-glass textarea {
        width: 100%;
        padding: 15px 18px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 10px;
        font-size: 15px;
        font-family: var(--font-primary);
        color: #333333;
        transition: all 0.3s ease;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05),
            0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .popup-form-group-glass input::placeholder,
    .popup-form-group-glass textarea::placeholder {
        color: #888888;
    }

    .popup-form-group-glass input:focus,
    .popup-form-group-glass textarea:focus {
        outline: none;
        border-color: var(--color-accent-gold);
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15),
            inset 0 2px 4px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }

    .popup-form-group-glass textarea {
        resize: vertical;
        min-height: 100px;
    }

    .popup-submit-btn-glass {
        width: 100%;
        padding: 16px;
        background: var(--color-accent-gold);
        color: #ffffff;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        cursor: pointer;
        font-family: var(--font-primary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        margin-top: 5px;
    }

    .popup-submit-btn-glass:hover {
        background: #E5C547;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    }

    .popup-submit-btn-glass:active {
        transform: translateY(0);
    }

    /* ========================================
    WhatsApp Floating Button & Chat
    ======================================== */

    .whatsapp-float {
        position: fixed;
        left: 30px;
        bottom: 100px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 32px;
        cursor: pointer;
        z-index: 998;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: whatsappPulse 2s ease-in-out infinite;
        overflow: hidden;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-float:active {
        transform: scale(0.95);
    }

    @keyframes whatsappPulse {

        0%,
        100% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }

        50% {
            box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6),
                0 0 0 10px rgba(37, 211, 102, 0.1);
        }
    }

    .whatsapp-chat {
        position: fixed;
        left: 30px;
        bottom: 170px;
        width: 350px;
        max-width: calc(100vw - 60px);
        max-height: 500px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 997;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .whatsapp-chat.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .chat-header {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        padding: 20px;
        border-radius: 15px 15px 0 0;
        color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chat-header-content {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .chat-header i {
        font-size: 40px;
    }

    .chat-header-info h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .chat-header-info span {
        font-size: 12px;
        opacity: 0.9;
    }

    .chat-close {
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 30px;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
        line-height: 1;
    }

    .chat-close:hover {
        transform: rotate(90deg);
    }

    .chat-body {
        flex: 1;
        padding: 20px;
        background: #e5ddd5;
        overflow-y: auto;
        max-height: 350px;
    }

    .chat-message {
        background: #ffffff;
        padding: 12px 15px;
        border-radius: 8px;
        margin-bottom: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        animation: messageSlideIn 0.3s ease-out;
    }

    .chat-message p {
        margin: 0 0 5px 0;
        font-size: 14px;
        color: #333333;
        line-height: 1.4;
    }

    .chat-message p:last-of-type {
        margin-bottom: 8px;
    }

    .chat-time {
        font-size: 11px;
        color: #999999;
        display: block;
        text-align: right;
    }

    @keyframes messageSlideIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .chat-footer {
        padding: 15px;
        background: #f0f0f0;
        border-radius: 0 0 15px 15px;
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .chat-input {
        flex: 1;
        padding: 12px 15px;
        border: 1px solid #dddddd;
        border-radius: 25px;
        font-size: 14px;
        font-family: var(--font-primary);
        outline: none;
        transition: border-color 0.3s ease;
    }

    .chat-input:focus {
        border-color: #25D366;
    }

    .chat-send {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border: none;
        border-radius: 50%;
        color: #ffffff;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    }

    .chat-send:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    }

    .chat-send:active {
        transform: scale(0.95);
    }

    /* ========================================
    Responsive Design
    ======================================== */

    @media (max-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 1100px) {
        .nav-menu {
            gap: 20px;
        }
    }

    @media (max-width: 1010px) {
        .nav-menu {
            gap: 15px;
        }
    }

    @media (max-width: 968px) {
        h2.about-tag {
            font-size: 36px;
        }

        .offer-title {
            font-size: 36px;
        }

        .offer-description {
            font-size: 17px;
        }

        .contact-quote-btn {
            padding: 16px 32px;
            font-size: 16px;
        }

        /* .logo-image {
            height: 50px;
        }

        .footer-logo-image {
            height: 70px;
        } */

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background: rgba(26, 26, 26, 0.98);
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            padding: 30px 0;
            gap: 20px;
        }

        .nav-container {
            padding: 0 15px;
        }

        .popup-modal-glass {
            width: 90%;
            right: 5%;
            padding: 30px 20px;
        }

        .nav-menu.active {
            left: 0;
        }

        .hamburger {
            display: flex;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .hero-container {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 0 20px;
        }

        .hero-content {
            text-align: center;
            max-width: 100%;
        }

        .hero-images {
            height: 500px;
            max-width: 600px;
            margin: 0 auto;
        }

        .hero-image-card {
            width: 220px;
            height: 140px;
        }

        .hero-image-card.card-1 {
            top: 5%;
            left: 0%;
        }

        .hero-image-card.card-2 {
            top: 0%;
            right: 5%;
        }

        .hero-image-card.card-3 {
            top: 30%;
            left: 5%;
        }

        .hero-image-card.card-4 {
            bottom: 20%;
            right: 5%;
        }

        .hero-image-card.card-5 {
            bottom: 5%;
            left: 0%;
        }

        .hero-title {
            font-size: 42px;
        }

        .hero-subtitle {
            font-size: 18px;
        }

        .about-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .about-img-placeholder {
            width: 100%;
            height: auto;
            max-height: 400px;
        }

        .about-img-placeholder img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .upcoming-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .contact-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-content {
            grid-template-columns: repeat(2, 1fr);
        }

        .whatsapp-chat {
            width: 320px;
        }
    }

    @media (max-width: 768px) {
        h2.about-tag {
            font-size: 32px;
        }

        .offer-title {
            font-size: 32px;
        }

        .offer-description {
            font-size: 16px;
        }

        .contact-quote-btn {
            padding: 15px 30px;
            font-size: 15px;
        }

        .whatsapp-float {
            width: 55px;
            height: 55px;
            font-size: 28px;
            left: 20px;
            bottom: 80px;
        }

        .nav-container {
            padding: 0 10px;
        }

        .popup-modal-glass {
            width: 95%;
            right: 2.5%;
            padding: 25px 15px;
        }

        .popup-title-glass {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .whatsapp-chat {
            width: 300px;
            left: 20px;
            bottom: 145px;
            max-height: 450px;
        }

        .chat-header i {
            font-size: 35px;
        }

        .chat-header-info h4 {
            font-size: 15px;
        }

        .hero {
            min-height: 700px;
            padding: 80px 0 40px;
        }

        .hero-container {
            gap: 30px;
        }

        .hero-images {
            height: 400px;
        }

        .hero-image-card {
            width: 180px;
            height: 120px;
        }

        .hero-image-card.card-1 {
            top: 8%;
            left: -5%;
            transform: rotate(6deg);
        }

        .hero-image-card.card-2 {
            top: 2%;
            right: 0%;
            transform: rotate(-10deg);
        }

        .hero-image-card.card-3 {
            top: 35%;
            left: 2%;
            transform: rotate(8deg);
        }

        .hero-image-card.card-4 {
            bottom: 25%;
            right: 2%;
            transform: rotate(-6deg);
        }

        .hero-image-card.card-5 {
            bottom: 8%;
            left: -3%;
            transform: rotate(12deg);
        }

        .hero-title {
            font-size: 32px;
        }

        .hero-subtitle {
            font-size: 16px;
        }

        .section-title {
            font-size: 32px;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .products-grid {
            grid-template-columns: 1fr;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .upcoming-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
        }

        .nav-quote-btn {
            padding: 10px 20px;
            font-size: 14px;
        }

        .offers-title {
            font-size: 28px;
        }
    }

    @media (max-width: 480px) {
        .nav-container {
            padding: 0 15px;
        }
    }

    @media (max-width: 375px) {
        .nav-container {
            padding: 0 10px;
        }

        .logo-image {
            height: 35px;
        }

        .nav-logo p {
            font-size: 7px;
        }
    }

    @media (max-width: 480px) {
        .whatsapp-float {
            width: 50px;
            height: 50px;
            font-size: 26px;
            left: 15px;
            bottom: 70px;
        }

        .nav-container {
            padding: 0 10px;
        }

        .popup-modal-glass {
            width: 98%;
            right: 1%;
            padding: 20px 10px;
        }

        .popup-title-glass {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .popup-form-group-glass input,
        .popup-form-group-glass textarea {
            padding: 12px 15px;
            font-size: 14px;
        }

        .popup-submit-btn-glass {
            padding: 14px;
            font-size: 14px;
        }

        .whatsapp-chat {
            width: calc(100% - 30px);
            left: 15px;
            right: 15px;
            bottom: 130px;
            max-height: 400px;
        }

        .chat-header {
            padding: 15px;
        }

        .chat-header i {
            font-size: 32px;
        }

        .chat-header-info h4 {
            font-size: 14px;
        }

        .chat-header-info span {
            font-size: 11px;
        }

        .chat-close {
            font-size: 26px;
        }

        .chat-body {
            padding: 15px;
        }

        .chat-message p {
            font-size: 13px;
        }

        .chat-input {
            font-size: 13px;
            padding: 10px 12px;
        }

        .chat-send {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .slider-row {
            height: 120px;
        }

        .slider-item {
            width: 200px;
            height: 120px;
            padding: 5px;
        }

        .hero {
            min-height: 800px;
        }

        .hero-images {
            height: 350px;
            display: none;
        }

        .hero-content {
            text-align: center;
        }

        .hero-title {
            font-size: 28px;
        }

        .hero-subtitle {
            font-size: 15px;
        }

        .section-title {
            font-size: 28px;
        }

        h2.about-tag {
            font-size: 28px;
        }

        .offer-title {
            font-size: 28px;
        }

        .offer-description {
            font-size: 15px;
        }

        .contact-quote-btn {
            padding: 14px 28px;
            font-size: 14px;
        }

        .about-img-placeholder {
            width: 350px;
            height: 350px;
        }

        .experience-badge {
            padding: 20px 25px;
        }

        .badge-number {
            font-size: 36px;
        }

        .contact-form {
            padding: 25px;
        }

        .scroll-to-top {
            width: 45px;
            height: 45px;
            font-size: 20px;
            bottom: 20px;
            right: 20px;
        }
    }

    @media (max-width: 400px) {
        .nav-container {
            padding: 0 15px;
        }

        .logo-image {
            height: 20px;
        }

        .nav-logo p {
            font-size: 7px;
        }

        .footer-logo-image {
            height: 48px;
        }

        .footer-logo p {
            font-size: 8px;
        }

        .popup-modal-glass {
            width: calc(100% - 24px);
            right: 12px;
            left: 12px;
            padding: 28px 18px;
        }

        .popup-title-glass {
            font-size: 19px;
        }

        .popup-form-group-glass input,
        .popup-form-group-glass textarea {
            padding: 12px 14px;
            font-size: 13px;
        }

        .popup-submit-btn-glass {
            padding: 12px;
            font-size: 13px;
        }

        .whatsapp-float {
            width: 48px;
            height: 48px;
            font-size: 25px;
            left: 12px;
            bottom: 65px;
        }

        .whatsapp-chat {
            width: calc(100% - 24px);
            left: 12px;
            right: 12px;
            bottom: 120px;
            max-height: 380px;
        }

        .chat-header {
            padding: 13px;
        }

        .chat-body {
            padding: 13px;
        }

        .chat-footer {
            padding: 13px;
        }

        .container {
            padding: 0 15px;
        }

        .nav-container {
            padding: 0 15px;
        }

        .logo-text {
            font-size: 18px;
        }

        .logo-icon {
            width: 35px;
            height: 35px;
            font-size: 20px;
        }

        .nav-quote-btn {
            padding: 8px 15px;
            font-size: 12px;
        }

        .hero {
            min-height: 600px;
            padding: 60px 0 30px;
        }

        .hero-title {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .hero-subtitle {
            font-size: 14px;
            margin-bottom: 25px;
        }

        .hero-cta {
            padding: 14px 30px;
            font-size: 14px;
        }

        h2.about-tag {
            font-size: 24px;
        }

        .offer-title {
            font-size: 24px;
        }

        .offer-description {
            font-size: 14px;
        }

        .contact-quote-btn {
            padding: 12px 25px;
            font-size: 13px;
        }

        .section-header {
            margin-bottom: 40px;
        }

        .section-label {
            font-size: 11px;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .section-description {
            font-size: 14px;
        }

        .about {
            padding: 60px 0;
        }

        .about-img-placeholder {
            width: 280px;
            height: 280px;
        }

        .experience-badge {
            padding: 15px 20px;
            bottom: 15px;
            left: 15px;
        }

        .badge-number {
            font-size: 32px;
        }

        .badge-text {
            font-size: 12px;
        }

        .about-intro {
            font-size: 18px;
        }

        .about-text p {
            font-size: 14px;
        }

        .feature-item {
            gap: 15px;
        }

        .feature-icon {
            width: 35px;
            height: 35px;
            font-size: 18px;
        }

        .feature-text h4 {
            font-size: 16px;
        }

        .feature-text p {
            font-size: 13px;
        }

        .offers {
            padding: 60px 0;
        }

        .offers-title {
            font-size: 24px;
        }

        .offers-description {
            font-size: 14px;
        }

        .offers-btn {
            padding: 12px 30px;
            font-size: 14px;
        }

        .gallery {
            padding: 60px 0;
        }

        .gallery-item {
            height: 250px;
        }

        .gallery-title {
            font-size: 20px;
        }

        .gallery-subtitle,
        .price,
        .thickness {
            font-size: 12px;
        }

        .products {
            padding: 60px 0;
        }

        .product-card {
            margin-bottom: 20px;
        }

        .product-image {
            height: 200px;
        }

        .product-name {
            font-size: 18px;
        }

        .product-description {
            font-size: 13px;
        }

        .product-btn {
            padding: 10px;
            font-size: 12px;
        }

        .services {
            padding: 60px 0;
        }

        .service-card {
            padding: 30px 20px;
        }

        .service-icon {
            font-size: 40px;
        }

        .service-title {
            font-size: 18px;
        }

        .service-description {
            font-size: 13px;
        }

        .upcoming {
            padding: 60px 0;
        }

        .upcoming-image {
            height: 250px;
        }

        .upcoming-title {
            font-size: 20px;
        }

        .upcoming-description {
            font-size: 13px;
        }

        .contact {
            padding: 60px 0 30px;
        }

        .contact-content {
            margin-top: 40px;
            gap: 30px;
        }

        .contact-item {
            gap: 15px;
            padding-left: 20px;
        }

        .contact-icon {
            font-size: 28px;
        }

        .contact-icon i {
            font-size: 28px;
        }

        .contact-details h4 {
            font-size: 18px;
        }

        .contact-details p {
            font-size: 14px;
        }

        .contact-form {
            padding: 30px 20px;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px;
            font-size: 14px;
        }

        .form-submit-btn {
            padding: 12px;
            font-size: 14px;
        }

        .map-placeholder {
            height: 200px;
            margin-top: 20px;
        }

        .footer {
            padding: 40px 0 15px;
        }

        .footer-content {
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-title {
            font-size: 16px;
        }

        .footer-links a,
        .footer-contact li {
            font-size: 13px;
        }

        .footer-description {
            font-size: 13px;
        }

        .social-link {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }

        .slider-row {
            height: 100px;
        }

        .slider-item {
            width: 150px;
            height: 100px;
            padding: 5px;
        }
    }

    @media (max-width: 300px) {
        .nav-container {
            padding: 0 10px;
        }

        .logo-image {
            height: 28px;
        }

        .nav-logo p {
            font-size: 6px;
        }

        .footer-logo-image {
            height: 45px;
        }

        .footer-logo p {
            font-size: 7px;
        }

        .popup-modal-glass {
            width: calc(100% - 20px);
            right: 10px;
            left: 10px;
            padding: 25px 15px;
            border-radius: 15px;
        }

        .about-img-placeholder {
            width: calc(100% - 20px);
            max-height: 200px;
        }

        .popup-title-glass {
            font-size: 17px;
            margin-bottom: 18px;
            letter-spacing: 1px;
        }

        .popup-close-glass {
            width: 28px;
            height: 28px;
            font-size: 22px;
            top: 10px;
            right: 10px;
        }

        .popup-form-glass {
            gap: 12px;
        }

        .popup-form-group-glass input,
        .popup-form-group-glass textarea {
            padding: 11px 12px;
            font-size: 12px;
        }

        .popup-submit-btn-glass {
            padding: 11px;
            font-size: 12px;
            letter-spacing: 0.5px;
        }

        .whatsapp-float {
            width: 45px;
            height: 45px;
            font-size: 24px;
            left: 10px;
            bottom: 60px;
        }

        .whatsapp-chat {
            width: calc(100% - 20px);
            left: 10px;
            right: 10px;
            bottom: 115px;
            max-height: 350px;
        }

        .chat-header {
            padding: 12px;
        }

        .chat-header i {
            font-size: 28px;
        }

        .chat-header-info h4 {
            font-size: 13px;
        }

        .chat-header-info span {
            font-size: 10px;
        }

        .chat-close {
            font-size: 24px;
            width: 25px;
            height: 25px;
        }

        .chat-body {
            padding: 12px;
            max-height: 250px;
        }

        .chat-message {
            padding: 10px 12px;
        }

        .chat-message p {
            font-size: 12px;
        }

        .chat-time {
            font-size: 10px;
        }

        .chat-footer {
            padding: 12px;
            gap: 8px;
        }

        .chat-input {
            font-size: 12px;
            padding: 8px 10px;
        }

        .chat-send {
            width: 38px;
            height: 38px;
            font-size: 14px;
        }

        .container {
            padding: 0 10px;
        }

        .nav-container {
            padding: 0 10px;
        }

        .logo-text {
            font-size: 16px;
        }

        .logo-icon {
            width: 30px;
            height: 30px;
            font-size: 18px;
        }

        .nav-quote-btn {
            padding: 6px 12px;
            font-size: 11px;
        }

        .hero {
            min-height: 500px;
            padding: 50px 0 20px;
        }

        .hero-container {
            padding: 0 10px;
        }

        .hero-title {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .hero-subtitle {
            font-size: 13px;
            margin-bottom: 20px;
        }

        .hero-cta {
            padding: 12px 25px;
            font-size: 13px;
        }

        .section-label {
            font-size: 10px;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 20px;
        }

        .section-description {
            font-size: 13px;
        }

        .about {
            padding: 50px 0;
        }

        .about-img-placeholder {
            width: 250px;
            height: 250px;
        }

        .experience-badge {
            padding: 12px 15px;
            bottom: 10px;
            left: 10px;
        }

        .badge-number {
            font-size: 28px;
        }

        .badge-text {
            font-size: 11px;
        }

        .about-intro {
            font-size: 16px;
        }

        .about-text p {
            font-size: 13px;
        }

        .feature-icon {
            width: 30px;
            height: 30px;
            font-size: 16px;
        }

        .feature-text h4 {
            font-size: 15px;
        }

        .feature-text p {
            font-size: 12px;
        }

        .offers {
            padding: 50px 0;
        }

        .offers-title {
            font-size: 20px;
        }

        .offers-description {
            font-size: 13px;
        }

        .offers-btn {
            padding: 10px 25px;
            font-size: 13px;
        }

        .gallery {
            padding: 50px 0;
        }

        .gallery-item {
            height: 200px;
        }

        .gallery-title {
            font-size: 18px;
        }

        .gallery-subtitle,
        .price,
        .thickness {
            font-size: 11px;
        }

        .products {
            padding: 50px 0;
        }

        .product-image {
            height: 180px;
        }

        .product-name {
            font-size: 16px;
        }

        .product-description {
            font-size: 12px;
        }

        .product-btn {
            padding: 8px;
            font-size: 11px;
        }

        .services {
            padding: 50px 0;
        }

        .service-card {
            padding: 25px 15px;
        }

        .service-icon {
            font-size: 36px;
        }

        .service-title {
            font-size: 16px;
        }

        .service-description {
            font-size: 12px;
        }

        .upcoming {
            padding: 50px 0;
        }

        .upcoming-image {
            height: 200px;
        }

        .upcoming-title {
            font-size: 18px;
        }

        .upcoming-description {
            font-size: 12px;
        }

        .contact {
            padding: 50px 0 20px;
        }

        .contact-content {
            margin-top: 30px;
            gap: 25px;
        }

        .contact-item {
            gap: 12px;
            padding-left: 10px;
        }

        .contact-icon {
            font-size: 24px;
        }

        .contact-icon i {
            font-size: 24px;
        }

        .contact-details h4 {
            font-size: 16px;
        }

        .contact-details p {
            font-size: 13px;
        }

        .contact-form {
            padding: 25px 15px;
        }

        .form-group input,
        .form-group textarea {
            padding: 10px;
            font-size: 13px;
        }

        .form-submit-btn {
            padding: 10px;
            font-size: 13px;
        }

        .map-placeholder {
            height: 180px;
            margin-top: 15px;
        }

        .footer {
            padding: 30px 0 10px;
        }

        .footer-content {
            gap: 25px;
            margin-bottom: 25px;
        }

        .footer-title {
            font-size: 15px;
        }

        .footer-links a,
        .footer-contact li {
            font-size: 12px;
        }

        .footer-description {
            font-size: 12px;
        }

        .social-link {
            width: 32px;
            height: 32px;
            font-size: 12px;
        }

        .slider-row {
            height: 80px;
        }

        .slider-item {
            width: 120px;
            height: 80px;
            padding: 3px;
        }

        .scroll-to-top {
            width: 40px;
            height: 40px;
            font-size: 18px;
            bottom: 15px;
            right: 15px;
        }

        .product-content {
            padding: 18px;
        }

        .service-card {
            padding: 20px 12px;
        }

        .upcoming-content {
            padding: 18px;
        }

        .contact-form {
            padding: 20px 12px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px 14px;
            font-size: 13px;
        }

        .form-submit-btn {
            padding: 12px;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .footer-logo {
            margin-bottom: 15px;
        }

        .footer-section {
            margin-bottom: 20px;
        }

        .experience-badge {
            padding: 10px 12px;
            bottom: 8px;
            left: 8px;
        }

        .badge-number {
            font-size: 24px;
        }

        .badge-text {
            font-size: 10px;
        }

        .gallery-overlay {
            padding: 20px 15px;
        }

        .product-badge,
        .coming-soon-badge {
            padding: 4px 12px;
            font-size: 10px;
        }

        .nav-link {
            font-size: 14px;
        }

        .offers-content {
            padding: 0 10px;
        }

        .scroll-indicator {
            font-size: 10px;
        }

        .scroll-indicator span {
            display: none;
        }

        .scroll-arrow {
            width: 16px;
            height: 16px;
        }

        h2.about-tag {
            font-size: 20px;
        }

        .offer-title {
            font-size: 20px;
        }

        .offer-description {
            font-size: 13px;
        }

        .contact-quote-btn {
            padding: 10px 20px;
            font-size: 12px;
        }
    }

    /* ========================================
    Careers Page Styles
    ======================================== */

    .careers-hero {
        position: relative;
        height: 60vh;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('../images/Lemurian.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        overflow: hidden;
    }

    .careers-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.65);
        z-index: 1;
    }

    .careers-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 20px;
    }

    .careers-hero-title {
        font-size: 64px;
        font-weight: 800;
        color: var(--color-text-light);
        margin-bottom: 15px;
        font-family: var(--font-primary);
        letter-spacing: 1px;
        text-transform: capitalize;
    }

    .careers-breadcrumb {
        font-size: 16px;
        font-weight: 600;
        color: var(--color-accent-gold);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: var(--font-primary);
    }

    .careers-content {
        padding: 120px 0;
        background: linear-gradient(135deg,
                rgba(123, 193, 182, 0.15) 0%,
                rgba(245, 245, 240, 0.3) 50%,
                rgba(255, 252, 245, 0.5) 100%);
        position: relative;
        overflow: hidden;
    }

    .careers-content::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 40%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.3) 0%,
                rgba(240, 240, 240, 0.2) 100%);
        clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
        pointer-events: none;
    }

    .careers-content::after {
        content: '';
        position: absolute;
        right: 5%;
        top: 15%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle,
                rgba(212, 175, 55, 0.08) 0%,
                transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .careers-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .careers-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .careers-text-content {
        max-width: 900px;
    }

    .careers-image-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .careers-image-content img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .careers-label-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .careers-label {
        font-size: 14px;
        font-weight: 700;
        color: #17a2b8;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-family: var(--font-primary);
    }

    .careers-label-line {
        width: 60px;
        height: 2px;
        background: var(--color-accent-gold);
    }

    .careers-title {
        font-size: 54px;
        font-weight: 800;
        color: var(--color-text-dark);
        margin-bottom: 30px;
        font-family: var(--font-primary);
        line-height: 1.2;
    }

    .careers-company {
        color: #17a2b8;
    }

    .careers-description {
        font-size: 18px;
        line-height: 1.8;
        color: var(--color-text-dark);
        font-family: var(--font-secondary);
        max-width: 800px;
        opacity: 0.9;
    }

    /* Responsive Careers Page */
    @media (max-width: 968px) {
        .careers-hero {
            height: 50vh;
            min-height: 350px;
        }

        .careers-hero-title {
            font-size: 48px;
        }

        .careers-breadcrumb {
            font-size: 14px;
        }

        .careers-content {
            padding: 80px 0;
        }

        .careers-layout {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .careers-title {
            font-size: 42px;
        }

        .careers-description {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .careers-hero {
            height: 45vh;
            min-height: 300px;
        }

        .careers-hero-title {
            font-size: 38px;
        }

        .careers-breadcrumb {
            font-size: 13px;
        }

        .careers-content {
            padding: 60px 0;
        }

        .careers-layout {
            gap: 25px;
        }

        .careers-title {
            font-size: 36px;
        }

        .careers-description {
            font-size: 15px;
        }

        .careers-content::before {
            width: 50%;
        }
    }

    @media (max-width: 480px) {
        .careers-hero {
            height: 40vh;
            min-height: 280px;
        }

        .careers-hero-title {
            font-size: 32px;
        }

        .careers-breadcrumb {
            font-size: 12px;
        }

        .careers-content {
            padding: 50px 0;
        }

        .careers-layout {
            gap: 20px;
        }

        .careers-label {
            font-size: 12px;
        }

        .careers-label-line {
            width: 40px;
        }

        .careers-title {
            font-size: 28px;
        }

        .careers-description {
            font-size: 14px;
            line-height: 1.7;
        }
    }

    @media (max-width: 300px) {
        .careers-hero-title {
            font-size: 26px;
        }

        .careers-title {
            font-size: 24px;
        }

        .careers-description {
            font-size: 13px;
        }
    }

    /* Careers Opportunities Section */
    .careers-opportunities {
        padding: 100px 0;
        background-color: #f8f9fa;
    }

    .careers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .career-card {
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .career-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .career-content {
        padding: 25px;
    }

    .career-title {
        font-size: 22px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        font-family: var(--font-primary);
    }

    .career-description {
        font-size: 16px;
        line-height: 1.6;
        color: #666;
        font-family: var(--font-secondary);
    }

    .no-careers {
        grid-column: 1 / -1;
        text-align: center;
        padding: 50px 20px;
    }

    .no-careers p {
        font-size: 18px;
        color: #666;
        font-family: var(--font-secondary);
    }

    .no-careers a {
        color: var(--color-accent-gold);
        text-decoration: none;
        font-weight: 600;
    }

    .no-careers a:hover {
        text-decoration: underline;
    }

    /* Career Apply Button */
    .career-actions {
        padding: 0 25px 25px;
    }

    .career-apply-btn {
        display: inline-block;
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding: 12px 30px;
        border-radius: 5px;
        transition: var(--transition);
        box-shadow: var(--shadow-glow);
        text-align: center;
        border: none;
        cursor: pointer;
        font-family: var(--font-primary);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .career-apply-btn:hover {
        background: #E5C547;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }

    .career-apply-btn:active {
        transform: translateY(0);
    }

    /* Career Cancel Button */
    .career-cancel-btn {
        display: inline-block;
        background: #6c757d;
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding: 12px 30px;
        border-radius: 5px;
        transition: var(--transition);
        text-align: center;
        border: none;
        cursor: pointer;
        font-family: var(--font-primary);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-left: 10px;
    }

    .career-cancel-btn:hover {
        background: #5a6268;
        transform: translateY(-2px);
    }

    .career-cancel-btn:active {
        transform: translateY(0);
    }

    /* Career Application Form */
    .career-application-form {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 30px;
    }

    .career-application-form .form-group {
        margin-bottom: 20px;
    }

    .career-application-form label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
        font-family: var(--font-primary);
    }

    .career-application-form input,
    .career-application-form textarea,
    .career-application-form select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: var(--font-secondary);
        font-size: 16px;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .career-application-form input:focus,
    .career-application-form textarea:focus,
    .career-application-form select:focus {
        outline: none;
        border-color: var(--color-accent-gold);
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }

    .career-application-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    .career-application-form small {
        display: block;
        color: #666;
        margin-top: 5px;
        font-size: 14px;
    }

    .career-application-form .form-actions {
        margin-top: 30px;
        text-align: center;
    }

    .career-application-form .form-control {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: var(--font-secondary);
        font-size: 16px;
        color: #333;
        background-color: #fff;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .career-application-form .form-control:focus {
        outline: none;
        border-color: var(--color-accent-gold);
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        color: #333;
        background-color: #fff;
    }

    .career-application-form textarea.form-control {
        min-height: 120px;
        resize: vertical;
        color: #333;
        background-color: #fff;
    }

    .career-application-form .alert-danger {
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        color: #721c24;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .career-application-form .alert-danger ul {
        margin: 0;
        padding-left: 20px;
    }

    .career-application-form .alert-danger li {
        margin-bottom: 5px;
    }

    .career-application-form input[type="text"],
    .career-application-form input[type="email"],
    .career-application-form input[type="tel"],
    .career-application-form input[type="file"],
    .career-application-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: var(--font-secondary);
        font-size: 16px;
        color: #333;
        background-color: #fff;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .career-application-form input[type="text"]:focus,
    .career-application-form input[type="email"]:focus,
    .career-application-form input[type="tel"]:focus,
    .career-application-form input[type="file"]:focus,
    .career-application-form textarea:focus {
        outline: none;
        border-color: var(--color-accent-gold);
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        color: #333;
        background-color: #fff;
    }

    .career-application-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    /* Enhanced Career Form Styles */
    .career-form {
        margin-top: 20px;
    }

    .career-form-group {
        margin-bottom: 25px;
    }

    .career-form-label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
        font-family: var(--font-primary);
    }

    .career-form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: var(--font-secondary);
        font-size: 16px;
        color: #333;
        background-color: #fff;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .career-form-control:focus {
        outline: none;
        border-color: var(--color-accent-gold);
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }

    .career-form-file {
        padding: 10px;
    }

    .career-form-textarea {
        min-height: 150px;
        resize: vertical;
    }

    .career-form-help {
        display: block;
        color: #666;
        margin-top: 5px;
        font-size: 14px;
    }

    .career-form-alert {
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        color: #721c24;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .career-form-alert.alert-success {
        background-color: #d4edda;
        border-color: #c3e6cb;
        color: #155724;
    }

    .career-form-error-list {
        margin: 0;
        padding-left: 20px;
    }

    .career-form-actions {
        margin-top: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .career-form-submit,
    .career-form-cancel {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    @media (min-width: 768px) {
        .career-form-actions {
            flex-direction: row;
            justify-content: center;
        }
        
        .career-form-submit,
        .career-form-cancel {
            width: auto;
        }
    }

    @media (max-width: 768px) {
        .career-application-form {
            padding: 20px;
        }
        
        .career-application-form input,
        .career-application-form textarea,
        .career-application-form select {
            font-size: 14px;
            color: #333;
            background-color: #fff;
        }
        
        .career-application-form .form-control {
            font-size: 14px;
            color: #333;
            background-color: #fff;
        }
        
        .career-application-form label {
            font-size: 14px;
        }
        
        .career-form-label {
            font-size: 14px;
        }
        
        .career-form-control {
            font-size: 14px;
            padding: 10px 12px;
            color: #333;
            background-color: #fff;
        }
        
        .career-form-textarea {
            min-height: 120px;
        }
        
        .career-apply-btn,
        .career-cancel-btn {
            font-size: 15px;
            padding: 10px 25px;
            display: block;
            width: 100%;
            margin-bottom: 10px;
        }
        
        .career-cancel-btn {
            margin-left: 0;
        }
    }

    @media (max-width: 480px) {
        .career-application-form {
            padding: 15px;
        }
        
        .career-application-form input,
        .career-application-form textarea,
        .career-application-form select {
            font-size: 13px;
            color: #333;
            background-color: #fff;
        }
        
        .career-application-form .form-control {
            font-size: 13px;
            color: #333;
            background-color: #fff;
        }
        
        .career-application-form label {
            font-size: 13px;
        }
        
        .career-form-label {
            font-size: 13px;
        }
        
        .career-form-control {
            font-size: 13px;
            padding: 8px 10px;
            color: #333;
            background-color: #fff;
        }
        
        .career-form-textarea {
            min-height: 100px;
        }
        
        .career-form-help {
            font-size: 12px;
        }
        
        .career-apply-btn,
        .career-cancel-btn {
            font-size: 14px;
            padding: 8px 20px;
        }
    }

    /* Responsive Careers Grid */
    @media (max-width: 992px) {
        .careers-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .careers-opportunities {
            padding: 80px 0;
        }
        
        .careers-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .career-content {
            padding: 20px;
        }
        
        .career-title {
            font-size: 20px;
        }
        
        .career-description {
            font-size: 15px;
        }
        
        .career-actions {
            padding: 0 20px 20px;
        }
        
        .career-apply-btn {
            font-size: 15px;
            padding: 10px 25px;
        }
    }

    @media (max-width: 480px) {
        .careers-opportunities {
            padding: 60px 0;
        }
        
        .careers-grid {
            gap: 20px;
        }
        
        .career-image {
            height: 180px;
        }
        
        .career-content {
            padding: 15px;
        }
        
        .career-title {
            font-size: 18px;
            margin-bottom: 12px;
        }
        
        .career-description {
            font-size: 14px;
        }
        
        .no-careers {
            padding: 30px 15px;
        }
        
        .no-careers p {
            font-size: 16px;
        }
        
        .career-actions {
            padding: 0 15px 15px;
        }
        
        .career-apply-btn {
            font-size: 14px;
            padding: 8px 20px;
            width: 100%;
            display: block;
        }
    }
    /* granite details page css */
    /* Product Details Section */

    .product-details-section {
        padding: 60px 0;
        background-image: url(../images/sp.jpeg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .back-button-container {
        margin-bottom: 20px;
    }

    .back-btn-custom {
        border-radius: 30px;
        font-size: 14px;
        padding: 8px 18px;
    }

    .product-main-row {
        align-items: stretch;
        margin-bottom: 40px;
    }

    /* Image Side */

    .product-image-wrapper {
        background: #ffffff;
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-image-main {
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid #e3e3e8;
        background: #fafafa;
    }

    .product-image-main img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

    .product-image-note {
        font-size: 12px;
        color: #777;
        margin-top: 10px;
    }

    /* Details Side */

    .product-info-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 24px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-header {
        margin-bottom: 20px;
    }

    .product-badge {
        display: inline-block;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 4px 10px;
        border-radius: 999px;
        background: #f1f3ff;
        color: #3949ab;
        margin-bottom: 6px;
    }

    .product-title {
        font-size: 26px;
        font-weight: 700;
        color: #222;
        margin: 0;
    }

    .product-price-row {
        display: flex;
        align-items: baseline;
        gap: 12px;
        margin-bottom: 18px;
    }

    .price-label {
        font-size: 14px;
        color: #777;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .price-value {
        font-size: 20px;
        font-weight: 700;
        color: #2e7d32;
    }

    /* Meta info */

    .product-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 22px;
    }

    .meta-item {
        background: #f7f8fc;
        border-radius: 12px;
        padding: 10px 14px;
        min-width: 120px;
    }

    .meta-label {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        color: #888;
        letter-spacing: 0.5px;
    }

    .meta-value {
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }

    /* Enquiry Box */

    .enquiry-box {
        border-radius: 16px;
        background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
        padding: 18px;
        border: 1px solid #c8e6c9;
        margin-top: 10px;
    }

    .enquiry-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #2e7d32;
    }

    .enquiry-text {
        font-size: 13px;
        color: #555;
        margin-bottom: 12px;
    }

    .enquiry-btn {
        border-radius: 999px;
        font-weight: 600;
        font-size: 14px;
        padding: 8px 20px;
    }

    /* Extra Info Row */

    .product-extra-row {
        align-items: stretch;
    }

    .product-description-card,
    .product-features-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
        height: 100%;
    }

    .extra-heading {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #333;
    }

    .product-description-card p {
        font-size: 14px;
        color: #555;
        line-height: 1.7;
    }

    .feature-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .feature-list li {
        font-size: 14px;
        color: #555;
        padding-left: 18px;
        position: relative;
        margin-bottom: 8px;
    }

    .feature-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0;
        color: #2e7d32;
    }

    /* Not Found */

    .product-not-found {
        text-align: center;
        padding: 40px 0;
    }

    /* Responsive */

    @media (max-width: 991px) {
        .product-main-row {
            margin-top: 10px;
        }

        .product-info-card {
            margin-top: 20px;
        }
    }

    @media (max-width: 767px) {
        .product-details-section {
            padding: 40px 0;
        }

        .product-title {
            font-size: 22px;
        }

        .product-info-card,
        .product-image-wrapper {
            padding: 16px;
        }
    }

    /* ========================================
    Not Found Page
    ======================================== */

    .not-found {
        padding: 100px 0;
        text-align: center;
        background: #f8f9fa;
    }

    .not-found-content h1 {
        font-size: 100px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
    }

    .not-found-content h2 {
        font-size: 36px;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }

    .not-found-content p {
        font-size: 18px;
        color: #666;
        margin-bottom: 30px;
    }

    .btn-primary {
        background: var(--color-accent-gold);
        color: var(--color-text-dark);
        border: none;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 5px;
        text-decoration: none;
        display: inline-block;
        transition: var(--transition);
    }

    .btn-primary:hover {
        background: #E5C547;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
