/* ============================================================
   FUNCTIONAL DESIGN — Custom CSS
   Aesthetic: Minimalist Sofisticat
   Fonts: Sora (Display) + DM Sans (Body)
   Colors: #e86e24 (primary) + #009cdf (secondary) + #111827 (accent)
   ============================================================ */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    --primary: #e86e24;
    --primary-dark: #c95a18;
    --primary-light: rgba(232, 110, 36, 0.1);
    --secondary: #009cdf;
    --secondary-dark: #0080b8;
    --secondary-light: rgba(0, 156, 223, 0.08);
    --accent: #111827;
    --text: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f8f9fb;
    --bg-card: #ffffff;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 10px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.08), 0 30px 64px rgba(0,0,0,0.1);
    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 200ms ease;
    --transition-slow: 400ms ease;
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --section-padding: clamp(80px, 10vw, 140px);
}

/* --- DARK MODE --- */
[data-bs-theme="dark"] {
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --text-light: #6b7280;
    --bg: #0f1117;
    --bg-alt: #161822;
    --bg-card: #1a1d2b;
    --border: #2a2d3a;
    --border-light: #1f2233;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.25), 0 10px 20px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.3), 0 20px 48px rgba(0,0,0,0.25);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.35);
}

[data-bs-theme="dark"] body { background: var(--bg); color: var(--text); }
[data-bs-theme="dark"] .site-header { background: rgba(15,17,23,0.85); }
[data-bs-theme="dark"] .service-card,
[data-bs-theme="dark"] .value-card,
[data-bs-theme="dark"] .process-card,
[data-bs-theme="dark"] .testimonial-card,
[data-bs-theme="dark"] .contact-form-wrap { background: var(--bg-card); border-color: var(--border); }
[data-bs-theme="dark"] .hero-interior { background: var(--bg-alt); }
[data-bs-theme="dark"] .breadcrumb-section { background: var(--bg-alt); }
[data-bs-theme="dark"] .stats-bar { background: var(--accent); }
[data-bs-theme="dark"] .section-alt { background: var(--bg-alt); }
[data-bs-theme="dark"] .footer-divider { border-color: var(--border); }
[data-bs-theme="dark"] .accordion-item { background: var(--bg-card); border-color: var(--border); }
[data-bs-theme="dark"] .accordion-button { background: var(--bg-card); color: var(--text); }
[data-bs-theme="dark"] .accordion-button:not(.collapsed) { background: var(--primary-light); }
[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select { background: var(--bg-alt); border-color: var(--border); color: var(--text); }
[data-bs-theme="dark"] .navbar-toggler { border-color: var(--border); }
[data-bs-theme="dark"] .navbar-toggler-icon { filter: invert(1); }
[data-bs-theme="dark"] .brand-mark { background: var(--primary); }
[data-bs-theme="dark"] .mini-stat { background: var(--bg-card); border-color: var(--border); }

/* --- BASE & TYPOGRAPHY --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--accent);
    letter-spacing: -0.02em;
}

[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4 { color: #f3f4f6; }

h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

p { margin-bottom: 1rem; color: var(--text-muted); }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

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

.section-padding { padding: var(--section-padding) 0; overflow: hidden; }
.section-alt { background: var(--bg-alt); }

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* --- SECTION HEADER --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-header { margin-bottom: 2rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-desc { max-width: 600px; margin: 0 auto; color: var(--text-muted); }

/* --- BUTTONS --- */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius);
    padding: 0.65rem 1.6rem;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 110, 36, 0.35);
}

.btn-outline-light {
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.65rem 1.6rem;
    transition: all var(--transition);
}

.btn-outline-light:hover { transform: translateY(-2px); }

.btn-light {
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    transition: all var(--transition);
}

.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-lg { padding: 0.8rem 2rem; font-size: 0.95rem; }

.btn-icon {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text);
    font-size: 1rem;
}

.btn-icon:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-slow);
    padding: 0.5rem 0;
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.navbar { padding: 0; }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--accent);
}

