/*
Theme Name: Drone Light Event
Theme URI: https://drone-light-event.com
Author: Drone Light Event
Author URI: https://drone-light-event.com
Description: Thème WordPress custom pour Drone Light Event — Spectacles de drones lumineux sur-mesure pour événements en France et en Europe.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dronelightevent
Tags: dark, one-page, custom-menu, translation-ready
*/

/* ============================================
   DRONE LIGHT EVENT — Premium Design System
   Inspired by AO Technology, Lumasky, Skymagic
   ============================================ */

:root {
    --bg: #0a0a0a;
    --surface: #111111;
    --surface2: #1a1a1a;
    --surface3: #222222;
    --surface4: #2a2a2a;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a08530;
    --white: #ffffff;
    --text: #e0e0e0;
    --text2: #999999;
    --text3: #666666;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
img, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(201, 168, 76, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1001;
}
.logo-svg { flex-shrink: 0; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.3px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 998; }
.nav-overlay.active { display: block; }
.nav-menu-cta { display: none; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--surface2);
    border: 1px solid var(--surface3);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.lang-current:hover { border-color: var(--gold); }
.lang-current .lang-flag { font-size: 1rem; }
.lang-current i { font-size: 0.6rem; color: var(--text2); transition: var(--transition); }
.lang-switcher.open .lang-current i { transform: rotate(180deg); }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--surface3);
    border-radius: var(--radius);
    list-style: none;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 100;
    overflow: hidden;
}
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    color: var(--text2);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.lang-dropdown button:hover { background: var(--surface2); color: var(--white); }
.lang-dropdown button.active { color: var(--gold); font-weight: 600; }

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-particles { position: absolute; inset: 0; z-index: 1; }
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    z-index: 0;
    animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}
.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    animation: float linear infinite;
    opacity: 0;
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}
@keyframes float {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 2;
}
.hero-content { position: relative; z-index: 3; text-align: center; padding: 0 24px; max-width: 850px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 28px;
}
.hero-badge i { font-size: 0.85rem; }
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text2);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.hero-trust-item { text-align: center; }
.hero-trust-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-trust-item span { font-size: 0.8rem; color: var(--text2); }
.hero-trust-sep { width: 1px; height: 36px; background: var(--surface3); }
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.hero-scroll a { color: var(--gold); font-size: 1.1rem; animation: bounce 2s infinite; display: block; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ============================================
   SECTIONS
   ============================================ */

.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--surface); }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 60px; }
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--text2); line-height: 1.7; }

/* ============================================
   SERVICES
   ============================================ */

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card {
    background: var(--surface);
    border: 1px solid var(--surface3);
    border-radius: var(--radius-lg);
    padding: 36px 26px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--gold);
}
.service-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.service-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    background: rgba(201,168,76,0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ============================================
   TIMELINE / PROCESS
   ============================================ */

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
    opacity: 0.2;
}
.timeline-item { text-align: center; position: relative; }
.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--surface2);
    border: 2px solid var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.timeline-content h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 8px;
}
.timeline-content p {
    font-size: 0.88rem;
    color: var(--text2);
    line-height: 1.6;
}

/* ============================================
   PORTFOLIO
   ============================================ */

