/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --accent-gold: #6D5F32;
    --dark-green: #1e3c33;
    --text-main: #333333;
    --text-muted: #666666;
}


/* ============================================
   SEO + ACCESSIBILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    color: var(--text-main);
}
/* ==========================================================================
   GLOBAL VARIABLES (NAVBAR ONLY)
   ========================================================================== */
:root {
    --brand-gold: #6D5F32;
}
/* ==========================================================================
   2. NAV-PILL (FIXED AT TOP)
   ========================================================================== */
.nav-pill {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #ffffff;
    padding: 8px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: auto;
    max-width: 95%;
    z-index: 1030;
}

.nav-pill.scrolled {
    background: rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    top: 10px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-collapse {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    color: #6D5F32 !important;
    font-weight: 500;
    padding: 8px 12px !important;
    transition: all 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--brand-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
}

.nav-pill.scrolled .navbar-nav .nav-link {
    color: var(--brand-gold) !important;
}

.nav-pill.scrolled .navbar-nav .nav-link::after {
    background-color: var(--brand-gold);
}

.src-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f0;
    border-radius: 30px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    gap: 5px;
}

.nav-pill.scrolled .src-container {
    background-color: transparent;
    border: 1px solid var(--brand-gold);
}

.nav-pill.scrolled .src-btn {
    color: var(--brand-gold);
}

.nav-pill.scrolled .src-container input {
    color: var(--brand-gold);
}

.nav-pill.scrolled .src-container input::placeholder {
    color: var(--brand-gold);
    opacity: 0.7;
}

.src-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #6D5F32;
    font-size: 14px;
    transition: all 0.3s ease;
}

.src-btn:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.src-container input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 0;
    opacity: 0;
    padding: 0;
    transition: all 0.3s ease;
    font-size: 13px;
}

.src-container.active input {
    width: 150px;
    opacity: 1;
    padding: 4px 8px;
}

.mobile-dropdown-container {
    position: relative;
    display: none;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(109, 95, 50, 0.1);
    border: none;
    border-radius: 40px;
    padding: 8px 16px;
    font-weight: 500;
    color: #6D5F32;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-pill.scrolled .mobile-menu-btn {
    color: var(--brand-gold);
    background: transparent;
    border: 1px solid var(--brand-gold);
}

.mobile-menu-btn:hover {
    background: rgba(109, 95, 50, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn i {
    font-size: 18px;
}

.mobile-menu-btn span {
    font-size: 14px;
}

.mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1050;
    overflow: hidden;
}

.mobile-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #6D5F32;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid rgba(178, 161, 108, 0.1);
    transition: all 0.3s ease;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    background: rgba(178, 161, 108, 0.15);
    padding-left: 28px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    background: #000;
    margin-top: 0;
    padding-top: 0;
}

.hero-overlay {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../images/2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 0;
}

.hero-content-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 8%;
}

.years-badge {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background: rgba(174, 147, 43, 0.47);
    backdrop-filter: blur(30px);
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 6px 15px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title span {
    display: block;
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #f1f1f1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-top-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary-modern {
    background: var(--accent-gold);
    color: white;
    padding: 14px 36px;
    font-size: 0.95rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary-modern:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-stats-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stats-grid-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card-bottom {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.stat-card-bottom:hover {
    transform: translateY(-5px);
}

.stat-number-bottom {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-number-bottom span {
    font-size: 1.8rem;
    font-weight: 600;
}

.stat-label-bottom {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.py-6 {
    padding: 80px 0;
}

.about-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.about-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.about-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.quote-wrapper {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-gold);
}

.quote-wrapper p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-main);
}

.quote-italic {
    font-weight: 700;
    color: var(--accent-gold);
}

.about-image-stack {
    width: 100%;
}

.image-main {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-main:hover {
    transform: scale(1.02);
}

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

/* Features */
.features-section {
    margin-top: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    width: 100%;
}

.feature-rectangle {
    border: 2px solid var(--accent-gold);
    padding: 1rem;
    width: 100%;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.feature-rectangle:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.feature-rectangle:hover .feature-text {
    color: white;
}

/* Mission & Vision */
.bg-light {
    background: #ffffff;
}

.mission-title,
.vision-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
    border-left: 5px solid var(--accent-gold);
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.mission-text,
.vision-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-gold), #8a7a3e);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-text:hover,
.vision-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mission-text i,
.vision-text i {
    margin-right: 0.5rem;
    opacity: 0.8;
}

/* ============================================
   FOOTER - UPDATED WITH WHITE TEXT
   ============================================ */
.footer {
    text-align: center;
    background: var(--accent-gold);
    color: #ffffff;
    padding: 20px 0;
    font-weight: 500;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #d4af37;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.align-items-center {
    align-items: center !important;
}

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

.rounded {
    border-radius: 12px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* DESKTOP (993px and above) */
@media (min-width: 993px) {
    .mobile-dropdown-container {
        display: none !important;
    }
    .collapse.navbar-collapse {
        display: flex !important;
    }
    .navbar-toggler {
        display: none !important;
    }
    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        width: auto;
    }
}

/* TABLET (max-width: 992px) */
@media (max-width: 992px) {
    .nav-pill {
        padding: 6px 16px !important;
        width: 95% !important;
    }
    
    .collapse.navbar-collapse {
        display: none !important;
    }
    
    .mobile-dropdown-container {
        display: block !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .navbar-nav {
        display: none !important;
    }
    
    .src-container input {
        width: auto !important;
        opacity: 1 !important;
    }
    
    .stats-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-top-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .col-lg-6, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .about-image-stack {
        margin-top: 2rem;
    }
    
    .hero-content-wrapper {
        padding: 0 5%;
    }
}

/* MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    .nav-pill {
        width: 95% !important;
        top: 10px;
    }
    
    .hero-content-wrapper {
        padding: 0 5%;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stat-number-bottom {
        font-size: 1.8rem;
    }
    
    .stat-number-bottom span {
        font-size: 1.2rem;
    }
    
    .stat-label-bottom {
        font-size: 0.7rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-subtitle {
        font-size: 1.8rem;
    }
    
    .mission-title, .vision-title {
        font-size: 1.6rem;
    }
    
    .mission-text, .vision-text {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .py-6 {
        padding: 50px 0;
    }
}

/* SMALL MOBILE (max-width: 576px) */
@media (max-width: 576px) {
    .nav-pill {
        padding: 5px 12px !important;
        width: 95% !important;
    }
    
    .hero-content-wrapper {
        padding: 0 4%;
    }
    
    .years-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .btn-primary-modern, 
    .btn-outline-light {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    .stat-number-bottom {
        font-size: 1.3rem;
    }
    
    .stat-number-bottom span {
        font-size: 0.9rem;
    }
    
    .stat-label-bottom {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
    
    .stats-grid-bottom {
        gap: 0.5rem;
    }
    
    .stat-card-bottom {
        padding: 0.5rem;
    }
    
    .mobile-menu-btn span {
        display: none;
    }
    
    .navbar-brand img {
        width: 35px;
        height: 35px;
    }
    
    .src-container {
        max-width: 110px;
    }
    
    .src-container input {
        font-size: 11px;
    }
}

/* EXTRA SMALL (max-width: 400px) */
@media (max-width: 400px) {
    .nav-pill {
        padding: 4px 10px !important;
        gap: 8px !important;
    }
    
    .src-container {
        max-width: 90px;
        padding: 4px 8px !important;
    }
    
    .src-container input {
        min-width: 40px;
    }
    
    .mobile-menu-btn {
        padding: 5px 8px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}