/* =========================================
   1. CORE DESIGN SYSTEM (LUXURY INDUSTRIAL)
========================================= */
:root {
    /* PALETTE: Deep Forest Green & Champagne Gold */
    --brand-primary: #14532d;    /* Deep Forest Green */
    --brand-dark: #022c22;       /* Black/Green */
    --brand-accent: #d97706;     /* Muted Gold */
    
    --brand-gray: #f3f4f6;       /* Light Gray Surface */
    --brand-border: #e5e7eb;     /* Border Color */
    
    --font-head: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* STRICT SHARP EDGES - The "Industrial" Look */
* { border-radius: 0 !important; }

body {
    font-family: var(--font-body);
    color: #4b5563;
    background-color: #fff;
    line-height: 1.8;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--brand-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Responsive Font Sizing */
.display-1 { font-size: 3rem; letter-spacing: -1px; }
@media (min-width: 992px) { .display-1 { font-size: 4.5rem; letter-spacing: -2px; } }

.text-italic { font-style: italic; font-family: var(--font-head); }
.text-accent { color: var(--brand-accent) !important; }
.bg-primary-dark { background-color: var(--brand-primary); color: white; }
.bg-dark-black { background-color: var(--brand-dark); color: white; }

/* Section Spacing */
.section-padding { padding: 80px 0; }
@media (min-width: 992px) { .section-padding { padding: 120px 0; } }

/* BUTTONS */
.btn-luxury {
    background-color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    color: white;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    width: 100%; /* Full width on mobile */
}
@media (min-width: 768px) { .btn-luxury { width: auto; } }

.btn-luxury:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(20, 83, 45, 0.15);
}
.marquee-div{
    width: 100%; overflow: hidden;
}
.main-border{
        background-color: #ffffff0a;
    backdrop-filter: blur(10px);
    padding: 10px;
    position: relative;
    border: 1px solid #ffffff12;
}
.btn-outline-luxury {
    background-color: transparent;
    border: 1px solid currentColor;
    color: var(--brand-primary);
    padding: 15px 35px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: 0.3s;
    width: 100%;
}
@media (min-width: 768px) { .btn-outline-luxury { width: auto; } }

.btn-outline-luxury:hover {
    background-color: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

/* =========================================
   2. HEADER & LOGO
========================================= */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #f3f4f6;
    padding-top: 15px; padding-bottom: 15px;
}

/* MODERN LOGO BOX */
.logo-box {
    width: 45px; height: 45px;
    background-color: var(--brand-primary);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}
.navbar-brand:hover .logo-box { background-color: var(--brand-accent); }

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #374151 !important;
}

/* =========================================
   3. HERO SECTION
========================================= */
.modern-hero {
    background-color: var(--brand-gray);
    min-height: auto; 
    padding-bottom: 60px;
    position: relative;
    display: flex; align-items: center;
}
@media (min-width: 992px) { .modern-hero { min-height: 90vh; padding-bottom: 0; } }

/* Responsive Hero Image */
.hero-bg-img {
    position: relative; 
    width: 100%; 
    height: 300px;
    background: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?q=80&w=2069&auto=format&fit=crop') center/cover;
    display: block;
}
@media (min-width: 992px) {
    .hero-bg-img {
        position: absolute; top: 0; right: 0; width: 45%; height: 100%;
    }
}

/* Overlay only on desktop */
.hero-overlay { display: none; }
@media (min-width: 992px) {
    .hero-overlay {
        display: block; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
        background: rgba(2, 44, 34, 0.3);
    }
}

.stat-badge {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 15px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .stat-badge { width: auto; min-width: 180px; text-align: left; padding: 20px; } }

/* =========================================
   4. MARQUEE & SERVICES
========================================= */
.marquee-section { 
    padding: 50px 0;
    overflow: hidden; 
}
.marquee-track { display: flex; align-items: center; gap: 4rem; animation: scroll 30s linear infinite; }
.partner-logo { height: 28px; filter: grayscale(100%); opacity: 0.4; transition: 0.4s; }
.partner-logo:hover {  filter: grayscale(10%); opacity: 1; transition: 0.4s; }
@media (min-width: 768px) { .partner-logo { height: 35px; } .marquee-track { gap: 6rem; } }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.service-card {
    background: white;
    padding: 40px 30px;
    border: 1px solid #f3f4f6;
    transition: all 0.4s ease;
    height: 100%;
}
.service-card:hover { border-color: var(--brand-primary); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.04); }
.service-icon { font-size: 2rem; color: var(--brand-primary); margin-bottom: 25px; }
.service-link {
    font-family: var(--font-head); 
    color: var(--brand-dark);
    text-decoration: none; font-size: 1.1rem; border-bottom: 1px solid #e5e7eb;
    padding-bottom: 5px; transition: 0.3s;
}
.service-link:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

/* =========================================
   5. PROCESS, REVIEWS & FORM
========================================= */
.step-number {
    font-size: 3rem; color: var(--brand-primary); font-family: var(--font-head); font-style: italic; line-height: 1;
}

.review-card {
    background: #101618;
    padding: 30px;
    border-top: 4px solid var(--brand-accent);
    height: 100%;
}
@media (min-width: 992px) { .review-card { padding: 50px; } }

.form-control, .form-select {
    background: white; border: 1px solid #e5e7eb; padding: 15px;
    font-family: var(--font-body); font-size: 1rem;
}
.form-control:focus { border-color: var(--brand-primary); box-shadow: none; }

/* =========================================
   6. MODERN FOOTER
========================================= */
.modern-footer {
    background-color: var(--brand-dark);
    position: relative;
    z-index: 10;
}

/* Footer Links with Hover Slide Effect */
.footer-link {
    color: #9ca3af; /* Muted gray */
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--brand-accent); /* Gold on hover */
    transform: translateX(8px); /* Slide right */
}

/* Social Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-btn:hover {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    transform: translateY(-3px);
}

/* Utility for text hover */
.hover-white:hover { color: white !important; transition: 0.3s; }
.hover-accent:hover { color: var(--brand-accent) !important; transition: 0.3s; }
/* =========================================
   5. MODERN PROCESS SECTION (Active Phase Style)
========================================= */

.process-box {
    background: #fff;
    border: 1px solid var(--brand-border);
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

/* The Top "Status" Bar */
.process-status-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb; /* Gray inactive state */
    position: relative;
    overflow: hidden;
}

.process-status-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%;
    height: 100%;
    background: var(--brand-primary); /* Green active state */
    transition: width 0.4s ease;
}

/* Content Area */
.process-content {
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

/* Large Watermark Number */
.process-number {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 4rem;
    color: #f3f4f6;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    z-index: -1;
    transition: all 0.4s ease;
}

/* Icon Styling */
.process-icon {
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Typography */
.process-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.process-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- HOVER EFFECTS --- */

/* Lift Card */
.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Fill Status Bar */
.process-box:hover .process-status-bar::after {
    width: 100%;
}

/* Number Change */
.process-box:hover .process-number {
    color: var(--brand-accent); /* Gold number on hover */
    opacity: 0.3;
    transform: scale(1.1);
}

/* Icon Animation */
.process-box:hover .process-icon {
    color: var(--brand-primary);
    transform: scale(1.1);
}
@media (max-width: 991px) {
    /* Make links larger on mobile for easier tapping */
    .navbar-nav .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    /* Ensure the contact button has space */
    .navbar-collapse .btn-luxury {
        margin-top: 15px;
        width: 100%;
    }
}
@media (max-width: 768px){
    .modern-hero {
        flex-direction: column;
    }
}