/* ============================================================
   Compact Business — Emerald Green
   Dense, information-rich layout inspired by financial dashboards
   Fonts: Manrope (UI/body), Bitter (headings)
   ============================================================ */

/* === CSS Variables === */
:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --primary-glow: rgba(5, 150, 105, 0.12);
    --primary-bg: rgba(5, 150, 105, 0.05);
    --primary-border: rgba(5, 150, 105, 0.18);
    --accent: #0d9488;
    --text: #111827;
    --text-secondary: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f8fafb;
    --bg-offset: #f1f5f9;
    --bg-dark: #0c1220;
    --bg-dark-card: #131d2e;
    --border: #d1d5db;
    --border-light: #e5e7eb;
    --border-subtle: #f3f4f6;
    --radius-xs: 3px;
    --radius: 5px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-focus: 0 0 0 2px rgba(5, 150, 105, 0.2);
    --transition: 0.15s ease;
    --transition-med: 0.25s ease;
    --max-width: 1180px;
    --font-body: 'Manrope', -apple-system, system-ui, sans-serif;
    --font-heading: 'Bitter', Georgia, 'Times New Roman', serif;
    --navbar-h: 52px;
    --section-pad: 3.75rem;
    --section-pad-sm: 2.75rem;
    --gap-grid: 1rem;
    --gap-grid-lg: 1.25rem;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    font-size: 0.9rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: -0.006em;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.22;
    letter-spacing: -0.015em;
    color: var(--text);
}

/* === Layout Container === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* === Scroll Reveal Animations === */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.04s; }
.reveal-delay-2 { transition-delay: 0.08s; }
.reveal-delay-3 { transition-delay: 0.12s; }
.reveal-delay-4 { transition-delay: 0.16s; }
.reveal-delay-5 { transition-delay: 0.2s; }
.reveal-delay-6 { transition-delay: 0.24s; }

/* ============================================================
   NAVBAR — compact, utilitarian top bar
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-bottom-color: var(--border-light);
    box-shadow: var(--shadow-xs);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-h);
}
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    letter-spacing: -0.01em;
    transition: color var(--transition);
}
.navbar.scrolled .navbar-brand { color: var(--text); }
.navbar-brand:hover { color: #fff; }
.navbar.scrolled .navbar-brand:hover { color: var(--text); }
.navbar-logo { height: 28px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-links a {
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    transition: all var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover {
    color: var(--text);
    background: var(--bg-alt);
}
.nav-cta {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    font-weight: 600 !important;
    font-size: 0.76rem !important;
    padding: 0.28rem 0.8rem !important;
}
.nav-cta:hover {
    background: #fff !important;
    color: var(--primary) !important;
    border-color: #fff !important;
}
.navbar.scrolled .nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}
.navbar.scrolled .nav-cta:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
}

/* === Hamburger Toggle === */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    position: relative;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all 0.25s ease;
    border-radius: 1px;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ============================================================
   HERO — short, dark, data-dense header
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(168deg, #071e16 0%, #0a3023 30%, var(--primary-dark) 70%, #065f46 100%);
    color: #fff;
    padding: 0;
    min-height: 62vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 15% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 500px 300px at 85% 25%, rgba(5, 150, 105, 0.1) 0%, transparent 70%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.01) 60px,
            rgba(255, 255, 255, 0.01) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.01) 60px,
            rgba(255, 255, 255, 0.01) 61px
        );
    pointer-events: none;
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
    max-width: 580px;
    padding: 5.5rem 0 3.5rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(168deg, rgba(7, 30, 22, 0.92) 0%, rgba(10, 48, 35, 0.88) 50%, rgba(4, 120, 87, 0.82) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-xs);
    font-size: 0.68rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6ee7b7;
}
.hero-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34d399;
    flex-shrink: 0;
    animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 0.7rem;
    letter-spacing: -0.025em;
}
.hero-sub {
    font-size: 0.95rem;
    opacity: 0.72;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 440px;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scroll-bob 2s ease-in-out infinite;
}
.hero-scroll svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.3);
}
@keyframes scroll-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

/* Decorative shapes — subtle geometric accents */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}
.hero-shape-1 { width: 300px; height: 300px; top: -100px; right: -60px; z-index: 1; }
.hero-shape-2 { width: 160px; height: 160px; bottom: -40px; left: 5%; z-index: 1; }
.hero-shape-3 { width: 80px; height: 80px; top: 40%; right: 22%; z-index: 1; }

/* ============================================================
   BUTTONS — small, precise, functional
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.4;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-lg {
    padding: 0.55rem 1.5rem;
    font-size: 0.84rem;
}
.btn-full { width: 100%; }
.hero .btn-primary {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero .btn-primary:hover {
    background: #f0fdf4;
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.hero .btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}
.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   SECTIONS — tight vertical rhythm
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-alt); }
.section-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2rem;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    padding: 0.18rem 0.6rem;
    border-radius: var(--radius-xs);
    margin-bottom: 0.55rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
}
.section-subtitle {
    color: var(--text-light);
    font-size: 0.86rem;
    line-height: 1.55;
}
.section-title-left {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.015em;
    line-height: 1.22;
    position: relative;
    padding-left: 0.85rem;
    color: var(--text);
}
.section-title-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.section-cta { text-align: center; margin-top: 1.75rem; }

/* ============================================================
   PAGE HEADER — for inner pages
   ============================================================ */
