/* ============================================================
   Sidebar Modern — Vetrina Template
   Fixed left sidebar navigation on desktop, top bar on mobile.
   Primary: #0ea5e9 (sky blue) | Fonts: Plus Jakarta Sans + Lora
   ============================================================ */

/* === Variables === */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --primary-glow: rgba(14, 165, 233, 0.12);
    --primary-glow-strong: rgba(14, 165, 233, 0.2);
    --accent: #f59e0b;
    --text: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --sidebar-width: 260px;
    --sidebar-bg: #f8fafc;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-primary: 0 8px 32px rgba(14, 165, 233, 0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1000px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', 'Georgia', serif;
}
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; }

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

/* === Scroll Animations === */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   NAVBAR — FIXED LEFT SIDEBAR (Desktop)
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    z-index: 100;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition);
    overflow-y: auto;
    overflow-x: hidden;
}
/* .scrolled has no visual effect on desktop sidebar — it's used only on mobile */
.navbar.scrolled {
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border);
}
.navbar-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.25rem 2rem;
    min-height: 100%;
    height: auto;
}
.navbar-brand {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.02em;
    transition: color var(--transition);
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
}
.navbar.scrolled .navbar-brand { color: var(--text); }
.navbar-brand:hover { color: var(--primary); }
.navbar.scrolled .navbar-brand:hover { color: var(--primary); }
.navbar-logo { height: 36px; width: auto; }

/* Nav links — vertical stack in sidebar */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}
.nav-links a {
    display: block;
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all var(--transition);
    position: relative;
}
.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-glow);
}
.nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    border-radius: 0 3px 3px 0;
    background: var(--primary);
    transition: transform var(--transition);
}
.nav-links a:hover::before {
    transform: translateY(-50%) scaleY(1);
}
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); background: var(--primary-glow); }

/* CTA button in sidebar */
.nav-cta {
    margin-top: 1rem;
    background: var(--primary) !important;
    color: #fff !important;
    border: none !important;
    text-align: center;
    font-weight: 600 !important;
    border-radius: var(--radius) !important;
    padding: 0.7rem 0.9rem !important;
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.2);
}
.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
    box-shadow: var(--shadow-primary) !important;
    transform: translateY(-1px);
}
.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;
    box-shadow: var(--shadow-primary);
}

/* Hamburger — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    position: absolute;
    left: 0;
    transition: all 0.3s;
    border-radius: 2px;
}
.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); }

/* ============================================================
   MAIN CONTENT OFFSET — accommodate sidebar
   ============================================================ */
main {
    margin-left: var(--sidebar-width);
}
.site-footer {
    margin-left: var(--sidebar-width);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(145deg, #0ea5e9 0%, #0284c7 40%, #0c4a6e 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(56, 189, 248, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 90%, rgba(2, 132, 199, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
    max-width: 640px;
    padding: 6rem 0 5rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.hero h1 {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: 1.15rem;
    opacity: 0.88;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 500px;
    font-weight: 400;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 2.5s ease-in-out infinite;
}
.hero-scroll svg {
    width: 32px;
    height: 32px;
    color: rgba(255,255,255,0.5);
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    pointer-events: none;
}
.hero-shape-1 { width: 380px; height: 380px; top: -80px; right: -40px; z-index: 1; }
.hero-shape-2 { width: 220px; height: 220px; bottom: -40px; left: 10%; z-index: 1; }
.hero-shape-3 { width: 140px; height: 140px; top: 35%; right: 15%; z-index: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* Hero button overrides */
.hero .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    border-radius: var(--radius);
}
.hero .btn-primary:hover {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.hero .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    border-radius: var(--radius);
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3rem;
}
.section-label {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-glow);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--text);
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.7;
}
.section-title-left {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    position: relative;
    padding-bottom: 0.75rem;
}
.section-title-left::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin-top: 0.75rem;
    border-radius: 3px;
}
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    background: linear-gradient(145deg, #0ea5e9 0%, #0284c7 40%, #0c4a6e 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(56, 189, 248, 0.25) 0%, transparent 60%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-glow);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.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: 1.25rem;
}
.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-image img { transform: scale(1.05); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.05);
    pointer-events: none;
}
.about-image img { width: 100%; height: 380px; object-fit: cover; }
.about-content h2 {
    font-family: 'Lora', 'Georgia', serif;
    margin-bottom: 1.25rem;
}
.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.values-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.value-tag {
    background: var(--primary-glow-strong);
    color: var(--primary-dark);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid rgba(14, 165, 233, 0.15);
}
.about-full { margin-bottom: 3rem; }
.about-image-full {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2.5rem;
    max-width: 700px;
    box-shadow: var(--shadow-lg);
}
.about-image-full img { width: 100%; height: 380px; object-fit: cover; }
.about-text-full {
    max-width: 700px;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}
