/*
Theme Name: Yamal VIP Travel
Theme URI: https://yamalviptravel.com.tr
Author: Yamal VIP Travel
Description: Premium VIP Transfer ve Lüks Taşımacılık Hizmetleri için Modern WordPress Teması
Version: 2.1.4
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GPLv2 or later
Text Domain: yamalviptravel
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --c-black: #000;
    --c-darker: #0a0a0f;
    --c-dark: #0f0f14;
    --c-primary: #1a1a2e;
    --c-navy: #16213e;
    --c-gold: #c9a227;
    --c-gold-light: #d4af37;
    --c-gold-bright: #f5d562;
    --c-accent: #e94560;
    --c-white: #fff;
    --c-gray-100: #f8f9fa;
    --c-gray-200: #e9ecef;
    --c-gray-300: #dee2e6;
    --c-gray-400: #ced4da;
    --c-gray-500: #adb5bd;
    --c-gray-600: #6c757d;
    --c-gray-700: #495057;
    --c-gray-800: #343a40;
    --g-gold: linear-gradient(135deg, #c9a227 0%, #f5d562 50%, #c9a227 100%);
    --g-dark: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    --shadow-gold: 0 10px 40px rgba(201,162,39,.3);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-head: 'Playfair Display', Georgia, serif;
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 12px;
    --r-xl: 16px;
    --r-2xl: 24px;
    --r-full: 9999px;
}

[data-theme=dark] {
    --c-bg: var(--c-darker);
    --c-text: var(--c-white);
    --c-text-muted: var(--c-gray-400);
    --c-border: rgba(255,255,255,.1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-main); line-height: 1.7; color: var(--c-text); background: var(--c-bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: .3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

/* =============================================
   UTILITIES
   ============================================= */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--g-dark); }
.text-gold { color: var(--c-gold); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Better keyboard accessibility */
:where(a, button, input, select, textarea, summary):focus-visible {
    outline: 2px solid rgba(201,162,39,.9);
    outline-offset: 3px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* Price helpers (used in a few templates) */
.price-inline { color: var(--c-gold); font-weight: 700; margin: .5rem 0 0; }
.price-hero { font-size: 2rem; font-weight: 800; color: var(--c-gold); }
.price-hero__unit { font-size: 1rem; font-weight: 400; color: var(--c-text-muted); }
.price-sub { font-size: 1rem; color: var(--c-text-muted); margin-top: .5rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: var(--r-lg);
    transition: .3s ease;
}
.btn--gold { background: var(--g-gold); color: var(--c-primary); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(201,162,39,.4); }
.btn--primary { background: var(--c-gold); color: var(--c-primary); }
.btn--primary:hover { background: var(--c-gold-light); }
.btn--outline { background: transparent; border: 2px solid var(--c-gold); color: var(--c-gold); }
.btn--outline:hover { background: var(--c-gold); color: var(--c-primary); }
.btn--white { background: var(--c-white); color: var(--c-primary); }
.btn--lg { padding: 1.25rem 2rem; font-size: 1rem; }
.btn--sm { padding: .5rem 1rem; font-size: .75rem; }
.btn--block { width: 100%; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar { background: var(--c-black); border-bottom: 1px solid rgba(201,162,39,.2); padding: .5rem 0; font-size: .875rem; }
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; }
.top-bar__left, .top-bar__right { display: flex; align-items: center; gap: 1.5rem; }
.top-bar__item { display: flex; align-items: center; gap: .5rem; color: var(--c-gray-400); }
.top-bar__item svg { color: var(--c-gold); width: 16px; height: 16px; }
.top-bar__item:hover { color: var(--c-white); }
.top-bar__divider { width: 1px; height: 16px; background: rgba(255,255,255,.2); }
.top-bar__social { display: flex; gap: .5rem; }
.top-bar__social a { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); border-radius: var(--r-full); color: var(--c-gray-400); }
.top-bar__social a:hover { background: var(--c-gold); color: var(--c-primary); }
@media (max-width: 768px) { .top-bar { display: none; } }

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10,10,15,.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,162,39,.1);
    transition: .3s ease;
}
.site-header.scrolled {
    top: 0;
    padding: .75rem 0;
    background: rgba(10,10,15,.98);
    box-shadow: 0 5px 30px rgba(0,0,0,.3);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.site-logo__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g-gold);
    border-radius: var(--r-lg);
    color: var(--c-primary);
}
.site-logo__text {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-white);
}
.site-logo__text span { color: var(--c-gold); }
.site-logo__image {
    max-height: 50px;
    width: auto;
}

