﻿
* {
    font-family: 'Montserrat', sans-serif;
}
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
   
    font-family: 'Montserrat', sans-serif;
}

 

/* header and side menu styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 2000;
    transition: all 0.3s ease;
}
   
    .top-bar.shrink {
        padding: 6px 25px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }

        
        .top-bar.shrink .brand-box img {
            height: 22px;
        }

        .top-bar.shrink .brand-box span {
            font-size: 13px;
        }

.brand-box {
    display: flex;
    align-items: center;
    padding: 6px 12px;
}

    .brand-box img {
        height: 100px;
        width: 130px;
    }

   
    .brand-box span {
        display: none;
    }

    @media (max-width: 992px) {
    .brand-box img {
        height: 80px;
        width: 120px; 
    }
}


.menu-icon {
    display: none;
}


.desktop-nav {
    display: flex;
    gap: 25px;
    margin-right: 20px;
    align-items: center;
}

    .desktop-nav a {
        color: black;
        text-decoration: none;
        font-size: 16px;
        transition: 0.3s;
    }

        .desktop-nav a:hover {
            color: #f53f33; 
        }


@media (max-width: 992px) {
    
    .desktop-nav {
        display: none;
    }

    
    .menu-icon {
        display: block;
    }
}

#sideMenu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: #303231;
    padding: 30px 20px;
    box-sizing: border-box;
    transition: right 0.3s ease;
   
    z-index: 10000 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-icon {
    display: none;
    z-index: 3001 !important;
    cursor: pointer;
}

/* @media (max-width: 992px) {
    .menu-icon {
        display: block !important; 
    }
} */

.close-btn {
    font-size: 52px;
    color: white;
    cursor: pointer;
    text-align: right;
}

.menu-logo {
    width: 140px;
    display: block;
    margin: 20px auto 30px;
}

#sideMenu a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 18px 0;
    font-size: 18px;
}

    #sideMenu a:hover {
        color: #e8e2ab;
        padding-left: 10px;
        transition: 0.3s ease;
    }
/* header and side menu styles ends */



.hero {
    background-image: linear-gradient( rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55) ), url('../images/hero-banner.png');
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    color: white;
}

    .hero h1 {
        font-size: 36px;
        max-width: 700px;
    }

    .hero p {
        /* max-width: 950px; */
        font-size: 16px;
        line-height: 1.6;
    }

.hero-caption {
    margin-top: 10px;
    opacity: 0.9;
}

.footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top:0px;
    font-size: 14px;
}

section {
    margin-bottom: 40px;
}


@media (max-width: 768px) {
    .hero {
        padding: 0 30px;
        height: 60vh;
    }

        .hero h1 {
            font-size: 28px;
        }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* new export process design */

:root {
    --glass-primary: #1e293b;
    --glass-accent: #059669;
    --glass-bg: #f8fafc;
    --glass-border: rgba(0, 0, 0, 0.06);
}

.glass-process-section {
    padding: 100px 20px;
    background-color: var(--glass-bg);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.glass-container {
    max-width: 1200px;
    margin: 0 auto;
}

.glass-header {
    text-align: center;
    margin-bottom: 80px;
}

.glass-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--glass-accent);
}

.glass-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--glass-primary);
    margin-top: 10px;
}

.glass-columns {
    display: flex;
    background: #ffffff;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid #fff;
}

.glass-col {
    flex: 1;
    padding: 60px 40px;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 30px;
}

/* Vertical Separator Lines for Desktop */
.glass-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--glass-border);
}

.glass-icon-box {
    width: 48px;
    height: 48px;
    color: var(--glass-primary);
    margin-bottom: 30px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-step {
    font-size: 12px;
    font-weight: 700;
    color: var(--glass-accent);
    background: #ecfdf5;
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 15px;
}

.glass-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--glass-primary);
    margin-bottom: 12px;
}

.glass-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Hover State */
.glass-col:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    transform: translateY(-5px);
    z-index: 10;
}

.glass-col:hover .glass-icon-box {
    color: var(--glass-accent);
    transform: scale(1.15) rotate(5deg);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .glass-columns {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 20px;
    }

    .glass-col {
        background: #ffffff;
        border: 1px solid var(--glass-border);
        padding: 40px;
    }

    .glass-col::after {
        display: none;
    }
}


