/* ================================================
   Alpha Adept Management – Main Stylesheet
   Dark theme with orange (#E8520A) accent
   ================================================ */

:root {
    --orange: #E8520A;
    --orange-hover: #c9440a;
    --orange-light: rgba(232, 82, 10, 0.15);
    --dark: #0d0d0d;
    --dark-2: #141414;
    --dark-3: #1c1c1c;
    --dark-4: #242424;
    --light: #f5f5f5;
    --white: #ffffff;
    --grey: #888888;
    --grey-light: #cccccc;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 80px;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ================================================ TYPOGRAPHY */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.35; }
p  { color: var(--grey-light); line-height: 1.7; }

.text-orange { color: var(--orange); }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.orange-line {
    width: 48px; height: 3px;
    background: var(--orange);
    margin: 1rem 0 1.5rem;
    border-radius: 2px;
}
.orange-line.center { margin: 1rem auto 1.5rem; }

/* ================================================ LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }
.page-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; padding-top: var(--nav-height); }

/* ================================================ BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--orange);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--orange);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

/* ================================================ NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.navbar-scrolled {
    background: rgba(13,13,13,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.brand-logo svg { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.brand-tagline { font-size: 0.65rem; color: var(--grey); white-space: nowrap; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
}
.nav-links a,
.nav-dropdown-trigger {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--grey-light);
    transition: color 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 6px;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-dropdown-trigger:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--orange); }

.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 0.5rem;
    min-width: 220px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
}
.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
}
.dropdown-menu li a:hover { background: var(--orange-light); color: var(--orange); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-language {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--grey-light);
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-language:hover { border-color: var(--orange); color: var(--orange); }

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

.mobile-menu {
    background: var(--dark-2);
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.mobile-menu a { display: block; padding: 0.75rem 1rem; border-radius: 6px; color: var(--grey-light); }
.mobile-menu a:hover { background: var(--orange-light); color: var(--orange); }

/* ================================================ HERO */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-height));
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 4rem;
}
.hero-content h1 { margin-bottom: 1rem; }
.hero-content p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 420px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-logo-overlay {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    opacity: 0.85;
}
.hero-logo-icon { width: 120px; height: 120px; margin: 0 auto 0.75rem; }
.hero-logo-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.hero-logo-tagline { font-size: 0.7rem; color: rgba(255,255,255,0.6); max-width: 180px; margin: 0.25rem auto 0; }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-prev { left: 2rem; }
.hero-next { right: 2rem; }

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
}
.dot {
    width: 28px; height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.35);
    border: none; cursor: pointer;
    transition: var(--transition);
}
.dot.active { background: var(--orange); width: 40px; }

/* ================================================ SERVICES STRIP */
.services-strip {
    background: var(--dark-2);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}
.service-item:hover { background: var(--dark-3); transform: translateY(-4px); }
.service-icon {
    color: var(--orange);
    margin-bottom: 1rem;
}
.service-icon svg { width: 44px; height: 44px; }
.service-item h3 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.service-item p { font-size: 0.78rem; color: var(--grey); line-height: 1.5; }

/* ================================================ NEWS SECTION */
.news-section {
    background: var(--light);
    padding: 5rem 0;
}
.news-section h2,
.news-section .section-label { color: var(--dark); }
.news-section p { color: #555; }

.news-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) { .news-layout { grid-template-columns: 1fr; } }

.news-intro { position: sticky; top: 100px; }
.news-intro h2 { color: var(--dark); margin-bottom: 0; }
.news-intro p { color: #555; margin-bottom: 1.5rem; }

.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .news-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-cards { grid-template-columns: 1fr; } }

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