.page-header {
    background: linear-gradient(168deg, #071e16 0%, #0a3023 40%, var(--primary-dark) 100%);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 60%, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.page-header p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    margin-top: 0.25rem;
}

/* ============================================================
   SERVICES — data-card grid with green left-border accent
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-grid);
}
.service-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    transition: box-shadow var(--transition), border-color var(--transition);
    position: relative;
}
.service-card:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-dark);
}
.service-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius);
    margin-bottom: 0.65rem;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: -0.005em;
    color: var(--text);
}
.service-card p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.55;
}
.services-grid-full { grid-template-columns: repeat(2, 1fr); }
.service-card-full { display: flex; flex-direction: column; }
.service-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.service-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.service-card:hover .service-image img { transform: scale(1.02); }

/* ============================================================
   ABOUT — split layout, structured data feel
   ============================================================ */
.about-section { padding: var(--section-pad) 0; }
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    pointer-events: none;
}
.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.about-text {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.65;
}
.about-content h2 { margin-bottom: 0.75rem; }
.about-content p {
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-size: 0.86rem;
}
.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 1rem;
}
.value-tag {
    background: var(--primary);
    color: #fff;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-xs);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.about-full { margin-bottom: 1.75rem; }
.about-image-full {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.25rem;
    max-width: 640px;
    box-shadow: var(--shadow);
}
.about-image-full img { width: 100%; height: 300px; object-fit: cover; }
.about-text-full {
    max-width: 640px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* === Values Grid — compact indicator cards === */
.values-section { margin-top: 2rem; }
.values-section h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--text);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.6rem;
}
.value-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all var(--transition);
}
.value-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-border);
}
.value-icon {
    font-size: 1rem;
    flex-shrink: 0;
}
.value-check {
    color: #fff;
    font-weight: 700;
    font-size: 0.62rem;
    background: var(--primary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================================
   TEAM — compact grid with small photos
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-grid);
}
.team-grid-full { grid-template-columns: repeat(3, 1fr); }
.team-card {
    text-align: center;
    padding: 1rem 0.75rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all var(--transition);
}
.team-card:hover {
    background: var(--bg);
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
}
.team-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 0.65rem;
    overflow: hidden;
    background: var(--bg-alt);
    border: 2px solid #fff;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.team-card:hover .team-photo {
    border-color: var(--primary-glow);
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.12);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.team-card h3 {
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: var(--text);
}
.team-role {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 500;
}
.team-bio {
    color: var(--text-light);
    font-size: 0.76rem;
    margin-top: 0.35rem;
    line-height: 1.5;
}
.team-contacts {
    margin-top: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.team-contacts a { font-size: 0.74rem; }

/* ============================================================
   LOCATIONS — structured data cards
   ============================================================ */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-grid);
}
.location-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.1rem;
    transition: all var(--transition);
    position: relative;
}
.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius) var(--radius) 0 0;
}
.location-card:hover {
    box-shadow: var(--shadow-md);
}
.location-card h3 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text);
}
.location-address {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.45;
}
.location-detail {
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
    color: var(--text-light);
}
.location-detail strong {
    color: var(--text);
    font-weight: 600;
}
.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.location-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.location-full:hover { box-shadow: var(--shadow-md); }
.location-info { padding: 1.35rem; }
.location-info h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--text);
}
.location-details p {
    margin-bottom: 0.3rem;
    font-size: 0.82rem;
    color: var(--text-light);
}
.location-details strong { color: var(--text); font-weight: 600; }
.location-hours { margin-top: 0.6rem; }
.location-hours p { color: var(--text-light); font-size: 0.82rem; }
.location-map { min-height: 250px; }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   CONTACT — compact form with structured info sidebar
   ============================================================ */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
}
.contact-info h2,
.contact-form-wrap h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}
.contact-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.contact-icon {
    font-size: 0.9rem;
    line-height: 1;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius);
    flex-shrink: 0;
}
.contact-item div { padding-top: 0; }
.contact-item div strong {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.contact-item div a,
.contact-item div p {
    font-size: 0.84rem;
    margin: 0;
    color: var(--text);
    font-weight: 500;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.form-group label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea {
    padding: 0.5rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.84rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--bg);
    line-height: 1.45;
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--shadow-focus);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.82rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.form-feedback {
    margin-top: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
}
.form-feedback.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.form-feedback.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================================
   CTA SECTION — dark bar with centered message
   ============================================================ */
.cta-section {
    background: linear-gradient(168deg, #071e16 0%, var(--primary-dark) 60%, #065f46 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 2.75rem 0;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-inner {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.015em;
}
.cta-inner p {
    opacity: 0.72;
    margin-bottom: 1.15rem;
    font-size: 0.86rem;
    font-weight: 400;
}
.cta-section .btn-primary {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.cta-section .btn-primary:hover {
    background: #f0fdf4;
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   PROSE — content pages, privacy, legal
   ============================================================ */
.page-content { padding: var(--section-pad) 0; }
.prose {
    max-width: 640px;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 0.9rem;
}
.prose h2,
.prose h3 {
    font-family: var(--font-heading);
    color: var(--text);
    margin: 1.5rem 0 0.4rem;
}
.prose h2 { font-size: 1.15rem; }
.prose h3 { font-size: 1rem; }
.prose p { margin-bottom: 0.7rem; }
.prose ul, .prose ol { margin: 0.4rem 0 0.7rem 1.2rem; }
.prose li { margin-bottom: 0.25rem; }
.page-image {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 640px;
    box-shadow: var(--shadow);
}
.page-image img { width: 100%; }

/* === Empty State === */
.empty-state {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.88rem;
}

/* ============================================================
   WHATSAPP FAB — compact floating action
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 90;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
    transition: all var(--transition);
    animation: fab-in 0.35s ease 0.6s both;
}
.whatsapp-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 3px 16px rgba(37, 211, 102, 0.4);
}
.whatsapp-fab svg { width: 22px; height: 22px; }
@keyframes fab-in {
    from { opacity: 0; transform: scale(0.5) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   FOOTER — compact, single-layer feel
   ============================================================ */
.site-footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding: 2rem 0 0;
    position: relative;
    font-size: 0.8rem;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--primary) 50%, transparent 95%);
    opacity: 0.6;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}
.footer-brand h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}
.footer-brand p {
    font-size: 0.78rem;
    line-height: 1.55;
    margin-bottom: 0.15rem;
}
.footer-vat {
    font-size: 0.7rem;
    opacity: 0.4;
    margin-top: 0.15rem;
}
.site-footer h4 {
    color: #e2e8f0;
    font-size: 0.68rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.site-footer a {
    color: #7c8ba0;
    font-size: 0.78rem;
    transition: color var(--transition);
}
.site-footer a:hover { color: #fff; }
.site-footer li { font-size: 0.78rem; }
.footer-social {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.65rem;
}
.footer-social a {
    color: #64748b;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
    font-size: 0.8rem;
}
.footer-social a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.7rem;
    color: #475569;
}
.footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE — Tablet (max 900px)
   ============================================================ */
@media (max-width: 900px) {
    :root {
        --section-pad: 2.75rem;
    }
    .hero h1 { font-size: 1.85rem; }
    .hero-inner { padding: 4.5rem 0 2.5rem; }
    .hero { min-height: 55vh; }
    .services-grid,
    .services-grid-full { grid-template-columns: 1fr 1fr; }
    .about-preview,
    .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-image img { height: 240px; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid-full { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr 1fr; }
    .location-full { grid-template-columns: 1fr; }
    .contact-layout,
    .contact-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .page-header { padding: 4.5rem 0 1.75rem; }
    .page-header h1 { font-size: 1.4rem; }
    .section-header { margin-bottom: 1.5rem; }
}

/* ============================================================
   RESPONSIVE — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-pad: 2.25rem;
        --navbar-h: 48px;
    }
    .hamburger { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--navbar-h);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 0.35rem;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.55rem 0.85rem;
        width: 100%;
        color: var(--text-light) !important;
        font-size: 0.82rem;
    }
    .nav-links a:hover {
        color: var(--text) !important;
        background: var(--bg-alt);
    }
    .nav-cta {
        text-align: center;
        margin-top: 0.1rem;
        background: var(--primary) !important;
        color: #fff !important;
        border-color: var(--primary) !important;
    }
    .hero { min-height: 58vh; }
    .hero h1 { font-size: 1.6rem; }
    .hero-sub { font-size: 0.86rem; }
    .hero-inner { padding: 4rem 0 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .section-header { margin-bottom: 1.25rem; }
    .section-title { font-size: 1.25rem; }
    .section-title-left { font-size: 1.15rem; margin-bottom: 0.85rem; }
    .services-grid,
    .services-grid-full { grid-template-columns: 1fr; gap: 0.75rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
    .team-grid-full { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1rem; }
    .page-header { padding: 3.75rem 0 1.25rem; }
    .page-header h1 { font-size: 1.25rem; }
    .container { padding: 0 0.85rem; }
    .hero-shape { display: none; }
    .cta-section { padding: 2rem 0; }
    .cta-inner h2 { font-size: 1.15rem; }
    .cta-inner p { font-size: 0.82rem; }
    .about-image img { height: 200px; }
    .about-image-full img { height: 220px; }
    .whatsapp-fab { bottom: 0.85rem; right: 0.85rem; width: 42px; height: 42px; }
    .whatsapp-fab svg { width: 20px; height: 20px; }
}

/* ============================================================
   RESPONSIVE — Small screens (max 400px)
   ============================================================ */
@media (max-width: 400px) {
    .team-grid,
    .team-grid-full { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.35rem; }
    .container { padding: 0 0.7rem; }
    .navbar-inner { height: 44px; }
    .nav-links { top: 44px; }
    .hero-inner { padding: 3.5rem 0 2rem; }
    .hero { min-height: 50vh; }
    .values-grid { grid-template-columns: 1fr; }
}