.portfolio-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 9px 22px;
    background: var(--surface2);
    border: 1px solid var(--surface3);
    border-radius: 50px;
    color: var(--text2);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    border-color: var(--gold);
    font-weight: 600;
}
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/2;
    transition: var(--transition);
    border: 1px solid var(--surface3);
}
.portfolio-item:hover { transform: scale(1.02); border-color: rgba(201,168,76,0.3); }
.portfolio-img { width: 100%; height: 100%; }
.portfolio-img svg { width: 100%; height: 100%; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(100%);
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-cat {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 6px;
}
.portfolio-overlay h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.portfolio-overlay p { font-size: 0.82rem; color: var(--text2); font-family: 'Inter', sans-serif; }
.portfolio-item.hidden { display: none; }

/* ============================================
   STATS
   ============================================ */

.section-stats {
    background: linear-gradient(135deg, #151210 0%, #0a0a0a 50%, #151210 100%);
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    padding: 80px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 12px; opacity: 0.6; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: 0.88rem; color: var(--text2); font-weight: 500; }

/* ============================================
   ABOUT
   ============================================ */

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--surface3);
    position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10,10,10,0.9);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 12px 20px;
    backdrop-filter: blur(10px);
}
.about-image-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}
.about-image-badge span { font-size: 0.78rem; color: var(--text2); }
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text { font-size: 0.95rem; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.about-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.about-feature h4 { font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.about-feature p { font-size: 0.82rem; color: var(--text2); }

/* ============================================
   CLIENTS LOGOS (Skymagic style)
   ============================================ */

.section-clients {
    padding: 50px 0;
    border-top: 1px solid var(--surface3);
    border-bottom: 1px solid var(--surface3);
    background: var(--bg);
    overflow: hidden;
}
.clients-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text3);
    margin-bottom: 32px;
}
.clients-track { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); }
.clients-scroll {
    display: flex;
    gap: 60px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text3);
    white-space: nowrap;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
    transition: var(--transition);
    flex-shrink: 0;
}
.client-logo:hover { opacity: 1; color: var(--gold); }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-slider { max-width: 720px; margin: 0 auto; overflow: hidden; position: relative; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--surface2);
    border: 1px solid var(--surface3);
    border-radius: var(--radius-lg);
    text-align: center;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 20px; display: flex; justify-content: center; gap: 4px; }
.testimonial-text { font-size: 1.02rem; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    color: #0a0a0a;
    flex-shrink: 0;
}
.testimonial-author cite { font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--white); text-align: left; display: block; font-style: normal; }
.testimonial-author p { font-size: 0.78rem; color: var(--text2); text-align: left; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--surface3);
    color: var(--text2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.8rem;
}
.testimonial-btn:hover { border-color: var(--gold); color: var(--gold); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--surface3); cursor: pointer; transition: var(--transition); }
.testimonial-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ============================================
   FAQ
   ============================================ */

.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--surface3); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question i { color: var(--gold); font-size: 0.82rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 20px; font-size: 0.92rem; color: var(--text2); line-height: 1.7; }

/* ============================================
   CONTACT
   ============================================ */