.news-card-image { position: relative; overflow: hidden; height: 180px; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
}
.news-badge.orange { background: var(--orange); }
.news-badge.blue   { background: #2563eb; }
.news-badge.green  { background: #16a34a; }
.news-badge.purple { background: #7c3aed; }

.news-card-body { padding: 1.25rem; }
.news-date { font-size: 0.72rem; color: #888; display: block; margin-bottom: 0.4rem; }
.news-card-body h3 { font-size: 0.95rem; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.4; }
.news-card-body p { font-size: 0.82rem; color: #666; margin-bottom: 1rem; }

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap 0.2s;
}
.read-more:hover { gap: 0.6rem; }

/* ================================================ STATS */
.stats-section {
    background: var(--dark-2);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-content { display: flex; flex-direction: column; }
.stat-value { font-size: 2.25rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-top: 0.15rem; }
.stat-sub { font-size: 0.75rem; color: var(--grey); }

/* ================================================ NEWSLETTER */
.newsletter-section {
    background: var(--dark-3);
    padding: 3.5rem 0;
}
.newsletter-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.newsletter-text h2 { margin-bottom: 0.25rem; }
.newsletter-text p { color: var(--grey-light); font-size: 0.9rem; }
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    min-width: 280px;
}
.newsletter-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--grey); }
.newsletter-input:focus { border-color: var(--orange); }
.subscribe-msg { margin-top: 1rem; font-size: 0.85rem; }
.subscribe-msg.success { color: #22c55e; }
.subscribe-msg.error { color: #ef4444; }

/* ================================================ PAGE HERO */
.page-hero {
    padding: 5rem 0 3.5rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--grey-light); font-size: 1.05rem; max-width: 540px; }

/* ================================================ ABOUT PAGE */
.about-section { padding: 5rem 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-text h2 { margin-bottom: 0; }
.about-text p { margin-bottom: 1rem; }
.about-text .btn-primary { margin-top: 0.5rem; }
.about-image img { border-radius: 12px; width: 100%; height: 400px; object-fit: cover; box-shadow: var(--shadow); }

.dark-section { background: var(--dark-2); }
.values-section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-top: 0.25rem; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: var(--transition);
}
.value-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.value-icon { margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.5rem; color: var(--white); }

.team-section { padding: 5rem 0; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

.team-card {
    text-align: center;
    background: var(--dark-2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.team-card:hover { border-color: var(--orange); }
.team-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid var(--orange); }
.team-card h3 { color: var(--white); margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; color: var(--orange); font-weight: 600; display: block; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; }

/* ================================================ SERVICES PAGE */
.services-page-section { padding: 5rem 0; }
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 900px) { .services-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-page-grid { grid-template-columns: 1fr; } }

.service-page-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}
.service-page-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.service-page-icon { color: var(--orange); margin-bottom: 1.25rem; }
.service-page-icon svg { width: 48px; height: 48px; }
.service-page-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.service-page-card p { margin-bottom: 1.25rem; font-size: 0.9rem; }

.cta-section { padding: 4rem 0; }
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { color: var(--grey-light); margin-bottom: 2rem; }

/* ================================================ NEWS PAGE */
.news-page-section { padding: 5rem 0; }
.news-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--grey-light);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.news-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .news-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-page-grid { grid-template-columns: 1fr; } }

.news-page-section .news-card { background: var(--dark-2); }
.news-page-section .news-card-body h3 { color: var(--white); }
.news-page-section .news-date { color: var(--grey); }
.news-page-section .news-card-body p { color: var(--grey-light); }

.no-results { text-align: center; color: var(--grey); padding: 3rem 0; }

/* ================================================ PROJECTS PAGE */
.projects-section { padding: 5rem 0; }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.project-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.project-image { position: relative; height: 200px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-status {
    position: absolute; top: 0.75rem; right: 0.75rem;
    padding: 0.2rem 0.65rem; border-radius: 100px;
    font-size: 0.7rem; font-weight: 700; color: var(--white);
}
.project-status.active { background: #16a34a; }
.project-status.completed { background: #2563eb; }

.project-body { padding: 1.25rem; }
.project-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.project-category { font-size: 0.72rem; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.project-country { font-size: 0.72rem; color: var(--grey); display: flex; align-items: center; gap: 0.25rem; }
.project-body h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.project-body p { font-size: 0.85rem; margin-bottom: 0.75rem; }
.project-year { font-size: 0.75rem; color: var(--grey); }

/* ================================================ INSIGHTS PAGE */
.insights-section { padding: 5rem 0; }
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .insights-grid { grid-template-columns: 1fr; } }

.insight-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.75rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.insight-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.insight-tag {
    display: inline-block;
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.insight-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1rem; line-height: 1.4; }
.insight-card p { flex: 1; font-size: 0.85rem; margin-bottom: 1.25rem; }
.insight-footer { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--grey); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0.75rem; }

/* ================================================ CONTACT PAGE */
.contact-section { padding: 5rem 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { margin-bottom: 0; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { flex-shrink: 0; margin-top: 0.15rem; }
.contact-detail strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.85rem; }
.contact-detail a { color: var(--grey-light); transition: color 0.2s; }
.contact-detail a:hover { color: var(--orange); }

.contact-form-wrap h2 { margin-bottom: 0; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--grey-light); margin-bottom: 0.4rem; }
.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey); }
.form-input:focus, .form-textarea:focus { border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 140px; }
.error-msg { color: #ef4444; font-size: 0.85rem; margin-top: 0.75rem; }

.success-message {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 12px;
    background: rgba(34,197,94,0.05);
}
.success-message svg { margin: 0 auto 1rem; }
.success-message h3 { color: #22c55e; margin-bottom: 0.5rem; }
.success-message p { color: var(--grey-light); }

/* ================================================ FOOTER */
.site-footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; } }

.footer-about { color: var(--grey); font-size: 0.85rem; margin: 1rem 0 1.5rem; line-height: 1.7; }
.social-links { display: flex; gap: 0.75rem; }
.social-icon {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--grey-light);
    transition: var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) { .footer-links-grid { grid-template-columns: repeat(2, 1fr); } }

