/* ============================================
   ODUN ENVIRONMENTAL LIMITED - MAIN STYLESHEET
   Modern Corporate Website - 2026
   ============================================ */

/* CSS Variables */
:root {
    --primary-green: #0d4a2a;
    --primary-green-dark: #093820;
    --primary-green-light: #1a6b3d;
    --accent-gold: #c9a227;
    --accent-gold-light: #e0b83a;
    --white: #ffffff;
    --off-white: #f8faf9;
    --light-gray: #f0f2f1;
    --medium-gray: #e2e6e4;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b7280;
    --mint-bg: #e8f5ee;
    --silver: #c0c0c0;
    --border-light: #d1d5db;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-gold: 0 4px 14px rgba(201, 162, 39, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-green);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.text-gold { color: var(--accent-gold); }
.text-green { color: var(--primary-green); }
.text-white { color: var(--white); }
.text-gray { color: var(--text-light); }

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .logo-text {
    color: var(--primary-green);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-logo {
    color: var(--primary-green);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-icon {
    background: var(--primary-green);
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-cta {
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    padding: 1rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}

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

.dropdown-item {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--mint-bg);
    color: var(--primary-green);
    border-left-color: var(--accent-gold);
    padding-left: 1.75rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.navbar.scrolled .mobile-toggle span {
    background: var(--primary-green);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 50%, var(--primary-green-light) 100%);
    background-size: 200% 200%;
    animation: heroGradient 15s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.8s ease-out 0.3s both;
}

.hero-badge .badge-icon {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title .highlight {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-green {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 74, 42, 0.3);
}

.btn-green:hover {
    background: var(--primary-green-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 74, 42, 0.4);
}

.btn-outline-green {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline-green:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
    padding: 6rem 0;
    position: relative;
}

.section-light { background: var(--white); }
.section-off-white { background: var(--off-white); }
.section-mint { background: var(--mint-bg); }
.section-green { background: var(--primary-green); color: var(--white); }
.section-green h2, .section-green h3 { color: var(--white); }
.section-green p { color: rgba(255, 255, 255, 0.9); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    vertical-align: middle;
    margin: 0 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-section {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* ============================================
   STATS COUNTER
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-divider {
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--mint-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary-green);
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--accent-gold);
    gap: 0.75rem;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US / FEATURES
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid var(--medium-gray);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    background: var(--accent-gold);
    transform: rotate(10deg) scale(1.1);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.about-highlights {
    margin: 2rem 0;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.about-highlight:hover {
    background: var(--mint-bg);
    transform: translateX(5px);
}

.about-highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.about-highlight-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    margin: 1rem;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   NEWS & INSIGHTS
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--medium-gray);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: var(--accent-gold);
}

.news-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-green-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-brand .tagline {
    color: var(--accent-gold);
    font-style: italic;
    font-family: var(--font-heading);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* Anniversary Badge */
.anniversary-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.anniversary-badge img {
    height: 60px;
    width: auto;
}

.anniversary-badge span {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: #dc2626;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(13, 74, 42, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-gray);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-green);
    text-decoration: underline;
}

.file-upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px dashed var(--medium-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-upload:hover {
    border-color: var(--primary-green);
    background: var(--mint-bg);
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-icon {
    width: 40px;
    height: 40px;
    background: var(--mint-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.file-upload-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.file-upload-text span {
    color: var(--primary-green);
    font-weight: 600;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    justify-content: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.show {
    display: block;
    animation: scaleIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--mint-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 2rem;
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--primary-green);
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-gold);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-green);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--accent-gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--mint-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.emergency-card {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: var(--white);
    border-left-color: var(--accent-gold);
}

.emergency-card h4,
.emergency-card p,
.emergency-card a {
    color: var(--white);
}

.emergency-card .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   SERVICE PAGE SPECIFIC
   ============================================ */

.service-hero {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    padding: 10rem 0 5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.service-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-detail-list {
    margin: 1.5rem 0;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.service-detail-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.service-methodology {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.method-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: var(--transition-smooth);
    position: relative;
}

.method-step:hover {
    background: var(--mint-bg);
    transform: translateY(-5px);
}

.method-step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-size: 0.9rem;
}

.method-step h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.method-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   CAREERS PAGE
   ============================================ */

.career-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-smooth);
}

.career-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.career-title {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.career-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.career-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.career-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.career-requirements {
    margin-bottom: 1.5rem;
}

.career-requirements h5 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.career-requirements ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.career-requirements ul li::before {
    content: '•';
    color: var(--accent-gold);
    font-weight: 700;
}

/* ============================================
   NEW SECTIONS (MERGED FROM NEW CSS)
   ============================================ */

/* Trusted By Carousel - Layout Locked */
.trusted-by {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}
.trusted-by h2 {
    color: #006400;
    margin-bottom: 40px;
    font-size: 2.2rem;
}
.clients-carousel {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}
.carousel-track {
    display: inline-flex;
    animation: scroll 35s linear infinite;
}
.carousel-track img {
    height: 65px;
    width: 120px; /* Force width so layout doesn't collapse */
    object-fit: contain; /* Keeps the logo proportional inside the 120px box */
    margin: 0 20px;
    opacity: 0.9;
    transition: all 0.4s ease;
    flex-shrink: 0; /* Prevents images from squishing */
}
.carousel-track img:hover {
    opacity: 1;
    transform: scale(1.08);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
}
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 40px 20px;
}

.project-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-item h3 {
    padding: 15px;
    text-align: center;
    background: #006400;
    color: white;
    font-size: 1.1rem;
}

/* About Images Grid */
.about-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.about-images-grid .about-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
}

/* Services Images */
.services-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-img-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-dark);
        padding: 1rem 0;
        border-bottom: 1px solid var(--medium-gray);
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding-left: 1rem;
        border-left: none;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .methodology-steps {
        grid-template-columns: 1fr 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* New sections responsive */
    .carousel-track img {
        height: 55px;
        margin: 0 20px;
    }
    
    .project-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.hidden { display: none; }

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-light);
}

/* Selection */
::selection {
    background: var(--primary-green);
    color: var(--white);
}
/* ============================================
   OVERRIDES FOR NAVBAR AND LOGO
   ============================================ */

/* Force Navbar to be solid white immediately */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    padding: 0.75rem 0 !important;
}

/* Force Nav Links to be Bold Green */
.nav-link {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
}
.nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Make the Logo Bigger */
.nav-logo img {
    height: 80px !important; /* Increased from 50px to 80px */
    width: auto !important;
}

/* Make sure the mobile menu hamburger icon is green */
.mobile-toggle span {
    background: var(--primary-green) !important;
}
/* ============================================
   OVERRIDES FOR NAVBAR AND LOGO
   ============================================ */

/* Force Navbar to be solid white immediately */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    padding: 0.75rem 0 !important;
}

/* Force Nav Links to be Bold Green */
.nav-link {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
}
.nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Make the Logo Bigger */
.nav-logo img {
    height: 80px !important; /* Increased from 50px to 80px */
    width: auto !important;
}

/* Make sure the mobile menu hamburger icon is green */
.mobile-toggle span {
    background: var(--primary-green) !important;
}
/* Push Hero Content down below the solid white navbar */
.hero-content {
    padding-top: 60px !important;
}
/* ============================================
   NEW OVERRIDES AND ADDITIONS
   ============================================ */

/* Push Hero Content down below the solid white navbar */
.hero-content {
    padding-top: 80px !important;
}

/* Make 'Delivering Impact' entirely gold */
.hero-title .highlight {
    color: var(--accent-gold) !important;
}
.hero-title .highlight::after {
    display: none !important; 
}

/* New ISO Certification Bar */
.cert-bar {
    background: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}
.cert-bar p {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.95rem;
    margin: 0;
}

/* Anniversary Box - White Background */
.anniversary-badge {
    background: var(--white) !important;
    border: 1px solid var(--medium-gray) !important;
}
.anniversary-badge span {
    color: var(--primary-green) !important;
    font-weight: 700;
}
.anniversary-badge img {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

/* Social Media Icons in Footer */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}
.footer-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    color: var(--white);
}
/* ============================================
   ALL NAVBAR, HERO, AND FOOTER OVERRIDES
   ============================================ */

/* Force Navbar to be solid white immediately */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    padding: 0.75rem 0 !important;
}
.nav-link {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
}
.nav-link:hover {
    color: var(--accent-gold) !important;
}
.nav-logo img {
    height: 80px !important; 
    width: auto !important;
}
.mobile-toggle span {
    background: var(--primary-green) !important;
}

