/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: #0f0a0f;
    color: #f5f0f5;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, .logo span, .stat-number { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
.section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 8px;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.accent { color: #f59e0b; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.3); }
.btn-primary { background: #f59e0b; color: #0f0a0f; }
.btn-primary:hover { background: #fbbf24; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #f59e0b; color: #f59e0b; box-shadow: 0 8px 30px rgba(245,158,11,0.15); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── Nav ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
    background: rgba(15, 10, 15, 0.95);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.04em;
}
.logo-light span { color: #fff; }
.logo-icon { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.nav-cta):hover { color: #f59e0b; }
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.2s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: #f59e0b !important;
    color: #0f0a0f !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #fbbf24 !important; transform: scale(1.05); }
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 10, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.35s ease;
        backdrop-filter: blur(16px);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1.1rem; }
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107,33,80,0.92) 0%, rgba(15,10,15,0.85) 50%, rgba(15,10,15,0.7) 100%);
    z-index: 1;
}
.hero-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.hero-shape--tl {
    width: 300px;
    height: 300px;
    background: #6b2150;
    border-radius: 50%;
    top: -80px;
    left: -80px;
    opacity: 0.5;
    filter: blur(60px);
}
.hero-shape--br {
    width: 500px;
    height: 500px;
    background: #f59e0b;
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    opacity: 0.15;
    filter: blur(80px);
}
.hero-shape--circle {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(245,158,11,0.3);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.4);
    color: #f59e0b;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
}
.hero-headline {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.0;
    color: #fff;
    margin-bottom: 20px;
    max-width: 800px;
    animation: fadeUp 0.8s 0.1s ease both;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeUp 0.8s 0.3s ease both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Services ── */
.services {
    position: relative;
    padding: 100px 0;
    background: #0f0a0f;
    overflow: hidden;
}
.geo { position: absolute; pointer-events: none; }
.geo--dot {
    width: 8px; height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    top: 120px; right: 60px;
    box-shadow: 0 0 0 4px rgba(245,158,11,0.2), 0 0 0 12px rgba(245,158,11,0.1);
}
.geo--line {
    width: 120px; height: 2px;
    background: linear-gradient(90deg, transparent, #6b2150, transparent);
    top: 200px; left: 40px;
}
.geo--hex {
    width: 100px; height: 100px;
    background: rgba(107,33,80,0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 80px; left: 80px;
}
.geo--ring {
    width: 150px; height: 150px;
    border: 3px solid rgba(245,158,11,0.15);
    border-radius: 50%;
    top: 60px; right: 40px;
}
.services .container { position: relative; z-index: 1; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,158,11,0.3);
    box-shadow: 0 20px 60px rgba(107,33,80,0.2);
}
.service-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}
.service-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── About ── */
.about {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0a0f 0%, #1a0f1a 100%);
    overflow: hidden;
}
.about-bg-shape {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(107,33,80,0.3) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 4px solid #1a0f1a;
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }
.about-stat {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #6b2150;
    border-radius: 20px;
    padding: 20px 28px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(107,33,80,0.5);
}
.stat-number {
    font-size: 2.5rem;
    color: #f59e0b;
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}
.about-text p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-float { right: 10px; bottom: -30px; }
    .about-stat { left: 10px; }
}

/* ── Why Us ── */
.why-us {
    position: relative;
    padding: 100px 0;
    background: #1a0f1a;
    overflow: hidden;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.3); }
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6b2150, #f59e0b);
    border-radius: 20px 20px 0 0;
}
.why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(245,158,11,0.15);
    line-height: 1;
    margin-bottom: 12px;
}
.why-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}
.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #6b2150 0%, #4a1535 100%);
    overflow: hidden;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-shape--left {
    width: 400px; height: 400px;
    background: rgba(245,158,11,0.1);
    top: -200px; left: -100px;
}
.cta-shape--right {
    width: 300px; height: 300px;
    background: rgba(245,158,11,0.08);
    bottom: -150px; right: -50px;
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 16px;
}
.cta-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 32px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Contact ── */
.contact {
    position: relative;
    padding: 100px 0;
    background: #0f0a0f;
    overflow: hidden;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
}
.contact-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 52px; height: 52px;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}
.contact-item span, .contact-item a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}
.contact-item a:hover { color: #f59e0b; }
.contact-item span { white-space: pre-line; }

/* Form */
.contact-form-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px;
}
.contact-form h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 6px;
}
.form-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f59e0b;
    background: rgba(245,158,11,0.05);
}
.form-group select option { background: #1a0f1a; color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    background: rgba(22,163,74,0.1);
    border: 1px solid rgba(22,163,74,0.3);
    border-radius: 12px;
    color: #16a34a;
    font-weight: 500;
    font-size: 0.9rem;
}
.form-success.show { display: flex; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ── Map ── */
.map-section {
    filter: saturate(0.6) brightness(0.85);
    transition: filter 0.3s;
}
.map-section:hover { filter: saturate(0.8) brightness(0.95); }

/* ── Footer ── */
.footer {
    background: #080508;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links h4, .footer-contact h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #f59e0b;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #f59e0b; }
.footer-contact p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-contact a:hover { color: #f59e0b; }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}