.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a { font-size: 0.82rem; color: var(--grey); transition: color 0.2s; }
.footer-col li a:hover { color: var(--orange); }
.footer-col address p { font-size: 0.82rem; color: var(--grey); margin-bottom: 0.5rem; }
.footer-col address a { color: var(--grey); transition: color 0.2s; }
.footer-col address a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey); }

/* ================================================ CHAT WIDGET */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.chat-panel {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    width: 300px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--dark-2);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chat-brand { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; color: var(--white); }
.chat-close {
    background: none; border: none; color: var(--grey);
    cursor: pointer; padding: 4px; border-radius: 6px;
    transition: color 0.2s;
}
.chat-close:hover { color: var(--white); }

.chat-body { padding: 1.25rem; }
.chat-greeting { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.chat-sub { font-size: 0.85rem; color: var(--grey-light); margin-bottom: 1rem; }
.chat-options { display: flex; flex-direction: column; gap: 0.5rem; }
.chat-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--dark-4);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--grey-light);
    transition: var(--transition);
    border: 1px solid transparent;
}
.chat-option:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

.chat-fab {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232,82,10,0.5);
    transition: var(--transition);
}
.chat-fab:hover { background: var(--orange-hover); transform: scale(1.08); }

/* ================================================ LOADING */
.loading-spinner { display: flex; justify-content: center; padding: 4rem 0; }
.spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(232,82,10,0.2);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.service-skeleton, .news-skeleton {
    background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
    height: 200px;
}
.loading-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ================================================ NOT FOUND */
.not-found-container {
    text-align: center;
    padding: 6rem 2rem;
}
.not-found-container h1 { font-size: 6rem; color: var(--orange); line-height: 1; margin-bottom: 0; }
.not-found-container h2 { margin-bottom: 1rem; }
.not-found-container p { margin-bottom: 2rem; }

/* ================================================ RESPONSIVE NAVBAR */
@media (max-width: 1024px) {
    .nav-links, .btn-language { display: none; }
    .hamburger { display: flex; }
    .navbar { height: auto; }
    .mobile-open { padding-bottom: 0; }
    .nav-container { height: var(--nav-height); }
}
@media (max-width: 600px) {
    .hero-logo-overlay { display: none; }
    .hero-content { padding: 0 2rem; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.25rem; }
    .stat-item:last-child { border-bottom: none; }
    .newsletter-form { flex-direction: column; }
    .hero-arrow { width: 38px; height: 38px; }
    .hero-prev { left: 0.75rem; }
    .hero-next { right: 0.75rem; }
}
/* ================================================ LANGUAGE SWITCHER */
.lang-switcher {
    position: relative;
}

.btn-language {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--grey-light);
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

    .btn-language:hover,
    .lang-switcher.open .btn-language {
        border-color: var(--orange);
        color: var(--white);
    }

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 0.4rem;
    min-width: 160px;
    box-shadow: var(--shadow);
    z-index: 200;
    animation: fadeDown 0.15s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 0.85rem;
    background: none;
    border: none;
    border-radius: 6px;
    color: var(--grey-light);
    font-size: 0.85rem;
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

    .lang-option:hover {
        background: var(--orange-light);
        color: var(--white);
    }

    .lang-option.active {
        color: var(--orange);
        font-weight: 600;
    }

    .lang-option svg {
        margin-left: auto;
        flex-shrink: 0;
    }

/* Mobile language row */
.mobile-lang-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.12);
    background: none;
    color: var(--grey-light);
    font-size: 0.82rem;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
}

    .mobile-lang-btn:hover,
    .mobile-lang-btn.active {
        border-color: var(--orange);
        color: var(--orange);
        background: var(--orange-light);
    }
