/* =========================================================
   Hector Enterprises & Management — Main Stylesheet
   ========================================================= */

/* ---- Variables ---- */
:root {
    --gold: #b28e5f;
    --gold-light: #e0c069;
    --gold-dark: #a8882e;
    --dark: #0d1520;
    --dark-2: #131f2e;
    --dark-3: #1a2840;
    --blue-accent: #4a9eda;
    --text: #e8eaf0;
    --text-muted: #8a9ab0;
    --white: #ffffff;
    --border: rgba(201, 168, 76, 0.2);
    --section-bg: #0f1c2c;
    --section-alt: #0b1622;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 40px rgba(0,0,0,0.35);
    --shadow-gold: 0 4px 24px rgba(201,168,76,0.18);
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}
.section-title.left-aligned { text-align: left; }

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn i { font-size: 0.8rem; }

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
}

.btn-dark {
    background: var(--dark-3);
    color: var(--gold);
    border-color: var(--border);
}
.btn-dark:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: rgba(13, 21, 32, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(201,168,76,0.08);
}
.navbar.scrolled {
    background: rgba(13, 21, 32, 0.98);
    padding: 0.75rem 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(201,168,76,0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.logo-icon {
    width: 40px; height: 40px;
    background: var(--gold);
    color: var(--dark);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
}
.logo-image {
    width: 120px;
    height: auto;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1; }
.logo-sub { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.05em; line-height: 1; margin-top: 2px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}
.nav-links a {
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 6px;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.nav-cta { margin-left: 0.5rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(13,21,32,0.92) 0%, rgba(13,21,32,0.75) 60%, rgba(201,168,76,0.08) 100%),
        url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--dark), transparent);
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem 1rem;
}
.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.hero-title .highlight { color: var(--gold); }
.hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(232,234,240,0.8);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---- Pillars Section ---- */
.pillars-section {
    background: var(--section-alt);
    padding: 6rem 0;
    text-align: center;
}
.pillars-section .section-title { margin-bottom: 3rem; }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.pillar-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
}
.pillar-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}
.pillar-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    /* opacity: 0.25; */
    line-height: 1;
    margin-bottom: 0.5rem;
}
.pillar-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.pillar-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
}
.cta-banner.cta-dark {
    background: linear-gradient(135deg, #0a1520 0%, #0f1e30 50%, rgba(201,168,76,0.04) 100%);
}
.cta-banner-inner {
    width: min(1200px, 92%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-banner-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}
.cta-banner-content p { color: var(--text-muted); font-size: 0.95rem; }

/* ---- About Section ---- */
.about-section {
    background: var(--section-bg);
    padding: 7rem 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-stat-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.about-stat-card:nth-child(even) { transform: translateY(2rem); }
.about-stat-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-0.5rem) !important; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}
.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    line-height: 1.4;
}

.about-text { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 1rem; line-height: 1.85; }
.about-features { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.about-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; color: var(--text); }
.about-feature i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* ---- Businesses Section ---- */
.businesses-section {
    background: var(--section-alt);
    padding: 6rem 0;
    overflow: hidden;
}
.businesses-section .section-title { margin-bottom: 1rem; }

.logos-track-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}
.logos-track-wrapper::before,
.logos-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
}
.logos-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--section-alt), transparent); }
.logos-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--section-alt), transparent); }

.logos-track {
    display: flex;
    gap: 1.5rem;
    animation: logoScroll 28s linear infinite;
    width: max-content;
}
.logos-track:hover { animation-play-state: paused; }

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

.logo-box {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 160px;
    transition: var(--transition);
    cursor: default;
}
.logo-box:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.logo-box i { font-size: 2rem; color: var(--gold); }
.logo-box span { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-align: center; letter-spacing: 0.03em; }

/* ---- Operations Section ---- */
.operations-section {
    background: var(--section-bg);
    padding: 7rem 0;
    text-align: center;
}

/* ---- Leaflet Map ---- */
.leaflet-map-container {
    height: 460px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    margin: 3rem 0 2rem;
    position: relative;
    box-shadow: 0 12px 50px rgba(0,0,0,0.5);
}

/* Override Leaflet attribution bar to match theme */
.leaflet-control-attribution {
    background: rgba(13,21,32,0.85) !important;
    color: var(--text-muted) !important;
    font-size: 0.65rem !important;
    border-radius: 6px 0 0 0 !important;
}
.leaflet-control-attribution a { color: var(--gold) !important; }

/* Zoom controls */
.leaflet-control-zoom a {
    background: var(--dark-3) !important;
    color: var(--white) !important;
    border-color: var(--border) !important;
    font-size: 1rem !important;
    line-height: 26px !important;
}
.leaflet-control-zoom a:hover { background: var(--gold) !important; color: var(--dark) !important; }

/* Custom pin markers */
.hec-pin {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
}
.pin-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 10px currentColor;
}
.pin-ring {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pingPulse 2.2s ease-out infinite;
    opacity: 0.5;
}
.gold-pin .pin-dot { background: var(--gold); width: 16px; height: 16px; }
.gold-pin .pin-ring { background: rgba(201,168,76,0.35); border: 2px solid var(--gold); }
.blue-pin .pin-dot  { background: var(--blue-accent); }
.blue-pin .pin-ring { background: rgba(74,158,218,0.25); border: 2px solid var(--blue-accent); }