[data-bs-theme="dark"] .brand-text { color: #f3f4f6; }

.brand-text span { font-weight: 400; color: var(--text-muted); }

.nav-link {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text) !important;
    padding: 0.5rem 0.85rem !important;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 300ms ease;
    border-radius: 1px;
}

.nav-link:hover { color: var(--primary) !important; }
.nav-link:hover::after { transform: scaleX(1); }

/* --- HERO HOME --- */
.hero-home {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,24,39,0.82) 0%, rgba(17,24,39,0.5) 60%, rgba(232,110,36,0.15) 100%);
}

.hero-content { position: relative; z-index: 2; }

.min-vh-80 { min-height: 80vh; }

.hero-home h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 1.25rem;
    max-width: 640px;
}

.hero-home h1 em {
    font-style: normal;
    color: var(--primary);
}

.hero-sub {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-home .hero-sub { color: rgba(255,255,255,0.8); }

.hero-cta { margin-top: 0.5rem; }

/* --- HERO INTERIOR --- */
.hero-interior {
    position: relative;
    background-color: var(--accent);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: calc(80px + var(--section-padding)) 0 var(--section-padding);
    overflow: hidden;
}

.hero-interior-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,24,39,0.82) 0%, rgba(17,24,39,0.5) 60%, rgba(232,110,36,0.15) 100%);
    z-index: 1;
}

.hero-interior .container { position: relative; z-index: 2; }

.hero-interior h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
    max-width: 700px;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-interior .hero-sub {
    color: rgba(255,255,255,0.85) !important;
    max-width: 560px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* --- BREADCRUMB --- */
.breadcrumb-section {
    background: var(--accent);
    padding: 0 0 1.5rem;
    position: relative;
    z-index: 2;
}

.breadcrumb { font-family: var(--font-display); font-size: 0.82rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.5); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: rgba(255,255,255,0.8); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* --- STATS BAR --- */
.stats-bar {
    background: var(--accent);
    padding: 3.5rem 0;
    position: relative;
}

.stat-item { padding: 0.5rem; }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-display);
    font-weight: 400;
}

/* --- SERVICE CARDS --- */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity var(--transition);
}

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

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    color: var(--primary);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-icon-lg {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.92rem; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.75rem;
    transition: gap var(--transition);
}

.card-link:hover { gap: 0.7rem; color: var(--primary-dark); }

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.service-features li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i { color: var(--primary); font-size: 0.9rem; flex-shrink: 0; }

/* --- ABOUT / IMAGE WRAP --- */
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-light);
    border-radius: 50%;
    z-index: -1;
    display: none;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text);
}

.feature-list i { color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }

.mini-stat {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}

.mini-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.mini-stat span { font-size: 0.82rem; color: var(--text-muted); }

/* --- VALUE CARDS --- */
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all var(--transition-slow);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.value-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.88rem; margin-bottom: 0; }

/* --- PROCESS CARDS --- */
.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all var(--transition-slow);
    position: relative;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.process-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: 0.75rem;
}

.process-card:hover .process-number { opacity: 0.5; }
.process-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.process-card p { font-size: 0.88rem; margin-bottom: 0; }

/* --- TESTIMONIALS --- */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stars { margin-bottom: 1rem; }
.stars i { color: var(--primary); font-size: 0.9rem; }

.testimonial-card blockquote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    border: none;
    padding: 0;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--accent);
}

[data-bs-theme="dark"] .testimonial-author strong { color: #f3f4f6; }

.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }

/* --- CTA BANNER --- */
.cta-banner { padding: var(--section-padding) 0; }

.cta-inner {
    background: linear-gradient(135deg, var(--accent) 0%, #1e2536 50%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,110,36,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-inner p {
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin: 0 auto 2rem;
    position: relative;
}

.cta-inner .btn { position: relative; }

/* --- TIMELINE --- */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.3rem;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.timeline-content h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.9rem; margin-bottom: 0; }

/* --- CONTACT --- */
.contact-info-list { margin-top: 2rem; }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light);
    margin-bottom: 0.15rem;
}