/* new export process design */



.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: #ffffff; 
    padding: 30px 20px;
    text-align: center; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #1E392A; 
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: 0.3s ease; 
}

    .feature-card:hover {
        transform: translateY(-5px); 
        box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
    }
.header-right {
    display: flex;
    align-items: center;
    gap: 25px; 
    position: relative;
}

.desktop-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; 
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

    .whatsapp-float img {
        width: 35px;
        height: 35px;
    }

    .whatsapp-float:hover {
        transform: scale(1.1); 
        background-color: #20ba5a;
    }


@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

.map-link-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}


.map-icon {
    width: 24px;
    height: auto;
    margin-top: 3px;
}


.map-link-container a {
    color: #1A3020;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

    .map-link-container a:hover {
        color: #c5a059; 
        text-decoration: underline;
    }

@media (max-width: 768px) {
   
    .desktop-nav {
        display: none !important;
    }

    .menu-icon {
        display: block !important;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }

    
    .contact-info-box {
        width: 90vw;
        right: 5vw;
        left: 5vw;
        min-width: unset;
        top: 60px;
    }

    
    .hero h1 {
        font-size: 24px;
    }

    .hero {
        padding: 0 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
   
    .desktop-nav {
        display: none !important;
    }

    .menu-icon {
        display: block !important;
        font-size: 28px;
        color: black;
        cursor: pointer;
    }

  
    .contact-info-box {
        width: 90vw;
        right: 5vw;
        left: 5vw;
        min-width: unset;
        top: 60px;
    }

    
    .hero h1 {
        font-size: 24px;
    }

    .hero {
        padding: 0 20px;
        text-align: center;
    }
}

.about-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-banner.png');
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

    .about-hero h1 {
        font-size: 48px;
        margin: 0;
    }

    .about-hero p {
        font-size: 14px;
        letter-spacing: 2px;
    }



/* Container & Layout */
.about-story {
    padding: 80px 10%;
    background-color: #ffffff;
    overflow: hidden;
}

.about-flex {
    display: flex;
    align-items: flex-start; 
    gap: 60px;
    flex-wrap: wrap; 
}

/* Image Gallery Section */
.about-image-box {
    flex: 1;
    min-width: 320px;
    max-width: 550px;
}

.main-image-display img {
    width: 100%;
    height: 400px; 
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}

/* Thumbnail Grid */
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 10px;
    margin-top: 15px;
}

.thumbnail-grid img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    border: 2px solid transparent;
}

.thumbnail-grid img:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Text Content Section */
.about-text {
    flex: 1;
    min-width: 320px;
}

.sub-tag {
    color: #1E392A;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: clamp(28px, 5vw, 42px);
    color: #1A3020;
    margin: 15px 0 25px;
    line-height: 1.2;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px; 
    font-size: 16px;
}

.view-products-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1A3020;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.view-products-btn:hover {
    background-color: #e8e2ab;
    color: #1A3020;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 992px) {
    .about-story {
        padding: 60px 5%;
    }
    .about-flex {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-flex {
        flex-direction: column; 
        align-items: center;
    }

    .about-image-box, .about-text {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }

    .about-text {
        text-align: center; 
    }

    .main-image-display img {
        height: 300px; 
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr); 
    }
}


.video-split-section {
    padding: 80px 10%;
    background-color: #ffffff;
}

.video-split-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.video-split-text {
    flex: 1;
    min-width: 320px;
}
    .video-split-text h2 {
        font-size: 36px;
        font-weight: 800; 
        color: #1A3020;
        margin-bottom: 25px;
        text-transform: none;
    }

    .video-split-text p {
        font-size: 16px;
        line-height: 1.8;
        color: #333;
        margin-bottom: 30px;
    }

.video-split-media {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
}

.video-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

    .video-frame video {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }


.process-list {
    list-style: none;
    padding: 0;
}

    .process-list li {
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
    }

        .process-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #1A3020;
            font-weight: bold;
        }
.video-frame {
    position: relative; 
}