/* Push Hero Content down so it doesn't hide under the white navbar */
.hero-content {
    padding-top: 80px !important;
}

/* Make 'Delivering Impact' entirely gold */
.hero-title .highlight {
    color: var(--accent-gold) !important;
}
.hero-title .highlight::after {
    display: none !important; 
}

/* New ISO Certification Bar */
.cert-bar {
    background: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}
.cert-bar p {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.95rem;
    margin: 0;
}

/* Anniversary Box - White Background */
.anniversary-badge {
    background: var(--white) !important;
    border: 1px solid var(--medium-gray) !important;
}
.anniversary-badge span {
    color: var(--primary-green) !important;
    font-weight: 700;
}
.anniversary-badge img {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

/* Social Media Icons in Footer */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}
.footer-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    color: var(--white);
}
/* Make Clients Carousel Move Faster */
.carousel-track {
    animation: scroll 25s linear infinite !important; 
}
/* Remove any mystery dots/bullets from the navigation menus */
.nav-menu, .nav-menu li, .dropdown-menu, .dropdown-menu li {
    list-style-type: none !important;
}
.nav-menu li::before, .dropdown-menu li::before {
    content: none !important;
}
/* FORCE Carousel Images to Show */
.clients-carousel {
    overflow: hidden !important;
}
.carousel-track img {
    display: inline-block !important;
    width: auto !important;
    opacity: 1 !important;
    height: 75px !important;
    margin: 0 35px !important;
}
/* ============================================
   ABOUT PAGE SPECIFIC LAYOUTS
   ============================================ */

