/* ==========================================================================
   GLOBAL VARIABLES & UTILITIES
   ========================================================================== */
:root {
    --primary-green: #323519;
    --primary-green-light: #787749;
    --gold: #E2C695;
    --dark-section: #0C090B;
    --light-bg: #ffffff;
    --text-main: #323519;
}

* { box-sizing: border-box; }

html, body {
    overflow-x: hidden; 
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 120px; /* Accounts for fixed header */
}

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.gold-divider { width: 60px; height: 3px; background: var(--gold); margin: 15px auto 50px; }

/* Lenis Smooth Scroll Recommended CSS */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff; 
    padding: 5px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 6px 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(99, 107, 70, 0.08); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); 
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-placeholder { font-size: 24px; font-weight: bold; color: var(--primary-green); }

.nav-menu a {
    text-decoration: none; 
    color: #666; 
    font-size: 14px;
    font-weight: 600; 
    margin-left: 5px; 
    padding: 6px;
    border-radius: 0 15px 0 15px;
    transition: all 0.3s ease;
}
.nav-menu a::after { display: none; }
.nav-menu a:hover { 
    background: rgba(99, 107, 70, 0.1); 
    color: var(--primary-green); 
    border-radius: 15px 0 15px 0; 
}
.nav-menu a.active { 
    background: var(--primary-green); 
    color: white; 
    border-radius: 0 15px 0 15px; 
    box-shadow: 0 4px 10px rgba(99, 107, 70, 0.3);
}
.nav-menu a.active:hover {
    background: var(--primary-green);
    color: white;
    border-radius: 15px 0 15px 0;
    transform: translateY(-2px);
}
.text-white { color: #ffffff !important; }
.mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; user-select: none; }

/* ==========================================================================
   DROPDOWN MENU
   ========================================================================== */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 150%;
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 0 15px 0 15px;
    border: 1px solid rgba(99, 107, 70, 0.1);
    overflow: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.dropdown:hover .dropdown-content { visibility: visible; opacity: 1; top: 100%; transform: translateY(0); }
.dropdown-content a {
    color: #444; padding: 12px 20px; text-decoration: none;
    display: block; margin: 0; border-radius: 0 !important;
    font-weight: 500; font-size: 13px; border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease, padding-left 0.2s ease;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
    background-color: #f9faec;
    color: var(--primary-green);
    padding-left: 25px;
}
/* Highlights the parent menu when a sub-menu page is active */
.nav-menu .dropdown .dropbtn.active {
    color: var(--gold); /* Or whichever color you use for active links */
    font-weight: bold;
}
/* ==========================================================================
   GLOBAL LEAF GRAPHICS (Optimized DRY)
   ========================================================================== */
.white-sections-wrapper { position: relative; overflow: hidden; background: #ffffff; }
.white-sections-wrapper .container { position: relative; z-index: 2; }

.bg-leaf {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 100 C0 0 100 0 100 0 C100 100 0 100 0 100 Z" fill="%23F3EBDD"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none; 
}
.leaf-left { width: 450px; height: 450px; left: -200px; top: 15%; transform: rotate(-25deg); }
.leaf-top-right { width: 250px; height: 250px; right: -80px; top: 2%; transform: rotate(65deg); }
.leaf-bottom-right { width: 350px; height: 350px; right: -100px; bottom: 5%; transform: rotate(135deg); }
.leaf-about-1 { width: 300px; height: 300px; left: -150px; top: 10%; transform: rotate(15deg); }
.leaf-about-2 { width: 250px; height: 250px; right: -100px; top: 35%; transform: rotate(-45deg); }
.leaf-about-3 { width: 400px; height: 400px; left: -200px; top: 60%; transform: rotate(85deg); }
.leaf-about-4 { width: 300px; height: 300px; right: -150px; bottom: 5%; transform: rotate(-120deg); }

/* ==========================================================================
   GLOBAL BUTTON STYLES
   ========================================================================== */

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--primary-green);
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary.sec {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--gold);
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #333; /* Dark text for contrast against the gold */
    transform: translateY(-3px); /* Subtle floating effect */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ==========================================================================
   SECONDARY OUTLINE BUTTON
   ========================================================================== */

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-green);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   HOME PAGE SECTION
   ========================================================================== */
.main-hero {
    position: relative; width: 100%;
    height: calc(90vh - 90px); min-height: 500px;
    background-size: cover; background-position: center;
}
.hero-section { background: var(--primary-green); padding: 100px 0; color: white; position: relative; overflow: hidden; }
#tsparticles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-tagline { font-size: 20px; letter-spacing: 4px; font-weight: 300; color: var(--gold); margin-top: 20px; }
.hero-main-title { font-size: 32px; font-weight: 400; line-height: 1.4; margin-top: 10px; }

.quote-section { background: var(--dark-section); color: white; }
.quote-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.quote-text { padding: 80px 40px; }
.quote-text blockquote { font-size: 28px; font-weight: 300; line-height: 1.3; margin: 0;}
.quote-text cite { display: block; margin-top: 15px; font-size: 14px; color: var(--gold); }
.quote-text cite span { color: white; font-size: 12px; }
.founder-placeholder { min-height: 600px; height: 100%; background: #323519 url('../assets/jayant-datye-home-img.jpg') center/cover; }

.achievement-section { padding: 80px 0; background: #fcfcfc; position: relative; z-index: 10; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat-box { 
    height: 350px; background-size: cover; background-position: center; background-repeat: no-repeat; 
    position: relative; padding: 40px; color: white; border-radius: 8px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); display: flex; flex-direction: column; 
    justify-content: flex-start; overflow: hidden;
}
.stat-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%); transition: opacity 0.4s ease; }
.stat-box:hover .stat-overlay { opacity: 0.8; }
.stat-content { position: relative; z-index: 1; }
.stat-content h3 { font-size: 64px; font-weight: 300; margin-bottom: 5px; line-height: 1; }
.stat-content p { font-size: 14px; letter-spacing: 2px; font-weight: 500; line-height: 1.4; text-transform: uppercase; }
.achievement-section .stat-content h3 {display: inline-block;min-width: 120px;text-align: center;}

.parallax-divider { position: relative; padding: 120px 0; background: url('../assets/home-about-bg.jpg') center/cover fixed; }
.parallax-divider-overlay { position: absolute; inset: 0; background: rgba(26, 26, 26, 0.6); }
.divider-content { position: relative; z-index: 2; display: flex; justify-content: center; }
.glass-panel {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); padding: 50px; border-radius: 15px;
    max-width: 800px; color: white; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); transition: transform 0.4s ease;
}
.glass-panel:hover { transform: scale(1.02); }
.glass-panel h2 { color: var(--gold); font-weight: 300; letter-spacing: 3px; margin-bottom: 20px; }
.glass-panel p { font-size: 16px; font-weight: 300; line-height: 1.8; }