@keyframes pingPulse {
    0%   { transform: translate(-50%,-50%) scale(0.6); opacity: 0.7; }
    70%  { transform: translate(-50%,-50%) scale(1.8); opacity: 0.15; }
    100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
}

/* Custom Leaflet popup */
.hec-leaflet-popup .leaflet-popup-content-wrapper {
    background: var(--dark-3) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
    padding: 0 !important;
}
.hec-leaflet-popup .leaflet-popup-tip-container { display: none; }
.hec-leaflet-popup .leaflet-popup-content { margin: 0 !important; }
.hec-popup {
    padding: 0.9rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.hec-popup strong { color: var(--white); font-size: 0.92rem; font-weight: 700; display: block; }
.hec-popup span   { color: var(--text-muted); font-size: 0.78rem; line-height: 1.4; display: block; }
.hec-leaflet-popup .leaflet-popup-close-button {
    color: var(--text-muted) !important;
    font-size: 1.1rem !important;
    top: 6px !important;
    right: 8px !important;
}
.hec-leaflet-popup .leaflet-popup-close-button:hover { color: var(--gold) !important; }

.countries-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot.gold { background: var(--gold); }
.legend-dot.blue { background: var(--blue-accent); }

.country-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.country-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: var(--transition);
}
.country-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.country-card i { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.6rem; display: block; }
.country-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 0.35rem; }
.country-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ---- Testimonials ---- */
.testimonials-section {
    background: var(--section-alt);
    padding: 7rem 0;
    text-align: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: transparent;
    transition: var(--transition);
}
.testimonial-card:hover::before { background: var(--gold); }
.testimonial-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--dark-3), rgba(201,168,76,0.04));
}
.testimonial-card.featured::before { background: var(--gold); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.quote-icon { color: var(--gold); font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.6; }
.testimonial-text { color: var(--text-muted); font-size: 0.93rem; line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.92rem; }
.testimonial-author span { display: block; color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }
.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }

/* ---- Contact Section ---- */
.contact-section {
    background: var(--section-bg);
    padding: 7rem 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.contact-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin: 1rem 0 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
    width: 42px; height: 42px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.contact-detail-item strong { display: block; color: var(--white); font-size: 0.88rem; font-weight: 600; }
.contact-detail-item span { display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.03em; }
.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success, .form-error {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.form-success { background: rgba(74,158,218,0.1); border: 1px solid rgba(74,158,218,0.3); color: #7dd3fc; }
.form-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.form-success i, .form-error i { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ---- Footer ---- */
.footer {
    background: var(--section-alt);
    border-top: 1px solid var(--border);
    padding: 5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}
.footer-brand { }
.footer-logo { margin-bottom: 1rem; }
.footer-tagline { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
    width: 36px; height: 36px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-socials a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.footer-links h4, .footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact p { display: flex; align-items: flex-start; gap: 0.65rem; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.65rem; }
.footer-contact i { color: var(--gold); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ---- Scroll Reveal Animation ---- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .pillars-section,
    .businesses-section,
    .testimonials-section { padding: 5rem 0; }
    .about-section,
    .operations-section,
    .contact-section { padding: 5rem 0; }
}

@media (max-width: 768px) {
    /* --- Nav --- */
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(13, 21, 32, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem 1.5rem;
        border-left: 1px solid var(--border);
        transition: right 0.35s ease;
        gap: 0.4rem;
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1.05rem; padding: 0.75rem 1rem; border-radius: 8px; }
    .nav-links a:hover { background: rgba(201,168,76,0.08); }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* --- Hero --- */
    .hero { min-height: 100svh; }
    .hero-content { padding: 6rem 1rem 2rem; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
    .hero-scroll-hint { display: none; }

    /* --- Sections --- */
    .pillars-section,
    .businesses-section,
    .testimonials-section { padding: 4rem 0; }
    .about-section,
    .operations-section,
    .contact-section { padding: 4rem 0; }
    .cta-banner { padding: 3rem 0; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-content h2 { font-size: 1.4rem; }

    /* --- About --- */
    .about-image-block { grid-template-columns: 1fr 1fr; }
    .about-stat-card:nth-child(2),
    .about-stat-card:nth-child(4) { margin-top: 0; }

    /* --- Map --- */
    .leaflet-map-container { height: 300px; margin: 2rem 0 1.5rem; }

    /* --- Forms --- */
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.75rem; }

    /* --- Footer --- */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* --- Cards --- */
    .country-cards { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.55rem; }
    .section-eyebrow { font-size: 0.72rem; }

    .hero-title { font-size: 1.75rem; }
    .hero-eyebrow { font-size: 0.7rem; }

    .about-image-block { grid-template-columns: 1fr 1fr; }
    .about-stat-card { padding: 1.25rem 1rem; }
    .stat-num { font-size: 1.8rem; }

    .leaflet-map-container { height: 240px; }
    .country-cards { grid-template-columns: 1fr 1fr; }

    .contact-form-wrapper { padding: 1.25rem; }
    .footer { padding-top: 3rem; }
    .footer-grid { gap: 1.75rem; padding-bottom: 2.5rem; }

    .back-to-top { bottom: 1rem; right: 1rem; width: 38px; height: 38px; }
    .btn { padding: 0.78rem 1.4rem; font-size: 0.88rem; }
}