.video-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(26, 48, 32, 0.7); 
    border: 2px solid #e8e2ab; 
    color: #e8e2ab;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: 0.3s ease;
}

    .video-btn:hover {
        background: #1A3020;
        transform: scale(1.1);
    }

.about-container {
    background-color: #f4f7f5; 
    padding-bottom: 50px;
    overflow: hidden;
}
.about-story, .video-split-section {
    background: transparent !important;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }


.process-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.5s all ease;
}

.reveal.active .process-list li {
    opacity: 1;
    transform: translateX(0);
}


.process-list li:nth-child(1) {
    transition-delay: 0.2s;
}

.process-list li:nth-child(2) {
    transition-delay: 0.4s;
}

.process-list li:nth-child(3) {
    transition-delay: 0.6s;
}


.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    background: #ded8d8;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border-bottom: 4px solid transparent;
    flex: 0 1 calc(25% - 20px);
    box-sizing: border-box;
    min-width: 280px;
}

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border-bottom: 4px solid #1A3020;
    }

    .info-card .icon {
        font-size: 45px;
        margin-bottom: 20px;
        display: block;
    }

    .info-card h3 {
        color: #1A3020;
        margin-bottom: 15px;
    }

@media (max-width: 1034px) {
    .info-card {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .info-card {
        flex: 1 1 100%;
    }
}
    
.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}


#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
  position: relative;
  width: 64px;
  height: 60px;
}

.loader::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: black;
  width: 64px;
  height: 32px;
  border-radius: 0 0 50px 50px;
  animation: move 0.5s linear infinite alternate;
}

.loader::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  background: #e74514;
  width: 24px;
  height: 24px;
  transform: translateX(-50%) rotate(0deg);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  100% { transform: translateX(-50%) rotate(360deg)}
}
@keyframes move {
  0% { transform: rotate(10deg)}
  100% { transform: rotate(-10deg)}
}
      

@media (max-width: 768px) {
    .contact-trigger {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .contact-info-box {
        position: absolute !important; 
        top: auto !important; 
        left: auto !important; 
        transform: none !important; 
        width: 260px; 
        z-index: 10001;
    }
}

.contact-info-box {
    z-index: 9999;
}

.mobile-contact-details {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-left: 2px solid #e8e2ab;
    margin: 5px 0 15px 0;
}

    
    .mobile-contact-details.active {
        display: block;
    }

    .mobile-contact-details p {
        color: #fff !important;
        font-size: 14px;
        margin: 8px 0;
    }


@media (max-width: 992px) {
    .contact-trigger, #contactBox {
        display: none !important;
    }
}


/* why western gats  */

    :root {
    --at-bg: #fdfdfb; /* Soft ivory */
    --at-dark: #1a1a1a;
    --at-gold: #b38e44;
    --at-border: #eceae5;
    --at-text: #555555;
}

.atelier-why-us {
    padding: 120px 5%;
    background-color: var(--at-bg);
    color: var(--at-dark);
    font-family: 'Inter', system-ui, sans-serif;
}

.atelier-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
}


.atelier-sticky {
    position: sticky;
    top: 100px;
}

.atelier-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--at-gold);
    display: block;
    margin-bottom: 20px;
}

.atelier-title {
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.atelier-title span {
    font-weight: 800;
}

.atelier-accent {
    width: 50px;
    height: 1px;
    background: var(--at-gold);
    margin-bottom: 30px;
}

.atelier-summary {
    font-size: 18px;
    line-height: 1.7;
    color: var(--at-text);
}


.atelier-list {
    display: flex;
    flex-direction: column;
}

.atelier-item {
    border-top: 1px solid var(--at-border);
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    transition: all 0.4s ease;
}

.atelier-item:last-child {
    border-bottom: 1px solid var(--at-border);
}

.atelier-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.atelier-index {
    font-size: 12px;
    font-weight: 900;
    color: var(--at-gold);
    padding-top: 5px;
}

.atelier-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.atelier-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--at-text);
    margin: 0;
}


.atelier-item:hover {
    background: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border-color: var(--at-gold);
}

.atelier-item:hover h3 {
    color: var(--at-gold);
}


@media (max-width: 1024px) {
    .atelier-container { grid-template-columns: 1fr; gap: 60px; }
    .atelier-sticky { position: static; }
}