.contact-info-item a,
.contact-info-item span { font-size: 0.92rem; color: var(--text); }
.contact-info-item a:hover { color: var(--primary); }

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 0.25rem; }

.form-control, .form-select {
    border-radius: var(--radius);
    border-color: var(--border);
    padding: 0.7rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-label {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
}

/* --- ACCORDION / FAQ --- */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus { box-shadow: none; border-color: var(--primary); }

.accordion-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- FOOTER --- */
.site-footer {
    background: var(--accent);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-brand { text-decoration: none; }
.footer-brand .brand-mark { background: var(--primary); }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text span { color: rgba(255,255,255,0.5); }

.footer-about {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

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

.footer-links a:hover { color: var(--primary); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-contact i { color: var(--primary); margin-top: 0.2rem; font-size: 0.85rem; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--primary); }

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2.5rem 0 0;
}

.footer-bottom {
    padding: 1.25rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 1040;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* --- BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: rgba(255,255,255,0.8);
    padding: 1rem 0;
    z-index: 1060;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner p { color: rgba(255,255,255,0.7); }

/* --- ROUNDED / SHADOW HELPERS --- */
.rounded-sm { border-radius: var(--radius); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* --- BLOG CARDS --- */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-slow);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

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

.blog-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-meta i { font-size: 0.75rem; margin-right: 0.2rem; }

.blog-card-body h2 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.blog-card-body h2 a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

[data-bs-theme="dark"] .blog-card-body h2 a { color: #f3f4f6; }

.blog-card-body h2 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 0.88rem; }

/* --- ARTICLE CONTENT --- */
.article-hero-image { padding-bottom: 0; }

.article-hero-image img {
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-meta i { margin-right: 0.3rem; }

.article-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.article-content blockquote {
    border-left: 3px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text);
    background: var(--primary-light);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* --- TEAM CARDS --- */
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-slow);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-slow);
}

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

.team-card-body {
    padding: 1.5rem;
    text-align: center;
}

.team-card-body h2 {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}

.team-role {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}

.team-card-body p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* --- RATING SUMMARY (Testimoniale) --- */
.rating-summary { padding: 2rem 0; }

.rating-big {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stars-lg i { font-size: 1.5rem; color: var(--primary); }

.rating-text {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.testimonial-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* --- FEATURE CARD (Serviciu Single) --- */
.feature-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.feature-card i {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-card span {
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 500;
}

/* --- LEGAL CONTENT --- */
.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content a:hover { color: var(--primary-dark); }

/* --- FOOTER LEGAL LINKS --- */
.footer-legal-link {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    transition: color var(--transition);
}

.footer-legal-link:hover { color: var(--primary); }

.footer-credit-link {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    transition: color var(--transition);
}

.footer-credit-link strong { color: rgba(255,255,255,0.6); font-weight: 600; }
.footer-credit-link:hover { color: var(--primary); }
.footer-credit-link:hover strong { color: var(--primary); }

/* --- PB-0 HELPER --- */
.pb-0 { padding-bottom: 0 !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hero-home { min-height: 75vh; }
    .hero-home h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
    .navbar-collapse {
        background: var(--bg);
        border-radius: var(--radius-lg);
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
    }
    [data-bs-theme="dark"] .navbar-collapse { background: var(--bg-card); }
    .nav-link::after { display: none; }
    .timeline { padding-left: 1.5rem; }
    .timeline-item { padding-left: 1.5rem; }
}

@media (max-width: 767px) {
    :root { --section-padding: 60px; }
    .hero-home { min-height: 65vh; }
    .hero-interior { padding: calc(80px + 60px) 0 60px; }
    .stats-bar { padding: 2rem 0; }
    .stat-number { font-size: 1.8rem; }
    .contact-form-wrap { padding: 1.5rem; }
    .cta-inner { padding: 2.5rem 1.5rem; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 16px; right: 16px; }
    .back-to-top { bottom: 72px; right: 20px; }
}

/* --- AOS OVERRIDE FOR REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    [data-aos] { transition: none !important; transform: none !important; opacity: 1 !important; }
}