/* =============================================
   MAIN NAVIGATION - CRITICAL FIX
   ============================================= */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Ana menü listesi */
.main-nav .nav-menu,
.main-nav .menu,
.main-nav > ul,
#primary-menu {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ana menü öğeleri */
.main-nav .nav-menu > li,
.main-nav .menu > li,
#primary-menu > li {
    position: relative !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ana menü linkleri */
.main-nav .nav-menu > li > a,
.main-nav .menu > li > a,
#primary-menu > li > a {
    display: block !important;
    padding: 0.75rem 1rem !important;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    background: transparent !important;
}

.main-nav .nav-menu > li > a:hover,
.main-nav .menu > li > a:hover,
#primary-menu > li > a:hover,
.main-nav .nav-menu > li.current-menu-item > a,
.main-nav .menu > li.current-menu-item > a,
#primary-menu > li.current-menu-item > a {
    color: #fff !important;
    background: rgba(201,162,39,0.1) !important;
}

/* Dropdown ok işareti */
.main-nav .menu-item-has-children > a::after,
#primary-menu > .menu-item-has-children > a::after {
    content: '' !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    margin-left: 6px !important;
    vertical-align: middle !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 5px solid currentColor !important;
    transition: transform 0.3s ease !important;
}

.main-nav .menu-item-has-children:hover > a::after,
#primary-menu > .menu-item-has-children:hover > a::after {
    transform: rotate(180deg) !important;
}

/* =============================================
   DROPDOWN / SUB-MENU - CRITICAL FIX
   ============================================= */
.main-nav .sub-menu,
#primary-menu .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 260px !important;
    margin: 0 !important;
    padding: 0.5rem !important;
    background: rgba(15,15,20,0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(201,162,39,0.2) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
    list-style: none !important;
    
    /* GİZLİ - varsayılan durum */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    pointer-events: none !important;
}

/* HOVER'DA GÖRÜNÜR */
.main-nav .menu-item-has-children:hover > .sub-menu,
#primary-menu > .menu-item-has-children:hover > .sub-menu,
.main-nav li:hover > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(5px) !important;
    pointer-events: auto !important;
}

/* Alt menü öğeleri */
.main-nav .sub-menu li,
#primary-menu .sub-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Alt menü linkleri */
.main-nav .sub-menu li a,
#primary-menu .sub-menu li a {
    display: block !important;
    padding: 0.75rem 1rem !important;
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.main-nav .sub-menu li a:hover,
#primary-menu .sub-menu li a:hover {
    background: rgba(201,162,39,0.15) !important;
    color: #c9a227 !important;
}