@media (max-width: 768px) {
    .atelier-item { grid-template-columns: 1fr; padding: 40px 0; }
    .atelier-item:hover { padding-left: 0; padding-right: 0; }
}

/* why western gats ends  */



.product-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 20px;
    background-color: #fcfcfc;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box {
    padding: 20px;
}

.product-name {
    font-size: 1.4rem;
    color: #e67e22; /* Warm spice color */
    margin-bottom: 12px;
    font-weight: 700;
}

.product-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-explore {
    display: inline-block;
    padding: 10px 20px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

    .btn-explore:hover {
        background-color: #219150;
    }
.rice-processing-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Monserrat', sans-serif;
}

.rice-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.rice-text-content {
    flex: 1;
    min-width: 300px;
}

.rice-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .rice-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 4px;
        width: 60px;
        background-color: #e67e22;
    }

.rice-list {
    list-style: none;
    padding: 0;
}

    .rice-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        color: #444;
        font-size: 1.1rem;
    }

        .rice-list li::before {
            content: '✓';
            color: #27ae60;
            font-weight: bold;
            margin-right: 15px;
        }

.rice-image-feature {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px #f4f4f4;
}

    .rice-image-feature img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .rice-image-feature:hover img {
        transform: scale(1.05);
    }


/* --- Premium Commitment Styles --- */

:root {
    --e-bg: #f9f8f4; 
    --e-dark: #121e1a;
    --e-gold: #c5a059;
    --e-grey: #6b7280;
}

.editorial-commitment {
    padding: 160px 5%;
    background-color: var(--e-bg);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: 1;
    pointer-events: none;
    letter-spacing: 1vw;
}

.editorial-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: flex-start;
}


.editorial-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--e-gold);
    margin-bottom: 25px;
    display: block;
}

.editorial-main-title {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1;
    font-weight: 200;
    color: var(--e-dark);
}

.gold-text {
    font-weight: 800;
    color: var(--e-gold);
}


.editorial-divider {
    width: 60px;
    height: 1px;
    background: var(--e-dark);
    margin-bottom: 40px;
}

.editorial-para {
    font-size: 22px;
    line-height: 1.6;
    color: var(--e-grey);
    margin-bottom: 40px;
}

.editorial-para strong {
    color: var(--e-dark);
    font-weight: 700;
}

.signature-box {
    border-left: 2px solid var(--e-gold);
    padding-left: 20px;
}

.sig-name {
    display: block;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sig-title {
    font-size: 13px;
    color: var(--e-grey);
}


.editorial-footer {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}

.footer-item span {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--e-dark);
}


@media (max-width: 1024px) {
    .editorial-content { grid-template-columns: 1fr; gap: 50px; }
    .editorial-footer { flex-direction: column; gap: 20px; }
    .watermark-text { display: none; }
}

/* --- Premium Commitment Styles ends --- */


.contact-section {
    padding: 0; /* Full width map look */
    background-color: #0b0f0d;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

/* Left Content Area */
.contact-details {
    flex: 1;
    padding: 80px 8%;
    background: #1a2a22; /* Matches your previous section theme */
    color: white;
}

    .contact-details .tag {
        color: #c5a059;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 3px;
        font-weight: 800;
    }

    .contact-details h2 {
        font-size: 2.5rem;
        margin: 20px 0;
    }

    .contact-details p {
        color: #a0a0a0;
        line-height: 1.6;
        margin-bottom: 40px;
    }

/* Info Items */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    background: rgba(197, 160, 89, 0.1);
    color: #c5a059;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.info-text h4 {
    color: #c5a059;
    margin: 0 0 5px 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text p {
    margin: 0;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.business-hours {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #888;
}

/* Map Container */
.map-container {
    flex: 1.2;
    min-width: 400px;
    filter: grayscale(0.5) contrast(1.1); /* Slightly desaturate to match premium aesthetic */
    transition: filter 0.3s ease;
}

    .map-container:hover {
        filter: grayscale(0); /* Map gains full color when interacted with */
    }

/* Responsive Scaling */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .map-container {
        height: 400px;
        width: 100%;
    }

    .contact-details {
        padding: 60px 5%;
    }
}