/* Core Values: 3 on top, 2 centered on bottom */
.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}
.values-grid .feature-item {
    grid-column: span 2;
}
.values-grid .feature-item:nth-child(4) {
    grid-column: 2 / 4; /* Centers the 4th item */
}
.values-grid .feature-item:nth-child(5) {
    grid-column: 4 / 6; /* Centers the 5th item */
}
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .values-grid .feature-item,
    .values-grid .feature-item:nth-child(4),
    .values-grid .feature-item:nth-child(5) {
        grid-column: span 1;
    }
}

/* Why Odun Grid */
.why-odun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.why-odun-box {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-smooth);
}
.why-odun-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}
.why-odun-box h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.why-odun-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}
.why-odun-box ul {
    list-style: none;
    padding-left: 0;
}
.why-odun-box ul li {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}
.why-odun-box ul li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}
/* ============================================
   ABOUT PAGE SPECIFIC LAYOUTS
   ============================================ */

/* Core Values: 3 on top, 2 centered on bottom */
.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}
.values-grid .feature-item {
    grid-column: span 2;
}
.values-grid .feature-item:nth-child(4) {
    grid-column: 2 / 4; /* Centers the 4th item */
}
.values-grid .feature-item:nth-child(5) {
    grid-column: 4 / 6; /* Centers the 5th item */
}
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .values-grid .feature-item,
    .values-grid .feature-item:nth-child(4),
    .values-grid .feature-item:nth-child(5) {
        grid-column: span 1;
    }
}

/* Why Odun Grid */
.why-odun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.why-odun-box {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-smooth);
}
.why-odun-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}
.why-odun-box h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.why-odun-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}
.why-odun-box ul {
    list-style: none;
    padding-left: 0;
}
.why-odun-box ul li {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}
.why-odun-box ul li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}
/* ============================================
   ALL NAVBAR, HERO, AND FOOTER OVERRIDES
   ============================================ */

/* Force Navbar to be solid white immediately */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    padding: 0.75rem 0 !important;
}
.nav-link {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
}
.nav-link:hover {
    color: var(--accent-gold) !important;
}
.nav-logo img {
    height: 80px !important; 
    width: auto !important;
}
.mobile-toggle span {
    background: var(--primary-green) !important;
}

/* Push Hero Content down so it doesn't hide under the white navbar */
.hero-content {
    padding-top: 80px !important;
}

/* Make 'Delivering Impact' entirely gold */
.hero-title .highlight {
    color: var(--accent-gold) !important;
}
.hero-title .highlight::after {
    display: none !important; 
}

/* New ISO Certification Bar */
.cert-bar {
    background: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}
.cert-bar p {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.95rem;
    margin: 0;
}

/* Anniversary Box - White Background */
.anniversary-badge {
    background: var(--white) !important;
    border: 1px solid var(--medium-gray) !important;
}
.anniversary-badge span {
    color: var(--primary-green) !important;
    font-weight: 700;
}
.anniversary-badge img {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

/* Social Media Icons in Footer */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}
.footer-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    color: var(--white);
}
/* Make Clients Carousel Move Faster */
.carousel-track {
    animation: scroll 25s linear infinite !important; 
}
/* Trusted By Carousel - Two Row Version */
.trusted-by {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}
.trusted-by h2 {
    color: #006400;
    margin-bottom: 40px;
    font-size: 2.2rem;
}
.clients-carousel {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0; /* Tighter padding since there are two rows */
}
.carousel-track {
    display: inline-flex;
    gap: 20px; /* Replaced margin with gap for cleaner spacing */
}
.carousel-track img {
    height: 65px;
    width: 120px;
    object-fit: contain; 
    opacity: 0.9;
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.carousel-track img:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* Top Row: Scrolls Left to Right */
.carousel-track-top {
    animation: scroll 35s linear infinite;
    margin-bottom: 20px; /* Space between the two rows */
}

/* Bottom Row: Scrolls Right to Left */
.carousel-track-bottom {
    animation: scroll-reverse 40s linear infinite; /* Slightly different speed looks more natural */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
/* Why Odun Grid - Forced 2 Column Layout */
.why-odun-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces exactly 2 columns */
    gap: 2rem;
}
.why-odun-box {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-smooth);
}
.why-odun-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}
.why-odun-box h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.why-odun-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}
.why-odun-box ul {
    list-style: none;
    padding-left: 0;
}
.why-odun-box ul li {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}
.why-odun-box ul li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive: Stack to 1 column on mobile */
@media (max-width: 768px) {
    .why-odun-grid {
        grid-template-columns: 1fr;
    }
}