/* =============================================
   HEADER ACTIONS
   ============================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
}
.header-phone:hover {
    background: rgba(201,162,39,.1);
    border-color: rgba(201,162,39,.3);
}
.header-phone__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g-gold);
    border-radius: var(--r-md);
    color: var(--c-primary);
}
.header-phone__text {
    display: flex;
    flex-direction: column;
}
.header-phone__label {
    font-size: .7rem;
    color: var(--c-gray-400);
    text-transform: uppercase;
}
.header-phone__number {
    font-size: .9rem;
    font-weight: 700;
    color: var(--c-white);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: .75rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-md);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: .3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

@media (max-width: 1200px) { .header-phone { display: none; } }
@media (max-width: 1024px) { 
    .site-header { top: 0; }
    .main-nav { display: none !important; }
    .mobile-toggle { display: flex; }
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--c-dark);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right .4s ease;
}
.mobile-menu.active { right: 0; }

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(201,162,39,.1);
}
.mobile-menu__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.05);
    border-radius: var(--r-md);
    color: var(--c-white);
}
.mobile-menu__close:hover { background: var(--c-gold); color: var(--c-primary); }

.mobile-menu__nav { flex: 1; padding: 1.5rem; overflow-y: auto; }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.mobile-menu__list li { margin: 0; }
.mobile-menu__list a,
.mobile-menu__list > li > a {
    display: block;
    padding: 1rem;
    color: rgba(255,255,255,.9);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-menu__list a:hover { color: var(--c-gold); }
.mobile-menu__list .sub-menu {
    padding-left: 1rem;
    background: transparent;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    min-width: auto;
}
.mobile-menu__list .sub-menu a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    color: rgba(255,255,255,0.7);
}

.mobile-menu__footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(201,162,39,.1);
    background: rgba(0,0,0,.2);
}
.mobile-menu__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(201,162,39,.1);
    border: 1px solid rgba(201,162,39,.2);
    border-radius: var(--r-lg);
    color: var(--c-white);
    font-weight: 600;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__slider { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero__slide.active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,15,.95) 0%, rgba(10,10,15,.6) 50%, rgba(10,10,15,.95) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 800px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(201,162,39,.1);
    border: 1px solid rgba(201,162,39,.3);
    border-radius: var(--r-full);
    color: var(--c-gold);
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.5rem;
}
.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--c-white);
}
.hero__title span {
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__description {
    font-size: 1.125rem;
    color: var(--c-gray-300);
    margin-bottom: 2rem;
    max-width: 600px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: .75rem;
}
.hero__nav-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.3);
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: .3s ease;
}
.hero__nav-dot.active { width: 40px; background: var(--c-gold); }
@media (max-width: 768px) { .hero { min-height: 600px; } }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(201,162,39,.1);
    border: 1px solid rgba(201,162,39,.3);
    border-radius: var(--r-full);
    color: var(--c-gold);
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-description { font-size: 1.125rem; color: var(--c-text-muted); }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    position: relative;
    padding: 2rem;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-2xl);
    text-align: center;
    transition: .3s ease;
}
.service-card:hover {
    border-color: rgba(201,162,39,.3);
    transform: translateY(-8px);
}
.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g-gold);
    border-radius: var(--r-xl);
    color: var(--c-primary);
    box-shadow: var(--shadow-gold);
}
.service-card__title { font-size: 1.25rem; margin-bottom: .75rem; }
.service-card__text { color: var(--c-text-muted); margin-bottom: 1.5rem; }
.service-card__link { display: inline-flex; align-items: center; gap: .5rem; color: var(--c-gold); font-weight: 600; }

/* =============================================
   VEHICLES GRID
   ============================================= */
.vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 1024px) { .vehicles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .vehicles-grid { grid-template-columns: 1fr; } }

.vehicle-card {
    position: relative;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-2xl);
    overflow: hidden;
    transition: .3s ease;
}
.vehicle-card:hover {
    border-color: rgba(201,162,39,.3);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}
.vehicle-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: .5rem .75rem;
    background: var(--g-gold);
    border-radius: var(--r-full);
    font-size: .75rem;
    font-weight: 700;
    color: var(--c-primary);
    text-transform: uppercase;
}
.vehicle-card__image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.vehicle-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.vehicle-card:hover .vehicle-card__image img { transform: scale(1.1); }
.vehicle-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: .3s ease;
}
.vehicle-card:hover .vehicle-card__overlay { opacity: 1; }
.vehicle-card__content { padding: 1.5rem; }
.vehicle-card__category {
    font-size: .75rem;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}