.values-section { margin-top: 3rem; }
.values-section h2 {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem;
}
.value-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-weight: 500;
    transition: all var(--transition);
}
.value-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-glow);
    transform: translateX(4px);
}
.value-check {
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.team-grid-full { grid-template-columns: repeat(3, 1fr); }
.team-card {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid transparent;
}
.team-card:hover {
    background: var(--bg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--border-light);
}
.team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    background: var(--bg-alt);
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all var(--transition);
}
.team-card:hover .team-photo {
    border-color: var(--primary-glow);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
}
.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: 2.2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.team-card h3 {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}
.team-role {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 500;
}
.team-bio {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    line-height: 1.6;
}
.team-contacts { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.2rem; }
.team-contacts a { font-size: 0.8rem; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.location-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
}
.location-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent;
}
.location-card h3 {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.location-address { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.6rem; }
.location-detail { font-size: 0.85rem; margin-bottom: 0.3rem; color: var(--text-light); }
.location-detail strong { color: var(--text); }
.locations-list { display: flex; flex-direction: column; gap: 2rem; }
.location-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.location-full:hover { box-shadow: var(--shadow-lg); }
.location-info { padding: 2.25rem; }
.location-info h2 {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.location-details p { margin-bottom: 0.5rem; font-size: 0.92rem; color: var(--text-light); }
.location-details strong { color: var(--text); }
.location-hours { margin-top: 1rem; }
.location-hours p { color: var(--text-light); }
.location-map { min-height: 300px; }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3.5rem;
}
.contact-info h2, .contact-form-wrap h2 {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-icon {
    font-size: 1.15rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    border-radius: var(--radius);
    flex-shrink: 0;
    color: var(--primary);
}
.contact-item div { padding-top: 0.1rem; }
.contact-item div strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contact-item div a, .contact-item div p {
    font-size: 0.92rem;
    margin: 0;
    color: var(--text);
    font-weight: 500;
}

/* Forms */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}
.form-group input, .form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-feedback {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.88rem;
    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
   ============================================================ */
.cta-section {
    background: linear-gradient(145deg, #0ea5e9 0%, #0284c7 40%, #0c4a6e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(56, 189, 248, 0.25) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-inner h2 {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.cta-inner p {
    opacity: 0.88;
    margin-bottom: 2rem;
    font-size: 1.02rem;
    font-weight: 400;
}
.cta-section .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* ============================================================
   PROSE (privacy, custom pages)
   ============================================================ */
.prose { max-width: 700px; line-height: 1.9; color: var(--text-light); font-size: 1.02rem; }
.prose h2, .prose h3 {
    font-family: 'Lora', 'Georgia', serif;
    color: var(--text);
    margin: 2rem 0 0.75rem;
}
.page-image {
    margin-bottom: 2.5rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 700px;
    box-shadow: var(--shadow-lg);
}
.page-image img { width: 100%; }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 4rem 0;
    font-size: 1.02rem;
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--transition);
    animation: fab-appear 0.5s ease 1s both;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    color: #fff;
}
@keyframes fab-appear {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding: 3.5rem 0 0;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.footer-brand h3 {
    font-family: 'Lora', 'Georgia', serif;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 0.25rem; }
.footer-vat { font-size: 0.8rem; opacity: 0.5; }
.site-footer h4 {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer a { color: #94a3b8; font-size: 0.85rem; transition: all var(--transition); }
.site-footer a:hover { color: #fff; }
.site-footer li { font-size: 0.85rem; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
    color: #64748b;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}
.footer-social a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
}
.footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   Sidebar narrows slightly, content adapts
   ============================================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    :root {
        --sidebar-width: 220px;
    }
    .navbar-inner {
        padding: 1.75rem 1rem;
    }
    .navbar-brand {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }
    .hero h1 { font-size: 2.6rem; }
    .hero-inner { padding: 5rem 0 4rem; }
    .services-grid, .services-grid-full { grid-template-columns: 1fr 1fr; }
    .about-preview { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image img { height: 300px; }
    .team-grid, .team-grid-full { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr; }
    .location-full { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ============================================================
   RESPONSIVE — Mobile (max-width: 768px)
   Sidebar collapses to top bar with hamburger
   ============================================================ */
@media (max-width: 768px) {
    /* Reset sidebar → top navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        overflow: visible;
    }
    .navbar.scrolled {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(226,232,240,0.6);
        box-shadow: 0 1px 20px rgba(0,0,0,0.04);
        border-right: none;
    }
    .navbar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 1.25rem;
        height: 64px;
        min-height: auto;
    }
    .navbar-brand {
        margin-bottom: 0;
        font-size: 1.1rem;
    }

    /* Show hamburger */
    .hamburger { display: block; }

    /* Nav links — dropdown menu */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 0.75rem;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        gap: 0.15rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.75rem 1rem;
        width: 100%;
        color: var(--text-light) !important;
        font-size: 0.9rem;
    }
    .nav-links a::before { display: none; }
    .nav-links a:hover { color: var(--text) !important; background: var(--bg-alt); }
    .nav-cta {
        text-align: center;
        margin-top: 0.25rem;
        background: var(--primary) !important;
        color: #fff !important;
        border-color: var(--primary) !important;
    }

    /* Remove sidebar offset */
    main { margin-left: 0; }
    .site-footer { margin-left: 0; }

    /* Hero */
    .hero { min-height: 90vh; padding-top: 64px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-inner { padding: 4rem 0 3.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-shape { display: none; }

    /* Page header offset */
    .page-header { padding: 5.5rem 0 2rem; }
    .page-header h1 { font-size: 1.7rem; }

    /* Sections */
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.6rem; }
    .section-title-left { font-size: 1.4rem; }
    .section-header { margin-bottom: 2rem; }
    .container { padding: 0 1.25rem; }

    /* Grids → single column */
    .services-grid, .services-grid-full { grid-template-columns: 1fr; }
    .about-preview { grid-template-columns: 1fr; gap: 2rem; }
    .about-image img { height: 260px; }
    .team-grid, .team-grid-full { grid-template-columns: 1fr 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .location-full { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-sub { font-size: 0.92rem; }
    .section { padding: 2.75rem 0; }
    .section-title { font-size: 1.4rem; }
    .section-title-left { font-size: 1.3rem; }
    .team-grid, .team-grid-full { grid-template-columns: 1fr; }
    .team-photo { width: 90px; height: 90px; }
    .page-header { padding: 5rem 0 1.75rem; }
    .page-header h1 { font-size: 1.5rem; }
    .container { padding: 0 1rem; }
    .cta-inner h2 { font-size: 1.5rem; }
}