.legacy-text-section { padding: 20px 0; }
.section-title { text-align: center; font-size: 28px; letter-spacing: 3px; margin-bottom: 20px; font-weight: 400; }
.columns-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; font-size: 14px; color: #787749; }
.read-more { color: #d9534f; text-decoration: none; font-weight: 500; }

/* Testimonials */
.testimonial-section { padding: 20px 0 20px; }
.subtitle { text-align: center; font-size: 12px; letter-spacing: 1px; color: #888; margin-bottom: 20px; }
.testimonialSwiper { width: 100%; padding: 20px 0 30px 0 !important; }
.swiper-slide { width: 60%; }
.testimonial-card { background: white; border: 2px solid var(--primary-green); display: flex; min-height: 300px; transition: box-shadow 0.3s ease; }
.testimonial-card:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.testi-text { flex: 6; padding: 40px; text-align: left; display: flex; flex-direction: column; justify-content: space-between; }
.testi-text p { font-size: 14px; font-weight: 400; color: #323519; line-height: 1.8; }
.client-name { font-weight: 600 !important; font-size: 13px !important; margin-top: 20px; letter-spacing: 1px; }
.testi-image { flex: 4; background-color: #e5e5e5; border-left: 2px solid var(--primary-green); display: flex; align-items: center; justify-content: center; }
.testi-image img { width: 100%; }

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-green) !important; background: rgba(255, 255, 255, 0.9); width: 50px !important;
    height: 50px !important; border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--primary-green); color: white !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 20px !important; font-weight: bold; }
.swiper-button-prev { left: 10% !important; }
.swiper-button-next { right: 10% !important; }
.swiper-pagination-bullet { background: var(--light-bg) !important; opacity: 0.5 !important; width: 10px !important; height: 10px !important; transition: all 0.3s ease; }
.swiper-pagination-bullet-active { opacity: 1 !important; background: var(--gold) !important; transform: scale(1.3); }

/* ==========================================================================
   HOMEPAGE - BUSINESS DIVISIONS (SECTORS) GRID
   ========================================================================== */

.sectors-section {
    padding: 80px 0 20px 0;
    position: relative;
    z-index: 5;
}

.sectors-grid {
    display: grid;
    /* Forces 5 columns on desktop */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sector-card {
    position: relative;
    display: block;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: var(--primary-green);
}

.sector-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 20, 18, 0.9) 0%, rgba(17, 20, 18, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
    transition: background 0.4s ease;
}

.sector-overlay h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.explore-btn {
    color: var(--gold, #e2c695);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 1;
    transform: translateY(5px);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hover Animations */
.sector-card:hover .sector-img {
    transform: scale(1.1); /* Smooth zoom */
}

.sector-card:hover .sector-overlay {
    background: linear-gradient(to top, rgba(17, 20, 18, 0.95) 0%, rgba(17, 20, 18, 0.5) 100%);
}

.sector-card:hover .sector-overlay h3 {
    transform: translateY(-8px);
    color: var(--gold, #e2c695);
}

.sector-card:hover .explore-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sector-card { height: 350px; }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sector-card { height: 300px; }
    .sector-overlay h3 { font-size: 18px; }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    .sector-card { height: 280px; }
}

/* ==========================================================================
   UNIVERSAL IMAGE-ONLY BANNERS (For images containing text)
   ========================================================================== */

.universal-image-banner { width: 100%;display: block;position: relative;overflow: hidden;box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);}

.universal-image-banner img {width: 100%;height: auto;display: block;}

/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */
.about-text-section { padding: 2px 0; position: relative; z-index: 2; }
.about-text-section p { margin-bottom: 15px; color: #444; text-align: justify; }
.highlight-section { background-color: #E2E4D9; padding: 5px 0; margin: 20px 0; position: relative; z-index: 2; }
.highlight-content { max-width: 900px; margin: 0 auto; color: #444; }
.highlight-content .intro-text { margin-bottom: 30px; text-align: justify; }

/* ==========================================================================
   ABOUT PAGE - TEAM SECTION STYLES
   ========================================================================== */

.about-team-section {
    padding: 80px 0;
    background: #f9fbf7; /* Slight contrast to separate from the white sections */
    border-top: 1px solid rgba(0,0,0,0.05);
}

.team-grid {
    display: grid;
    /* Automatically creates responsive columns. Min 260px wide, max 1 fraction */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 198, 149, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

/* 1:1 Aspect Ratio for Square Professional Headshots */
.team-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* This forces the perfect square */
    overflow: hidden;
    background-color: #f0f0f0;
}

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

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

.team-info {
    padding: 25px 20px;
    text-align: center;
    background: #ffffff;
    flex-grow: 1; /* Pushes content down evenly */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h4 {
    font-size: 19px;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-sector {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Minor responsive tweak for mobile padding */
@media (max-width: 768px) {
    .team-grid {
        gap: 20px;
        margin-top: 40px;
    }
    .team-info {
        padding: 20px 15px;
    }
}

/* Tree Logo Design List */
.custom-bullet-list { list-style: none; padding-left: 10px; }
.custom-bullet-list li { position: relative; margin-bottom: 20px; padding-left: 20px; font-size: 14px; line-height: 1.8; }
.custom-bullet-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
    top: 3px;
}
.custom-bullet-list li:hover::before { transform: scale(1.2); }

/* ==========================================================================
   REBIRTH FOR EARTH PAGE SPECIFIC STYLES
   ========================================================================== */
.rebirth-content-section { padding: 30px 0; position: relative; z-index: 2; }
.rebirth-grid { display: grid; grid-template-columns: 1fr 2.5fr; gap: 60px; align-items: flex-start; }
.rebirth-image-col { text-align: center; }
.rebirth-graphic { max-width: 100%; width: 280px; height: auto; }
.rebirth-text-col p { color: #444; text-align: justify; font-size: 14px; line-height: 1.8; }

/* ==========================================================================
   PROJECTS PAGE SPECIFIC STYLES
   ========================================================================== */
.upcoming-projects-section { padding: 20px 0; position: relative; z-index: 2; background: #fff; }
.upcomingSwiper { width: 100%; padding: 20px 0 !important; }
.upcomingSwiper .swiper-slide { width: 350px; margin: 0 15px; }

.u-project-card, .project-card { 
    background: #fcfcfc; border-radius: 12px; overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee;
    height: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.u-project-card:hover, .project-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); border-color: var(--gold); }
.u-project-img, .project-image { height: 220px; background-size: cover; background-position: center; position: relative;min-height: 300px;background-color: #f7f9f8 !important; }
.u-project-badge, .project-badge { 
    position: absolute; top: 15px; right: 15px; background: var(--primary-green); color: white; 
    padding: 5px 12px; font-size: 11px; font-weight: 600; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase;
}
.u-project-badge.gold, .project-badge.gold-badge { background: var(--gold); color: #333; }
.u-project-body, .project-info { padding: 25px; text-align: left; }
.u-project-body h3, .project-info h3 { font-size: 18px; font-weight: 600; margin-bottom: 5px; color: var(--primary-green); }
.u-project-body .loc, .project-location { font-size: 12px; color: #888; margin-bottom: 15px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.project-desc { font-size: 13px; color: #555; line-height: 1.6; }

.completed-projects-section, .completed-section { 
    padding: 60px 0 100px 0; position: relative; z-index: 2;
    background-color: #f9fbf7; 
    background-image: radial-gradient(rgba(99, 107, 70, 0.15) 1px, transparent 1px); background-size: 25px 25px; 
    border-top: 1px solid rgba(99, 107, 70, 0.1); 
}
.completed-grid { display: flex; justify-content: space-between; margin-top: 40px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.project-list-left, .project-list-right { flex: 1; }
.project-list-left { padding-right: 40px; }
.project-list-right { padding-left: 40px; }
.vertical-divider { width: 2px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); opacity: 0.5; }
.completed-grid li { margin-bottom: 15px !important; }

.completed-5-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.completed-item {
    background: #ffffff; padding: 25px 20px; border-radius: 12px; border: 1px solid rgba(99, 107, 70, 0.08); 
    text-align: left; transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; 
    position: relative; cursor: pointer; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.completed-item:hover { background: #fff; border-color: var(--gold); box-shadow: 0 15px 35px rgba(0,0,0,0.05); transform: translateY(-5px); }
.completed-item .item-icon { width: 30px; height: 30px; margin: 0 auto 15px; background: url('../assets/dbg-golden.png') no-repeat center/contain; }
.completed-item h4 { font-size: 13px; color: #333; margin-bottom: 8px; line-height: 1.4; font-weight: 600; }
.completed-item p { font-size: 11px; color: #888; margin-bottom: 10px; }
.completed-item .year { font-size: 10px; font-weight: 700; color: var(--primary-green); background: rgba(99, 107, 70, 0.05); padding: 3px 8px; border-radius: 4px; }

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-details-section { padding: 80px 0 40px 0; position: relative; z-index: 2; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.contact-card { background: #ffffff; padding: 40px 30px; border-radius: 0 30px 0 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid rgba(99, 107, 70, 0.1); text-align: center; transition: all 0.3s ease; }
.contact-card:hover { transform: translateY(-10px); box-shadow: 0 15px 50px rgba(99, 107, 70, 0.15); border-color: var(--primary-green); }
.contact-icon { width: 60px; height: 60px; margin: 0 auto 20px; background: #f9faec; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-green); transition: all 0.3s ease; }
.contact-card:hover .contact-icon { background: var(--primary-green); color: var(--gold); }
.contact-icon svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 14px; font-weight: 600; color: var(--primary-green); margin-bottom: 15px; letter-spacing: 1px; }
.contact-card p, .contact-card a { font-size: 14px; color: #555; line-height: 1.8; text-decoration: none; transition: color 0.3s ease; }
.contact-card a:hover { color: var(--primary-green); font-weight: 500; }

.contact-form-section { padding: 40px 0 100px 0; position: relative; z-index: 2; }
.form-container { max-width: 800px; margin: 0 auto; background: #ffffff; padding: 50px; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.05); }
.dbg-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 25px; text-align: left; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--primary-green); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #e0e0e0; border-radius: 8px; background: #fdfdfd; font-family: 'Montserrat', sans-serif; font-size: 14px; color: #333; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-green); background: #ffffff; box-shadow: 0 0 0 3px rgba(99, 107, 70, 0.1); }
.submit-btn { background: var(--primary-green); color: white; padding: 15px 40px; font-size: 14px; font-weight: 600; border: none; border-radius: 30px; cursor: pointer; letter-spacing: 1px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.submit-btn svg { width: 16px; height: 16px; }
.submit-btn:hover { background: var(--gold); color: #333; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.form-status-alert { padding: 15px 20px; border-radius: 8px; margin-bottom: 30px; font-size: 14px; font-weight: 500; text-align: center; animation: fadeInDown 0.5s ease; }
.form-status-alert.success-msg { background-color: #eaf5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-status-alert.error-msg { background-color: #fce8e6; color: #c62828; border: 1px solid #fad2cf; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   COMING SOON PAGE STYLES
   ========================================================================== */
.coming-soon-wrapper { min-height: 60vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 60px 0; background-color: #f9fbf7; background-image: radial-gradient(rgba(99, 107, 70, 0.15) 1px, transparent 1px); background-size: 25px 25px; }
.dbg-glass-panel { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(99, 107, 70, 0.15); border-radius: 20px; padding: 60px 40px; max-width: 650px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); position: relative; z-index: 2; }
.coming-soon-icon img { width: 120px; margin-bottom: 20px; filter: drop-shadow(0px 8px 12px rgba(0,0,0,0.15)); }
.coming-soon-title { font-size: 32px; font-weight: 300; color: var(--primary-green); letter-spacing: 6px; margin-bottom: 15px; }
.coming-soon-subtitle { font-size: 14px; font-weight: 600; color: #555; letter-spacing: 2px; margin-bottom: 20px; }
.coming-soon-text { font-size: 14px; color: #666; line-height: 1.8; max-width: 500px; margin: 0 auto 40px auto; }
.back-home-btn { display: inline-block; padding: 12px 30px; background: var(--primary-green); color: white; text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 2px; border-radius: 30px; transition: all 0.3s ease; }
.back-home-btn:hover { background: var(--gold); color: #333; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(99, 107, 70, 0.2); }

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background-color: var(--primary-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); z-index: 999; text-decoration: none; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { background-color: var(--gold); color: #333; transform: translateY(-5px); box-shadow: 0 8px 25px rgba(99, 107, 70, 0.3); }
.scroll-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   FOOTER (Consolidated)
   ========================================================================== */
.main-footer { background: var(--primary-green-light); color: white; padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1.2fr 1fr 1.5fr; gap: 30px; }
.logo-placeholder-white { font-size: 24px; font-weight: bold; color: white; margin-bottom: 10px;}
.footer-company { font-size: 12px; font-weight: 700; margin-top: 5px; }
.footer-links h4, .footer-contact h4 { font-size: 14px; margin-top: 30px; margin-bottom: 10px; font-weight: 500; letter-spacing: 1px;}
.footer-links h4:first-child, .footer-contact h4:first-child { margin-top: 0; }
.footer-links h4 a { color: white; text-decoration: none; transition: color 0.3s ease; }
.footer-links h4 a:hover { color: var(--gold); }
.footer-links ul { list-style: none; font-size: 13px; opacity: 0.8; line-height: 1.8; margin: 0; padding: 0; }
.footer-links ul li a { color: white; text-decoration: none; transition: all 0.3s ease; }
.footer-links ul li a:hover { color: var(--gold); opacity: 1; }
.footer-contact p { font-size: 13px; opacity: 0.8; line-height: 1.8; }
.footer-contact p a { color: white; text-decoration: none; transition: color 0.3s ease; }
.footer-contact p a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 12px; margin-top: 25px; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 50%; color: white; transition: all 0.3s ease; text-decoration: none; }
.social-icons a svg { width: 14px; height: 14px; }
.social-icons a:hover { background-color: white; color: var(--primary-green); border-color: white; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }

/* ==========================================================================
   ALL MEDIA QUERIES (Grouped for perfect cascading)
   ========================================================================== */
@media (max-width: 1200px) {
    .nav-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .dropdown { width: 100%; }
    .dropbtn { display: flex !important; justify-content: space-between; width: 100%; }
    .dropdown-content { position: relative; top: 0 !important; box-shadow: none; border: none; border-radius: 0; background-color: #fcfcfc; border-left: 3px solid var(--primary-green); display: none; visibility: visible; opacity: 1; transform: none; }
    .dropdown.active-mobile .dropdown-content { display: block !important; animation: slideDown 0.3s ease forwards; }
}

@media (max-width: 1100px) {
    .completed-5-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: 1fr; }
    .stat-box { height: 250px; background-attachment: scroll; } 
    .quote-container { grid-template-columns: 1fr; }
    .founder-placeholder { min-height: 300px; }
    .achievement-section { padding: 40px 0; }
    .swiper-slide { width: 85%; } 
    .testimonial-card { flex-direction: column; }
    .testi-image { min-height: 200px; border-left: none; border-top: 2px solid var(--primary-green); }
    .swiper-button-prev { left: 10px !important; }
    .swiper-button-next { right: 10px !important; }
    .bg-leaf { opacity: 0.3; } 
    .rebirth-grid { grid-template-columns: 1fr; gap: 40px; }
    .rebirth-image-col { text-align: left; }
    .completed-grid { flex-direction: column; }
    .vertical-divider { width: 100%; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 30px 0; }
    .project-list-left, .project-list-right { padding: 0; }
    .upcomingSwiper .swiper-slide { width: 300px; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .dbg-contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-container { padding: 30px 20px; }
}

@media (max-width: 768px) {
    .columns-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    .swiper-slide { width: 95%; } 
    .glass-panel { padding: 30px; }
    .bg-leaf { display: none; } 
    .about-text-section p, .highlight-content .intro-text { text-align: left; }
    .rebirth-image-col { text-align: center; }
    .rebirth-text-col p { text-align: left; }
    .completed-5-grid { grid-template-columns: repeat(2, 1fr); }
    .scroll-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
    .dbg-glass-panel { padding: 40px 20px; margin: 0 20px; }
}

@media (max-width: 480px) {
    .logo-placeholder img { max-width: 180px !important; }
    .completed-5-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DATYE REALTY - PREMIUM LANDING PAGE STYLES
   ========================================================================== */

.realty-landing-wrapper {
    background-color: #f9fbf7; /* Soft DBG base color */
    color: #333;
}

.realty-legacy-intro {
    position: relative;
    z-index: 10;
    /* Pulls the card up over the bottom of the universal image banner */
    margin-top: -80px; 
    padding: 0 20px;
}

.legacy-intro-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 198, 149, 0.4); /* Subtle gold border */
    border-top: 4px solid var(--gold); /* Strong gold accent at the top */
    border-radius: 15px;
    padding: 60px 50px;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.realty-badge-dark {
    display: inline-block;
    background: var(--primary-green);
    color: var(--gold);
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.legacy-intro-card h2 {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-green);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.legacy-intro-card .lead-text {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legacy-intro-card .secondary-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Adjustments for the About section to flow nicely under the new card */
.realty-intro-section {
    padding: 80px 0 100px 0;
    background: #ffffff;
}
/* 2. Intro & Philosophy */
.realty-intro-section {
    padding: 100px 0;
    background: #ffffff;
}
.realty-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}
.gold-divider-left {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px 0 30px 0;
}
.intro-text h3 {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-green);
    letter-spacing: 2px;
}
.intro-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}
.intro-philosophy {
    background: var(--primary-green);
    padding: 50px 40px;
    border-radius: 0 40px 0 40px;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}
.intro-philosophy::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: 10px; bottom: 10px;
    border: 1px solid var(--gold);
    border-radius: 0 40px 0 40px;
    z-index: 0;
    pointer-events: none;
}
.intro-philosophy h4, .intro-philosophy blockquote { position: relative; z-index: 2; }
.intro-philosophy h4 { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; text-transform: uppercase; }
.intro-philosophy blockquote { font-size: 22px; font-weight: 300; line-height: 1.6; font-style: italic; }

/* 3. Stats Section */
.realty-stats-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}
/* Fix for the missing heading text */
.realty-stats-section h3 {
    color: #ffffff; /* Forces the text to be white */
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.realty-overlay-dark {
    position: absolute; inset: 0; background: rgba(12, 9, 11, 0.85); z-index: 1;
}
.relative-z { position: relative; z-index: 2; }
.realty-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}
.stat-item:hover { transform: translateY(-10px); border-color: var(--gold); }
.stat-num { display: block; font-size: 48px; font-weight: 300; color: var(--gold); margin-bottom: 5px; }
.stat-title { display: block; font-size: 14px; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.stat-item p { font-size: 12px; color: #aaa; line-height: 1.6; }

/* 4. Sectors (Res/Com) */
.realty-sectors-section { padding: 100px 0; }
.sector-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.sector-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.sector-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.sector-img { min-height: 250px; background-size: cover; background-position: center; }
.sector-content { padding: 40px; }
.sector-content h3 { font-size: 24px; color: var(--primary-green); font-weight: 300; margin-bottom: 10px; }
.sector-content h4 { font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.sector-content p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 20px; }
.realty-bullet-list { list-style: none; padding: 0; }
.realty-bullet-list li { position: relative; padding-left: 20px; font-size: 13px; color: #444; margin-bottom: 10px; }
.realty-bullet-list li::before { content: '■'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 3px; }

/* 5. Trust Grid */
.realty-trust-section { padding: 80px 0; background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.trust-box {
    padding: 40px 30px;
    background: #f9fbf7;
    border-radius: 0 30px 0 30px;
    border: 1px solid rgba(99, 107, 70, 0.1);
    transition: all 0.3s ease;
}
.trust-box:hover { background: var(--primary-green); color: white; transform: scale(1.03); }
.trust-box h5 { font-size: 16px; font-weight: 600; margin-bottom: 15px; color: var(--gold); }
.trust-box p { font-size: 13px; line-height: 1.6; color: inherit; opacity: 0.8; }

/* 6. Redevelopment Banner */
.realty-redevelopment-section { background: var(--primary-green); color: white; padding: 80px 0; }
.redevelopment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.redev-text h3 { font-size: 24px; font-weight: 300; color: var(--gold); margin-bottom: 20px; }
.redev-text p { font-size: 14px; line-height: 1.8; opacity: 0.9; }

/* 7. CTA */
.realty-cta-section { padding: 100px 0; background: url('../assets/dbg-golden.png') center/contain no-repeat; position: relative; }
.realty-cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.95); z-index: 1; }
.realty-cta-section .container { position: relative; z-index: 2; max-width: 800px; }
.realty-cta-section h3 { font-size: 32px; font-weight: 300; color: var(--primary-green); margin-bottom: 20px; }
.realty-cta-section p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 40px; }

/* ==========================================================================
   DATYE REALTY - NEW SECTIONS CSS
   ========================================================================== */

/* Update Stats grid to hold 5 items instead of 4 */
.realty-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* Missing Closing Sentences in Sector Cards */
.sector-footer {
    margin-top: 20px !important;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 13.5px !important;
    color: var(--primary-green) !important;
    font-weight: 500;
}

/* Pune Developer & Philosophy Section */
.realty-developer-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.developer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.dev-content h3 { font-size: 32px; font-weight: 300; color: var(--primary-green); margin-bottom: 5px; }
.dev-content h4 { font-size: 14px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.dev-content p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 15px; }

/* Philosophy Item Styling */
.dev-philosophy h3 { font-size: 32px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }
.philosophy-item {
    background: #f9fbf7;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold);
    border-radius: 0 15px 0 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.philosophy-item h5 { font-size: 15px; font-weight: 600; color: var(--primary-green); margin-bottom: 8px; }
.philosophy-item p { font-size: 13px; color: #555; margin: 0; line-height: 1.6; }

/* Investment & Redevelopment Section */
.realty-investment-redev {
    padding: 80px 0;
    background: var(--primary-green);
    color: white;
}
.redevelopment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.redev-text h3 { font-size: 28px; font-weight: 300; color: var(--gold); margin-bottom: 15px; }
.redev-text p { font-size: 14.5px; line-height: 1.8; opacity: 0.9; margin-bottom: 15px; }
.redev-text .realty-bullet-list li { color: white; opacity: 0.9; }
.redev-text .realty-bullet-list li::before { color: var(--gold); }
.redev-footer { font-weight: 500; color: var(--gold) !important; margin-top: 15px; font-style: italic;}

/* Closing Block (Communities & About) */
.realty-closing-section {
    padding: 80px 0;
    background: #ffffff;
}
.closing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.closing-block h3 { font-size: 28px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }
.closing-block p { font-size: 14.5px; line-height: 1.8; color: #555; margin-bottom: 15px;}

/* Final CTA */
.final-cta {
    background: #f9fbf7;
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(226, 198, 149, 0.3);
    max-width: 900px;
    margin: 0 auto;
}
.final-cta h3 { font-size: 28px; color: var(--primary-green); font-weight: 300; margin-bottom: 20px; }
.final-cta p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 30px; }
.final-cta h4 { font-size: 24px; color: var(--primary-green); font-weight: 600; text-transform: uppercase; letter-spacing: 2px;}
.final-cta h4 span { display: block; font-size: 14px; font-weight: 400; color: var(--gold); letter-spacing: 4px; margin-top: 10px; }

/* Responsive adjustments for new sections */
@media (max-width: 1200px) {
    .realty-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .developer-grid, .redevelopment-grid, .closing-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .realty-stats-grid { grid-template-columns: 1fr 1fr; }
    .final-cta h3 { font-size: 22px; }
}
@media (max-width: 480px) {
    .realty-stats-grid { grid-template-columns: 1fr; }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .realty-intro-grid, .sector-split, .redevelopment-grid { grid-template-columns: 1fr; gap: 40px; }
    .realty-stats-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .realty-stats-grid, .trust-grid { grid-template-columns: 1fr; }
    .intro-philosophy { border-radius: 15px; }
    .intro-philosophy::before { border-radius: 15px; }
    .realty-legacy-intro {
        margin-top: -30px; /* Less overlap on phones so it doesn't cover the image */
    }
    .legacy-intro-card {
        padding: 40px 25px;
    }
    .legacy-intro-card h2 {
        font-size: 32px;
    }
}

/* ==========================================================================
   SUJAY HOSPITALITY - PREMIUM LANDING PAGE STYLES
   ========================================================================== */

.hospitality-landing-wrapper {
    background-color: #f9fbf7;
    color: #333;
}

/* Typography Utilities */
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.8; color: #555; }
.section-heading { font-size: 36px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }

/* 2. Intro Card (Matches Realty style but distinct typography) */
.hosp-legacy-intro {
    position: relative;
    z-index: 10;
    margin-top: -80px; 
    padding: 0 20px;
}
.legacy-intro-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 198, 149, 0.4); 
    border-top: 4px solid var(--primary-green); /* Different top border accent */
    border-radius: 15px;
    padding: 60px 50px;
    max-width: 950px; margin: 0 auto;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}
.hosp-badge-dark {
    display: inline-block;
    background: var(--gold); color: #333;
    padding: 6px 18px; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; border-radius: 30px; margin-bottom: 20px;
}
.legacy-intro-card h2 { font-size: 42px; font-weight: 300; color: var(--primary-green); letter-spacing: 6px; text-transform: uppercase; margin-bottom: 5px; }
.hosp-subtitle { font-size: 18px; font-weight: 400; color: #555; margin-bottom: 15px; letter-spacing: 1px; }

/* 3. Why Choose Grid */
.hosp-why-choose { padding: 100px 0; background: #ffffff; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
.why-card { 
    background: #f9fbf7; padding: 40px; border-radius: 20px; 
    border: 1px solid rgba(99, 107, 70, 0.1); transition: all 0.3s ease; 
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--gold); }
.why-icon { font-size: 32px; margin-bottom: 15px; }
.why-card h4 { font-size: 18px; color: var(--primary-green); font-weight: 600; margin-bottom: 15px; }
.why-card p { font-size: 14.5px; color: #555; line-height: 1.7; margin-bottom: 10px; }

/* 4. Family Activities (Dark Glass Panel) */
.hosp-activities { padding: 60px 0; background: url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?auto=format&fit=crop&q=80&w=2000') center/cover fixed; }
.glass-panel-dark {
    background: rgba(12, 9, 11, 0.85); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
    padding: 60px; max-width: 1000px; margin: 0 auto;
}
.text-gold { color: var(--gold); }
.activities-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.activities-grid span {
    background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px; border-radius: 30px; font-size: 14px; font-weight: 500;
    transition: all 0.3s ease;
}
.activities-grid span:hover { background: var(--gold); color: #333; border-color: var(--gold); transform: scale(1.05); }

/* 5. Farm Stay & Picnic Split */
.hosp-offerings { padding: 100px 0; background: #ffffff; }
.offerings-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.offering-box h3 { font-size: 28px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }
.offering-box p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 15px; }
.lead-italic { font-size: 18px !important; font-style: italic; color: var(--primary-green) !important; font-weight: 500; }
.hosp-bullet-list { list-style: none; padding-left: 10px; margin-bottom: 20px; }
.hosp-bullet-list li { position: relative; padding-left: 25px; font-size: 14.5px; color: #444; margin-bottom: 10px; line-height: 1.6; }
.hosp-bullet-list li::before { content: '🌿'; position: absolute; left: 0; font-size: 12px; top: 3px; }
.perfect-for-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.perfect-for-tags span { background: #E2E4D9; color: var(--primary-green); padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; }

/* 6. Corporate & Educational Cards */
.hosp-institutions { padding: 60px 0 100px 0; background: #f9fbf7; }
.institutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.inst-card { background: white; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; border: 1px solid #eee; }
.inst-header { background: var(--primary-green); padding: 30px; text-align: center; }
.inst-header h3 { color: white; font-size: 22px; font-weight: 300; margin: 0; }
.inst-body { padding: 40px; }
.inst-body p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.inst-footer { margin-top: 25px; margin-bottom: 0 !important; font-weight: 500; font-style: italic; color: var(--primary-green) !important; border-top: 1px solid #eee; padding-top: 20px; }

/* 7. Organic Orchard Grid */
.hosp-orchard { padding: 80px 0; background: white; }
.fruit-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 40px; max-width: 900px; margin-left: auto; margin-right: auto; }
.fruit-tag { 
    background: #ffffff; border: 2px solid var(--gold); color: var(--primary-green);
    font-size: 16px; font-weight: 600; padding: 12px 30px; border-radius: 50px;
    box-shadow: 0 5px 15px rgba(226, 198, 149, 0.2); transition: all 0.3s ease;
}
.fruit-tag:hover { background: var(--gold); transform: translateY(-3px); }

/* 8. Best Resort Checklist */
.hosp-best-resort { padding: 80px 0; background: #f9fbf7; }
.best-resort-card { background: white; border-radius: 30px; padding: 60px; text-align: center; max-width: 900px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.05); border: 1px solid rgba(99, 107, 70, 0.1); }
.best-resort-card h3 { font-size: 32px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }
.best-resort-card p { font-size: 16px; color: #555; margin-bottom: 40px; }
.check-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
.check-item { background: #f9faec; padding: 15px 25px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--primary-green); border-left: 4px solid var(--gold); }

/* 9. Closing Section */
.hosp-closing { padding: 100px 0; background: white; }
.about-dbg-block { max-width: 800px; margin: 0 auto 80px auto; }
.about-dbg-block h3 { font-size: 28px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }
.about-dbg-block p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 15px; }
.hosp-cta-block { background: var(--primary-green); color: white; padding: 60px; border-radius: 30px; max-width: 900px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.hosp-cta-block h3 { font-size: 32px; font-weight: 300; color: var(--gold); margin-bottom: 20px; }
.hosp-cta-block p { font-size: 16px; opacity: 0.9; line-height: 1.8; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .why-grid, .offerings-split, .institutions-grid, .check-list-grid { grid-template-columns: 1fr; }
    .glass-panel-dark { padding: 40px 20px; }
    .best-resort-card, .hosp-cta-block { padding: 40px 20px; }
}
@media (max-width: 768px) {
    .legacy-intro-card h2 { font-size: 32px; }
    .section-heading, .best-resort-card h3, .hosp-cta-block h3 { font-size: 28px; }
}

/* ==========================================================================
   NARACHI CONSULTANT - "CYBER CORPORATE" EXPERT UI
   ========================================================================== */

.narachi-pro-wrapper {
    background-color: #f4f7f6; /* Cold, tech-oriented off-white */
    color: #333;
}

/* Typography Utilities */
.section-label { font-size: 11px; font-weight: 700; color: #888; letter-spacing: 4px; margin-bottom: 10px; text-transform: uppercase; }
.section-label.center { text-align: center; }
.section-heading-dark { font-size: 38px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }
.lead-text-gold { font-size: 20px; font-weight: 500; color: var(--gold); letter-spacing: 1px; }
.italic-text { font-style: italic; color: #777; font-weight: 500; }
.mb-20 { margin-bottom: 20px; } .mb-50 { margin-bottom: 50px; }
.mt-40 { margin-top: 40px; }

/* 2. High-Tech HUD Intro */
.narachi-hud-intro { position: relative; z-index: 10; margin-top: -100px; padding: 0 20px; }
.hud-glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 70px 60px;
    max-width: 1000px; margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.hud-glow-line { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-green), var(--gold)); }
.tech-badge {
    display: inline-block; background: rgba(50, 53, 25, 0.05); color: var(--primary-green);
    padding: 6px 15px; font-size: 11px; font-weight: 700; letter-spacing: 3px; border-radius: 4px; margin-bottom: 25px;
}
.tech-title { font-size: 48px; font-weight: 300; color: var(--primary-green); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 5px; }
.tech-subtitle { font-size: 18px; font-weight: 400; color: #666; margin-bottom: 15px; letter-spacing: 2px; }
.hud-text-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.hud-text-grid p { font-size: 15px; color: #555; line-height: 1.8; margin: 0; }
.full-width-text { grid-column: 1 / -1; font-weight: 500; color: var(--primary-green) !important; padding-top: 15px; border-top: 1px solid #eee; }

/* 3. About & Expertise (Terminal Style) */
.narachi-about-pro { padding: 120px 0; background: #ffffff; }
.pro-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content h3 { font-size: 34px; font-weight: 300; color: var(--primary-green); }
.about-content p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 20px; }
.expertise-console {
    background: #111412; /* Terminal Dark */
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.console-header { background: #1c221e; padding: 15px 20px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }
.console-title { color: #888; font-size: 12px; margin-left: 15px; font-family: monospace; letter-spacing: 1px; }
.console-body { padding: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.expertise-pill {
    background: rgba(226, 198, 149, 0.1); color: var(--gold);
    border: 1px solid rgba(226, 198, 149, 0.3);
    padding: 10px 20px; border-radius: 4px; font-size: 13.5px; font-weight: 500;
}

/* 4. Core Services (Matrix Grid) */
.narachi-matrix-services { padding: 100px 0; background: #f4f7f6; }
.matrix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.matrix-card {
    background: white; padding: 45px 35px; border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05); position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex; flex-direction: column;
}
/* Cyber Hover Effect */
.matrix-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 8px;
    border: 2px solid transparent; transition: all 0.4s ease;
}
.matrix-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.matrix-card:hover::after { border-color: var(--primary-green); }
.matrix-icon { font-size: 48px; font-weight: 700; color: rgba(50, 53, 25, 0.05); margin-bottom: 20px; line-height: 1; }
.matrix-card h4 { font-size: 19px; color: var(--primary-green); font-weight: 600; margin-bottom: 15px; }
.matrix-card p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }
.tech-list { list-style: none; padding: 0; margin-bottom: 20px; flex-grow: 1; }
.tech-list li { position: relative; padding-left: 20px; font-size: 13.5px; color: #444; margin-bottom: 10px; line-height: 1.6; }
.tech-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.matrix-footer { font-weight: 500; font-style: italic; color: var(--primary-green) !important; padding-top: 20px; border-top: 1px solid #f0f0f0; margin-top: auto; margin-bottom: 0 !important; }

/* 5. Dark Data Engine (Pune & Analytics) */
.narachi-data-engine { padding: 120px 0; background: var(--primary-green); color: white; position: relative; overflow: hidden; }
/* Architectural Grid background */
.narachi-data-engine::before {
    content: ''; position: absolute; inset: 0; opacity: 0.05;
    background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
    background-size: 30px 30px;
}
.data-engine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; position: relative; z-index: 2; }
.data-block h3 { font-size: 32px; font-weight: 300; color: var(--gold); margin-bottom: 15px; }
.data-lead { font-size: 18px; font-weight: 300; margin-bottom: 15px; }
.data-block p { font-size: 15px; line-height: 1.8; opacity: 0.9; }
.methodology-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.method-tag { background: rgba(255,255,255,0.05); border-left: 3px solid var(--gold); padding: 12px 15px; font-size: 14px; font-weight: 500; }
.light-text li { color: rgba(255,255,255,0.9) !important; }
.insight-box { background: rgba(226, 198, 149, 0.1); border: 1px solid rgba(226, 198, 149, 0.3); padding: 25px; border-radius: 8px; }
.insight-box p { color: var(--gold); font-style: italic; font-weight: 500; margin: 0; opacity: 1; }

/* 6. Industries Cloud */
.narachi-industries-pro { padding: 120px 0; background: #ffffff; }
.industry-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; max-width: 900px; margin-left: auto; margin-right: auto; }
.industry-cloud span {
    background: #ffffff; border: 1px solid rgba(0,0,0,0.1); color: #444;
    font-size: 15px; font-weight: 600; padding: 15px 30px; border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: all 0.3s ease;
}
.industry-cloud span:hover { background: var(--primary-green); color: white; border-color: var(--primary-green); transform: scale(1.05); box-shadow: 0 10px 20px rgba(50, 53, 25, 0.15); }

/* 7. Blueprint Reasons Grid */
.narachi-blueprint-reasons { padding: 100px 0; background: #f4f7f6; }
.blueprint-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; }
.blueprint-card {
    background: white; padding: 40px 30px; border-radius: 8px;
    width: calc(33.333% - 25px); text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); position: relative; overflow: hidden;
}
.card-glow { position: absolute; top: 0; left: 0; width: 40px; height: 4px; background: var(--primary-green); transition: width 0.3s ease; }
.blueprint-card:hover .card-glow { width: 100%; background: var(--gold); }
.blueprint-card h5 { font-size: 17px; font-weight: 600; color: var(--primary-green); margin-bottom: 15px; margin-top: 10px; }
.blueprint-card p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* 8. Corporate CTA Card */
.narachi-corporate-closing { padding: 100px 0; background: white; }
.dbg-corporate-block { max-width: 800px; margin: 0 auto 80px auto; }
.dbg-corporate-block h3 { font-size: 28px; font-weight: 300; color: var(--primary-green); }
.dbg-corporate-block p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 15px; }
.pro-cta-card {
    background: #111412; /* Match terminal dark */
    color: white; padding: 80px 60px; border-radius: 16px;
    max-width: 950px; margin: 0 auto; box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background-image: radial-gradient(circle at top right, rgba(226, 198, 149, 0.1), transparent 40%);
}
.pro-cta-card h2 { font-size: 36px; font-weight: 300; color: white; margin-bottom: 20px; }
.pro-cta-card .gold-divider { margin: 0 auto 30px auto; }
.cta-desc { font-size: 16px; color: #aaa; line-height: 1.8; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }
.cta-mission { font-size: 22px; font-weight: 300; color: var(--gold); line-height: 1.5; }

/* Responsive Overrides */
@media (max-width: 1200px) {
    .matrix-grid { grid-template-columns: repeat(2, 1fr); }
    .blueprint-card { width: calc(50% - 25px); }
}
@media (max-width: 992px) {
    .hud-text-grid, .pro-about-grid, .data-engine-grid { grid-template-columns: 1fr; gap: 40px; }
    .hud-glass-card { padding: 40px 30px; }
    .pro-cta-card { padding: 50px 30px; }
}
@media (max-width: 768px) {
    .matrix-grid, .methodology-grid { grid-template-columns: 1fr; }
    .blueprint-card { width: 100%; }
    .tech-title { font-size: 32px; }
    .pro-cta-card h2 { font-size: 28px; }
}

/* ==========================================================================
   SAJAVAT STORIES - "ARTISAN BOUTIQUE" PREMIUM UI
   ========================================================================== */

.sajavat-artisan-wrapper {
    background-color: #fdfbf7; /* Very soft, warm paper/canvas white */
    color: #333;
}

/* Artisan Typography Utilities */
.elegant-label { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 4px; margin-bottom: 15px; text-transform: uppercase; }
.elegant-label.dark { color: var(--primary-green); }
.elegant-label.center { text-align: center; }
.section-heading-elegant { font-size: 38px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; font-family: 'Georgia', serif; /* Optional serif fallback for elegance */ }
.gold-divider-elegant { width: 60px; height: 2px; background: var(--gold); margin: 15px auto 30px auto; }
.lead-text-elegant { font-size: 22px; font-weight: 400; color: var(--primary-green); font-style: italic; text-align: center; }
.text-primary { color: var(--primary-green); }

/* 2. Glass Boutique Intro Card */
.sajavat-boutique-intro { position: relative; z-index: 10; margin-top: -90px; padding: 0 20px; }
.boutique-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(226, 198, 149, 0.5); /* Gold border */
    border-radius: 4px; /* Slightly sharper edges for a "framed art" feel */
    padding: 70px 60px;
    max-width: 950px; margin: 0 auto;
    box-shadow: 0 30px 60px rgba(226, 198, 149, 0.15); /* Gold-tinted shadow */
    text-align: center;
}
.artisan-badge {
    display: inline-block; border: 1px solid var(--gold); color: var(--primary-green);
    padding: 6px 20px; font-size: 11px; font-weight: 600; letter-spacing: 4px; border-radius: 30px; margin-bottom: 25px;
}
.artisan-title { font-size: 46px; font-weight: 300; color: var(--primary-green); letter-spacing: 6px; text-transform: uppercase; margin-bottom: 5px; }
.artisan-subtitle { font-size: 18px; font-weight: 400; color: #666; margin-bottom: 20px; letter-spacing: 1px; }
.intro-text-flow p { font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 15px; }

/* 3. About Sajavat (Split Grid) */
.sajavat-about-section { padding: 100px 0; background: #ffffff; }
.artisan-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-narrative h3 { font-size: 34px; font-weight: 300; color: var(--primary-green); }
.about-narrative p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 15px; }
.about-pillars { background: #fdfbf7; padding: 40px; border: 1px solid rgba(226,198,149,0.3); border-radius: 8px; }
.about-pillars h4 { font-size: 18px; font-weight: 400; color: var(--primary-green); margin-bottom: 20px; line-height: 1.5; }
.pillar-tags { display: flex; flex-direction: column; gap: 12px; }
.pillar-tags span { font-size: 15px; color: #444; font-weight: 500; }

/* 4. Collections Showcase */
.sajavat-collections-section { padding: 100px 0; background: #fdfbf7; }
.collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.collection-card {
    background: white; padding: 50px 40px; border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease; display: flex; flex-direction: column;
}
.collection-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(226, 198, 149, 0.2); border-color: var(--gold); }
.card-icon-gold { font-size: 40px; margin-bottom: 20px; }
.collection-card h4 { font-size: 22px; color: var(--primary-green); font-weight: 400; margin-bottom: 15px; }
.collection-card p { font-size: 14.5px; color: #666; line-height: 1.7; margin-bottom: 20px; }

/* Elegant Custom List */
.artisan-list { list-style: none; padding: 0; margin-bottom: 20px; flex-grow: 1; }
.artisan-list li { position: relative; padding-left: 20px; font-size: 14px; color: #444; margin-bottom: 8px; line-height: 1.6; }
.artisan-list li::before { content: '✧'; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 1px; }

.card-footer-note { font-weight: 500; font-style: italic; color: var(--primary-green) !important; padding-top: 20px; border-top: 1px solid #f0f0f0; margin-top: auto; margin-bottom: 0 !important; }

/* 5. Why Handmade & Occasions (Dual Section) */
.sajavat-dual-reasons { padding: 0; display: flex; }
.artisan-dual-grid { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
.reasons-block { background: var(--primary-green); color: white; padding: 100px 10%; }
.reasons-block h3 { font-size: 32px; font-weight: 300; margin-bottom: 15px; }
.reason-item { margin-bottom: 25px; padding-left: 20px; border-left: 2px solid var(--gold); }
.reason-item h5 { font-size: 16px; font-weight: 500; color: var(--gold); margin-bottom: 8px; }
.reason-item p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0; }

.occasions-block { background: white; padding: 100px 10%; }
.occasions-block h3 { font-size: 32px; font-weight: 300; margin-bottom: 15px; }
.occasion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.occ-box { background: #fdfbf7; padding: 25px; border-radius: 8px; border: 1px solid #f0f0f0; }
.occ-box h6 { font-size: 15px; color: var(--primary-green); font-weight: 600; margin-bottom: 10px; }
.occ-box p { font-size: 13px; color: #666; margin: 0; line-height: 1.5; }

/* 6. Sustainability & Business */
.sajavat-sustain-business { padding: 100px 0; background: #fdfbf7; }
.sustain-business-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.sustain-content h3, .business-content h3 { font-size: 30px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }
.sustain-content p, .business-content p { font-size: 15px; color: #555; line-height: 1.8; }
.check-list-elegant { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.check-list-elegant span { font-size: 14.5px; color: var(--primary-green); font-weight: 500; background: white; padding: 12px 15px; border-radius: 4px; border: 1px solid rgba(226,198,149,0.3); }

/* 7. Why Sajavat Features */
.sajavat-why-us { padding: 100px 0; background: white; }
.sajavat-features-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.feature-card { background: #fdfbf7; padding: 35px 25px; border-radius: 8px; width: calc(20% - 16px); min-width: 200px; border: 1px solid #f0f0f0; transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.feature-card h5 { font-size: 15px; font-weight: 600; color: var(--primary-green); margin-bottom: 12px; }
.feature-card p { font-size: 13.5px; color: #666; line-height: 1.6; margin: 0; }

/* 8. Corporate & CTA */
.sajavat-closing { padding: 100px 0; background: white; }
.boutique-cta-card {
    background: #ffffff;
    padding: 80px 60px; border-radius: 8px;
    max-width: 950px; margin: 0 auto;
    border: 1px solid rgba(226, 198, 149, 0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
.boutique-cta-card h2 { font-size: 36px; font-weight: 300; color: var(--primary-green); margin-bottom: 20px; }
.cta-mission-gold { font-size: 24px; font-weight: 400; color: var(--gold); font-style: italic; margin-top: 30px; }

/* Responsive Overrides */
@media (max-width: 1200px) {
    .collections-grid { grid-template-columns: 1fr; }
    .feature-card { width: calc(33.333% - 14px); }
}
@media (max-width: 992px) {
    .artisan-split-grid, .artisan-dual-grid, .sustain-business-grid { grid-template-columns: 1fr; gap: 40px; }
    .reasons-block, .occasions-block { padding: 60px 20px; }
    .boutique-glass-card { padding: 40px 30px; }
}
@media (max-width: 768px) {
    .occasion-grid, .check-list-elegant { grid-template-columns: 1fr; }
    .feature-card { width: 100%; }
    .artisan-title { font-size: 32px; }
    .boutique-cta-card h2 { font-size: 28px; }
    .boutique-cta-card { padding: 50px 20px; }
}
/* ==========================================================================
   DATYE GLOBAL TRADE - PREMIUM "GLOBAL CORPORATE" UI
   ========================================================================== */

.trade-global-wrapper {
    background-color: #f7f9f8; /* Crisp, corporate light grey */
    color: #333;
}

/* Typography & Utilities */
.trade-label { font-size: 11px; font-weight: 700; color: #888; letter-spacing: 4px; margin-bottom: 15px; text-transform: uppercase; }
.trade-label.center { text-align: center; }
.text-gold { color: var(--gold) !important; }
.text-white { color: #ffffff !important; }
.text-light-grey { color: #dcdcdc !important; }
.text-trade-green { color: var(--primary-green) !important; }
.section-heading-trade { font-size: 36px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }
.lead-text-trade { font-size: 22px; font-weight: 500; color: var(--primary-green); letter-spacing: 1px; }
.lead-sub-trade { font-size: 18px; color: var(--gold); font-style: italic; margin-top: 5px; }
.font-500 { font-weight: 500; }
.italic { font-style: italic; }

/* 2. Glass Intro Card */
.trade-corporate-intro { position: relative; z-index: 10; margin-top: -100px; padding: 0 20px; }
.trade-glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top: 5px solid var(--primary-green);
    border-radius: 8px;
    padding: 70px 60px;
    max-width: 1050px; margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.trade-badge {
    display: inline-block; background: #eef2ef; color: var(--primary-green);
    padding: 8px 20px; font-size: 11px; font-weight: 700; letter-spacing: 4px; border-radius: 4px; margin-bottom: 25px; border: 1px solid rgba(99, 107, 70, 0.1);
}
.trade-title { font-size: 46px; font-weight: 300; color: var(--primary-green); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 10px; }
.trade-subtitle { font-size: 18px; font-weight: 400; color: #555; margin-bottom: 25px; letter-spacing: 2px; }
.trade-intro-text p { font-size: 15.5px; color: #555; line-height: 1.8; margin-bottom: 15px; }

/* 3. About Section (Mission & Vision) */
.trade-about-section { padding: 100px 0; background: #ffffff; }
.trade-about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: stretch; }
.about-trade-content h3 { font-size: 32px; font-weight: 300; color: var(--primary-green); }
.about-trade-content p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 15px; }
.trade-highlight-box { background: #f7f9f8; padding: 25px; border-left: 4px solid var(--primary-green); border-radius: 0 8px 8px 0; }
.trade-highlight-box p { margin: 0; font-weight: 500; color: var(--primary-green); font-style: italic; }

.vision-trade-box { background: var(--primary-green); padding: 50px 40px; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); display: flex; flex-direction: column; justify-content: center; }
.trade-vision-list { list-style: none; padding: 0; margin: 0; }
.trade-vision-list li { position: relative; padding-left: 25px; font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.trade-vision-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 14px; top: 1px; }

/* 4. Core Services (4-Pillar Grid) */
.trade-services-section { padding: 100px 0; background: #f7f9f8; }
.trade-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.trade-service-card {
    background: white; padding: 50px 40px; border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.3s ease; display: flex; flex-direction: column;
}
.trade-service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(99, 107, 70, 0.1); border-color: var(--primary-green); }
.card-icon-trade { font-size: 40px; margin-bottom: 20px; }
.trade-service-card h4 { font-size: 22px; color: var(--primary-green); font-weight: 400; margin-bottom: 15px; }
.trade-service-card p { font-size: 14.5px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.trade-bullet-list { list-style: none; padding: 0; margin-bottom: 20px; flex-grow: 1; }
.trade-bullet-list li { position: relative; padding-left: 20px; font-size: 14px; color: #444; margin-bottom: 8px; line-height: 1.6; }
.trade-bullet-list li::before { content: '■'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 4px; }
.card-footer-trade { font-weight: 500; font-style: italic; color: var(--primary-green) !important; padding-top: 20px; border-top: 1px solid #f0f0f0; margin-top: auto; margin-bottom: 0 !important; }

/* 5. India Focus & Documentation (Dual Block) */
.trade-india-docs { padding: 0; }
.trade-dual-grid { display: grid; grid-template-columns: 1fr 1fr; }
.trade-dark-block { background: #1a1e1b; color: white; padding: 100px 10%; }
.trade-dark-block h3 { font-size: 32px; font-weight: 300; margin-bottom: 15px; }
.trade-tags-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.trade-tags-grid span { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 8px 15px; font-size: 13px; color: #ddd; border-radius: 4px; }

.trade-light-block { background: #ffffff; padding: 100px 10%; }
.trade-light-block h3 { font-size: 32px; font-weight: 300; color: var(--primary-green); margin-bottom: 15px; }
.trade-light-block p { font-size: 15px; color: #555; line-height: 1.8; }
.trade-highlight-text { font-size: 16px; font-weight: 600; color: var(--primary-green); padding: 15px; background: #f7f9f8; border-radius: 4px; border-left: 4px solid var(--gold); }

/* 6. Industries We Serve */
.trade-industries-section { padding: 100px 0; background: #f7f9f8; }
.trade-industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.industry-box { background: white; padding: 30px; border-radius: 8px; border-top: 3px solid var(--gold); box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.industry-box h5 { font-size: 16px; color: var(--primary-green); font-weight: 600; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.clean-list { list-style: none; padding: 0; margin: 0; }
.clean-list li { font-size: 14px; color: #555; margin-bottom: 8px; padding-left: 15px; position: relative; }
.clean-list li::before { content: '-'; position: absolute; left: 0; color: #aaa; }

/* 7. Solutions & Why Choose Us */
.trade-solutions-why { padding: 100px 0; background: white; }
.solutions-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.solution-card h3 { font-size: 28px; font-weight: 300; color: var(--primary-green); }
.solution-card p { font-size: 15px; color: #555; line-height: 1.8; }
.trade-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trade-checklist span { font-size: 14.5px; color: var(--primary-green); font-weight: 500; background: #f7f9f8; padding: 10px 15px; border-radius: 4px; border-left: 2px solid var(--gold); }

.why-trade-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.why-trade-item { background: #f7f9f8; padding: 30px 25px; border-radius: 8px; width: calc(20% - 16px); min-width: 200px; text-align: center; border: 1px solid transparent; transition: all 0.3s ease; }
.why-trade-item:hover { border-color: var(--gold); background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-5px); }
.why-trade-item h6 { font-size: 15px; font-weight: 600; color: var(--primary-green); margin-bottom: 12px; }
.why-trade-item p { font-size: 13.5px; color: #666; line-height: 1.6; margin: 0; }

/* 8. Corporate CTA */
.trade-corporate-closing { padding: 100px 0; background: #f7f9f8; }
.trade-cta-card {
    background: #ffffff;
    padding: 80px 60px; border-radius: 8px;
    max-width: 950px; margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary-green);
}
.trade-cta-card h2 { font-size: 36px; font-weight: 300; color: var(--primary-green); margin-bottom: 20px; }
.cta-desc-trade { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 30px; }
.cta-mission-trade { font-size: 24px; font-weight: 300; color: var(--primary-green); text-transform: uppercase; letter-spacing: 2px; }
.cta-mission-trade span { display: block; font-size: 16px; font-weight: 400; color: var(--gold); font-style: italic; margin-top: 10px; text-transform: none; letter-spacing: 0; }

/* Responsive Overrides */
@media (max-width: 1200px) {
    .trade-industry-grid { grid-template-columns: repeat(2, 1fr); }
    .why-trade-item { width: calc(33.333% - 14px); }
}
@media (max-width: 992px) {
    .trade-about-grid, .trade-services-grid, .trade-dual-grid, .solutions-top-grid { grid-template-columns: 1fr; gap: 40px; }
    .trade-dark-block, .trade-light-block { padding: 60px 20px; }
    .trade-glass-card { padding: 40px 30px; }
}
@media (max-width: 768px) {
    .trade-industry-grid, .trade-checklist { grid-template-columns: 1fr; }
    .why-trade-item { width: 100%; }
    .trade-title { font-size: 32px; }
    .trade-cta-card h2 { font-size: 28px; }
    .trade-cta-card { padding: 50px 20px; }
}