.vehicle-card__title { font-size: 1.25rem; margin-bottom: .75rem; }
.vehicle-card__title a { color: var(--c-text); }
.vehicle-card__title a:hover { color: var(--c-gold); }
.vehicle-card__specs {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 1rem;
}
.vehicle-card__spec {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--c-text-muted);
}
.vehicle-card__spec svg { width: 18px; height: 18px; color: var(--c-gold); }
.vehicle-card__footer { display: flex; align-items: center; justify-content: space-between; }
.vehicle-card__price-value { font-size: 1.5rem; font-weight: 800; color: var(--c-gold); }
.vehicle-card__price-unit { font-size: .875rem; color: var(--c-text-muted); }

/* =============================================
   PAGE LOADER
   ============================================= */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--c-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .5s ease;
}
.page-loader.loaded { opacity: 0; pointer-events: none; }
.page-loader__spinner svg {
    width: 60px;
    height: 60px;
    animation: rotate 1s linear infinite;
}
.page-loader__spinner circle {
    stroke: var(--c-gold);
    stroke-dasharray: 80;
    stroke-dashoffset: 60;
    animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes dash {
    0% { stroke-dashoffset: 80; }
    50% { stroke-dashoffset: 20; }
    100% { stroke-dashoffset: 80; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--c-black);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(201,162,39,.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-about__logo { margin-bottom: 1.5rem; }
.footer-about__text { color: var(--c-gray-400); margin-bottom: 1.5rem; line-height: 1.8; }
.footer-widget__title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201,162,39,.3);
    color: var(--c-white);
}
.footer-widget__list li { margin-bottom: .75rem; }
.footer-widget__list a { color: var(--c-gray-400); }
.footer-widget__list a:hover { color: var(--c-gold); padding-left: .5rem; }

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright { color: var(--c-gray-500); font-size: .875rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.05);
    border-radius: var(--r-md);
    color: var(--c-gray-400);
}
.footer-social a:hover { background: var(--c-gold); color: var(--c-primary); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}
.whatsapp-float__btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: var(--r-full);
    color: white;
    box-shadow: 0 5px 25px rgba(37,211,102,.4);
    transition: .3s ease;
    animation: pulse 2s infinite;
}
.whatsapp-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37,211,102,.5);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,.4); }
    50% { box-shadow: 0 5px 35px rgba(37,211,102,.6); }
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-gold);
    color: var(--c-primary);
    border-radius: var(--r-full);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s ease;
    z-index: 998;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
    font-size: .875rem;
    color: var(--c-gray-400);
}
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb__separator { color: var(--c-gray-600); }
.breadcrumb__current { color: var(--c-gold); }

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    padding: 8rem 0 3rem;
    background: var(--g-dark);
    text-align: center;
}
.page-header__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(201,162,39,.1);
    border: 1px solid rgba(201,162,39,.3);
    border-radius: var(--r-full);
    color: var(--c-gold);
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.page-header__title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: .75rem; }
.page-header__subtitle { color: var(--c-gray-400); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: .5rem; font-weight: 500; color: var(--c-white); }
.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    color: var(--c-white);
    font-size: 1rem;
    transition: .3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--c-gold);
    background: rgba(201,162,39,.05);
}
.form-control::placeholder { color: var(--c-gray-500); }
textarea.form-control { min-height: 150px; resize: vertical; }
select.form-control { cursor: pointer; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(201,162,39,.1) 0%, rgba(10,10,15,.95) 100%);
    text-align: center;
}
.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.cta__title span { color: var(--c-gold); }
.cta__text {
    color: var(--c-gray-300);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.cta__phone {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--c-white);
    font-size: 1.25rem;
    font-weight: 700;
}
.cta__phone svg { color: var(--c-gold); }
.cta__phone:hover { color: var(--c-gold); }

/* =============================================
   STATS
   ============================================= */
.stats { padding: 4rem 0; background: rgba(0,0,0,.3); }
.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 { text-align: center; }
.stat-item__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,162,39,.1);
    border: 1px solid rgba(201,162,39,.3);
    border-radius: var(--r-xl);
    color: var(--c-gold);
}
.stat-item__number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--c-gold);
    margin-bottom: .5rem;
}
.stat-item__label { color: var(--c-gray-400); }