.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text2); }
.form-group input, .form-group select, .form-group textarea {
    padding: 13px 16px;
    background: var(--surface2);
    border: 1px solid var(--surface3);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-group select option { background: var(--surface); color: var(--text); }
.form-note { font-size: 0.78rem; color: var(--text3); text-align: center; margin-top: 4px; }
.contact-info-card {
    background: var(--surface2);
    border: 1px solid var(--surface3);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201,168,76,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.contact-info-item h4 { font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.contact-info-item p { font-size: 0.82rem; color: var(--text2); line-height: 1.5; }
.contact-info-item p a { color: var(--text2); }
.contact-info-item p a:hover { color: var(--gold); }
.contact-sub { font-size: 0.75rem !important; color: var(--text3) !important; margin-top: 2px; }
.contact-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--surface3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    font-size: 0.95rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0a; transform: translateY(-3px); }

/* ============================================
   FOOTER
   ============================================ */

.footer { background: var(--surface); border-top: 1px solid var(--surface3); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 0; }
.footer-brand p { font-size: 0.88rem; color: var(--text2); line-height: 1.7; margin-top: 14px; }
.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.88rem; color: var(--text2); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--surface3); padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: var(--text3); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { display: none; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .contact-grid { gap: 32px; }
}

/* --- Tablet portrait & Mobile --- */
@media (max-width: 768px) {
    /* Navigation mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: var(--surface);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 24px 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--surface3);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .nav-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-link { display: block; padding: 16px 0; font-size: 1.05rem; color: var(--text); }
    .nav-link.active { color: var(--gold); }

    /* Show CTA inside mobile menu */
    .nav-menu-cta { display: block !important; border-bottom: none !important; padding-top: 16px; }
    .nav-menu-cta .nav-cta { display: block; text-align: center; margin-top: 4px; padding: 14px 24px; border-radius: 50px; font-size: 0.9rem; }

    /* Mobile nav right area */
    .nav-right { gap: 8px; }
    .nav-toggle { display: flex; }
    .nav-right > .nav-cta { display: none; }

    /* Lang switcher mobile */
    .lang-current { padding: 5px 8px; }
    .lang-code { font-size: 0.75rem; }
    .lang-dropdown { right: -20px; }

    /* Sections */
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .section-desc { font-size: 0.92rem; }

    /* Hero */
    .hero-content { padding: 0 20px; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-subtitle { font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; align-items: center; margin-bottom: 36px; }
    .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; padding: 14px 28px; }
    .hero-trust { gap: 16px; }
    .hero-trust-item strong { font-size: 1.4rem; }
    .hero-trust-sep { height: 28px; }
    .hero-glow { width: 350px; height: 350px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card { padding: 26px 22px; text-align: left; }
    .service-icon { margin: 0 0 14px 0; width: 52px; height: 52px; font-size: 1.2rem; }

    /* Timeline */
    .timeline { grid-template-columns: 1fr; gap: 16px; }
    .timeline-item { text-align: left; display: flex; gap: 18px; align-items: flex-start; }
    .timeline-number { width: 48px; height: 48px; font-size: 1.1rem; flex-shrink: 0; margin-bottom: 0; }
    .timeline-content h3 { font-size: 0.98rem; margin-bottom: 4px; }
    .timeline-content p { font-size: 0.85rem; }

    /* Portfolio */
    .portfolio-filters { justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; gap: 8px; flex-wrap: nowrap; mask-image: linear-gradient(90deg, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, black 90%, transparent); }
    .portfolio-filters::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; padding: 8px 18px; font-size: 0.78rem; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
    .portfolio-item { aspect-ratio: 16/10; }
    .portfolio-overlay { transform: translateY(0); background: linear-gradient(transparent 30%, rgba(0,0,0,0.85)); }

    /* Stats */
    .section-stats { padding: 60px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-content .section-label, .about-content .section-title { text-align: center; }
    .about-image { max-height: 300px; }
    .about-image svg { height: 300px; }
    .about-image-badge { bottom: 14px; left: 14px; padding: 10px 16px; }
    .about-image-badge strong { font-size: 1.4rem; }

    /* Clients */
    .section-clients { padding: 36px 0; }
    .clients-scroll { gap: 40px; }
    .client-logo { font-size: 0.9rem; }

    /* Testimonials */
    .testimonial-card { padding: 28px 20px; }
    .testimonial-text { font-size: 0.95rem; }

    /* FAQ */
    .faq-question { font-size: 0.92rem; padding: 16px 0; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .form-row { grid-template-columns: 1fr; gap: 14px; }
    .contact-info-card { padding: 24px; }
    .contact-socials { justify-content: center; }

    /* Footer */
    .footer { padding: 48px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-brand { text-align: center; }
    .footer-brand .nav-logo { justify-content: center; }
}

/* --- Small mobile --- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-logo .logo-text { font-size: 1.1rem; }
    .logo-svg { width: 28px; height: 28px; }
    .hero-badge { font-size: 0.68rem; padding: 6px 12px; }
    .hero-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
    .hero-subtitle { font-size: 0.88rem; }
    .hero-trust-item strong { font-size: 1.2rem; }
    .hero-trust-sep { display: none; }
    .hero-trust { flex-wrap: wrap; gap: 10px; }
    .section { padding: 52px 0; }
    .stat-number { font-size: 1.8rem; }
    .testimonial-card { padding: 22px 16px; }
    .testimonial-text { font-size: 0.88rem; }
    .social-link { width: 38px; height: 38px; }
    .contact-info-icon { width: 38px; height: 38px; }
    .about-image { max-height: 240px; }
    .about-image svg { height: 240px; }
}

/* --- Very small screens --- */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero-title { font-size: 1.6rem; }
    .nav-logo .logo-text { font-size: 1rem; }
    .section-title { font-size: 1.4rem; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */

::selection { background: rgba(201,168,76,0.3); color: var(--white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
