/* ============================================
   NALBANT VIP TRANSFER - Premium Design System
   Modern, Clean, Professional
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #0a1628;
    --primary-light: #132744;
    --accent: #c8a45e;
    --accent-light: #dfc07f;
    --accent-dark: #a8863e;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* === Loader === */
.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo { color: var(--white); font-size: 1.5rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 1.5rem; }
.loader-spinner {
    width: 40px; height: 40px; margin: 0 auto;
    border: 3px solid rgba(200,164,94,0.2); border-top-color: var(--accent);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === Top Bar === */
.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 0.78rem;
    padding: 0.45rem 0;
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1002;
    border-bottom: 1px solid rgba(200,164,94,0.2);
}
.top-bar .container {
    display: flex; justify-content: space-between; align-items: center;
}
.top-bar-left {
    display: flex; align-items: center; gap: 1.5rem;
}
.top-bar-left a {
    color: rgba(255,255,255,0.9); display: inline-flex;
    align-items: center; gap: 0.35rem; transition: var(--transition);
}
.top-bar-left a:hover { color: var(--white); }
.top-bar-left i { font-size: 0.75rem; }
.top-bar-right {
    display: flex; align-items: center; gap: 1rem;
}
.top-bar-social {
    display: flex; align-items: center; gap: 0.6rem;
}
.top-bar-social a {
    color: rgba(255,255,255,0.7); font-size: 0.8rem;
    transition: var(--transition);
}
.top-bar-social a:hover { color: var(--white); }
.top-bar-lang {
    color: rgba(255,255,255,0.9); display: inline-flex;
    align-items: center; gap: 0.3rem; font-weight: 500;
    padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.2);
}
.top-bar-lang img { width: 16px; height: 12px; border-radius: 1px; }

/* Currency Widget in Top Bar */
.top-bar-currency {
    display: flex; align-items: center; gap: 0.75rem;
    padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.15);
    margin-left: 0.25rem;
}
.currency-item {
    display: inline-flex; align-items: center; gap: 0.3rem;
    color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 500;
    white-space: nowrap;
}
.currency-item .currency-flag { font-size: 0.8rem; }
.currency-item .currency-rate { color: var(--accent); font-weight: 700; }
@media (max-width: 768px) {
    .top-bar-currency { display: none; }
}

/* Language Switcher */
.lang-switcher { position: relative; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.2); }
.lang-current { background: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); padding: 0.2rem 0.6rem; border-radius: 4px; cursor: pointer; font-size: 0.75rem; font-weight: 600; font-family: inherit; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.3rem; }
.lang-current:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.lang-dropdown { position: absolute; top: calc(100% + 6px); right: 0; background: #fff; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); overflow: hidden; display: none; min-width: 130px; z-index: 9999; }
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option { display: block; width: 100%; padding: 0.5rem 0.85rem; border: none; background: none; cursor: pointer; font-size: 0.8rem; font-weight: 500; color: #374151; text-align: left; font-family: inherit; transition: all 0.15s; }
.lang-option:hover { background: #f3f4f6; }
.lang-option.active { background: #eff6ff; color: #1B3A5C; font-weight: 700; }
.lang-float { position: fixed; top: 1rem; right: 1rem; z-index: 9999; padding: 0; border: none; }
.lang-float .lang-current { background: rgba(27,58,92,0.9); border: none; padding: 0.4rem 0.75rem; border-radius: 8px; font-size: 0.8rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.lang-float .lang-current:hover { background: rgba(27,58,92,1); }
.lang-float .lang-dropdown { right: 0; top: calc(100% + 6px); }
body.has-topbar .navbar { top: 32px; }
body.has-topbar .hero { margin-top: 32px; }
body.has-topbar .page-header { margin-top: 32px; }
body.has-topbar .reservation-hero { padding-top: calc(9rem + 32px); }
body.has-topbar.has-review-banner .navbar { top: calc(32px + var(--banner-height, 52px)); }
body.has-topbar.has-review-banner .hero { margin-top: calc(32px + var(--banner-height, 52px)); }
body.has-topbar.has-review-banner .page-header { margin-top: calc(32px + var(--banner-height, 52px)); }
@media (max-width: 768px) {
    .top-bar { font-size: 0.7rem; padding: 0.35rem 0; }
    .top-bar .container { padding: 0 1rem; }
    .top-bar-left { gap: 0.5rem; }
    .top-bar-left a { font-size: 0.65rem; }
    .top-bar-left a i { font-size: 0.65rem; }
    .top-bar-social { gap: 0.3rem; }
    .top-bar-social a { font-size: 0.7rem; }
    .top-bar-lang { font-size: 0.65rem; padding-left: 0.5rem; }
}

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-wrapper {
    display: flex; align-items: center; justify-content: space-between;
}
.logo img { height: 55px; width: auto; transition: var(--transition); }
.navbar.scrolled .logo img { height: 45px; }
.logo .logo-NALBANT, .logo .logo-vip, .logo .logo-TRANSFER {
    color: var(--white); font-weight: 700; font-size: 1.2rem;
}
.logo .logo-vip { color: var(--accent); margin: 0 4px; }
.nav-menu {
    display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
    color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
    padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
    transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link.active::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 2px; background: var(--accent); border-radius: 2px;
}

/* Auth Buttons in Nav */
.btn-auth {
    font-size: 0.85rem !important; font-weight: 600 !important;
    padding: 0.45rem 1rem !important; border-radius: var(--radius-sm) !important;
    align-items: center !important; gap: 0.4rem !important;
}
.btn-auth[style*="display:none"], .btn-auth[style*="display: none"] { display: none !important; }
.btn-secondary.btn-auth {
    color: var(--white) !important; border: 1px solid rgba(255,255,255,0.3) !important;
    background: transparent !important;
}
.btn-secondary.btn-auth:hover { border-color: var(--accent) !important; color: var(--accent) !important; }
.btn-primary.btn-auth {
    background: var(--accent) !important; color: var(--white) !important;
    border: none !important;
}
.btn-primary.btn-auth:hover { background: var(--accent-light) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav User Section (Dashboard/Profile) */
.nav-user-section {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.5rem 1rem; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
}
.nav-user-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}
.nav-user-info { display: flex; flex-direction: column; }
.nav-user-name { color: var(--white); font-weight: 600; font-size: 0.85rem; }
.nav-user-email { color: var(--gray-400); font-size: 0.75rem; }
.btn-nav-logout {
    color: rgba(255,255,255,0.6); font-size: 0.8rem; padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm); transition: var(--transition);
    background: none; border: none; cursor: pointer;
}
.btn-nav-logout:hover { color: var(--danger); background: rgba(239,68,68,0.1); }

/* === Buttons === */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent); color: var(--white);
    padding: 0.75rem 1.75rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem;
    transition: var(--transition); border: none;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(200,164,94,0.3); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--white);
    padding: 0.75rem 1.75rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-large { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* === Hero Section === */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    background: var(--primary); overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.6) 50%, rgba(10,22,40,0.75) 100%);
}
.hero-background, .hero-slider {
    position: absolute; inset: 0; z-index: 1;
    background-size: cover; background-position: center;
    transition: opacity 1s ease;
}
.hero-content {
    position: relative; z-index: 3;
    width: 100%; padding: 8rem 0 4rem;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700; color: var(--white);
    line-height: 1.1; margin-bottom: 1rem;
}
.hero-subtitle {
    display: block; color: var(--accent);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300; font-style: italic;
    margin-top: 0.5rem;
}
.hero-description {
    font-size: 1.15rem; color: rgba(255,255,255,0.75);
    max-width: 600px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 3; text-align: center; color: rgba(255,255,255,0.5);
    font-size: 0.8rem; letter-spacing: 2px;
}
.scroll-line {
    width: 1px; height: 40px; background: rgba(255,255,255,0.3);
    margin: 0.5rem auto 0; animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === Page Header (Inner Pages) === */
.page-header {
    position: relative; padding: 10rem 0 4rem;
    background: var(--primary); overflow: hidden;
    min-height: 350px; display: flex; align-items: flex-end;
}
.page-header-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to bottom, rgba(10,22,40,0.7), rgba(10,22,40,0.9));
}
.page-header-background {
    position: absolute; inset: 0; z-index: 1;
    background-size: cover; background-position: center;
}
.page-header-content { position: relative; z-index: 3; }
.page-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700; color: var(--white); margin-bottom: 0.5rem;
}
.page-description { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 1rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* === Section Styles === */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-subtitle {
    display: inline-block; color: var(--accent);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700; color: var(--gray-900); margin-bottom: 1rem;
    line-height: 1.2;
}
.section-description {
    font-size: 1.05rem; color: var(--gray-600);
    max-width: 650px; margin: 0 auto; line-height: 1.7;
}

/* === Home Route Map === */
.route-map-card-home {
    background: var(--white); border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden;
    border: 1px solid var(--gray-100);
}
.route-map-header-home {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #162d4a 100%);
    color: white; font-size: 0.9rem;
}
.route-marker { background: none !important; border: none !important; }

/* === Features V2 Section === */
.feat-v2 { padding: 5.5rem 0 5rem; background: var(--white); position: relative; overflow: hidden; }
.feat-v2::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 800px; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,164,94,0.2), transparent); }
.feat-v2-header { text-align: center; margin-bottom: 3rem; }
.feat-v2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feat-v2-card { position: relative; }
.feat-v2-card-inner {
    text-align: center; padding: 2.5rem 1.5rem 2rem;
    background: var(--white); border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease; position: relative; overflow: hidden; height: 100%;
}
.feat-v2-card-inner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,164,94,0.03) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s ease;
}
.feat-v2-card:hover .feat-v2-card-inner {
    transform: translateY(-8px);
    border-color: rgba(200,164,94,0.25);
    box-shadow: 0 20px 50px rgba(10,22,40,0.08), 0 0 0 1px rgba(200,164,94,0.08);
}
.feat-v2-card:hover .feat-v2-card-inner::before { opacity: 1; }
.feat-v2-num {
    position: absolute; top: 1rem; right: 1.25rem;
    font-size: 2.5rem; font-weight: 900; color: var(--gray-100);
    line-height: 1; pointer-events: none; transition: color 0.4s ease;
}
.feat-v2-card:hover .feat-v2-num { color: rgba(200,164,94,0.12); }
.feat-v2-icon {
    width: 64px; height: 64px; margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary), #0d2240);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.3rem;
    transition: all 0.4s ease; position: relative; z-index: 1;
}
.feat-v2-card:hover .feat-v2-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(10,22,40,0.2);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--white);
}
.feat-v2-card-inner h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--gray-900);
    margin-bottom: 0.6rem; position: relative; z-index: 1;
}
.feat-v2-card-inner p {
    font-size: 0.85rem; color: var(--gray-500); line-height: 1.7;
    position: relative; z-index: 1;
}
.feat-v2-line {
    width: 40px; height: 3px; margin: 1.25rem auto 0;
    background: var(--gray-100); border-radius: 2px;
    transition: all 0.4s ease;
}
.feat-v2-card:hover .feat-v2-line { width: 60px; background: var(--accent); }
@media (max-width: 1024px) { .feat-v2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feat-v2-grid { grid-template-columns: 1fr; } .feat-v2 { padding: 4rem 0 3.5rem; } }

/* === About Preview V2 === */
.apv2-section { padding: 6rem 0; background: var(--gray-50); position: relative; overflow: hidden; }
.apv2-section::before { content: ''; position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,164,94,0.06) 0%, transparent 70%); border-radius: 50%; }
.apv2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.apv2-images { position: relative; }
.apv2-img-main { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(10,22,40,0.12); }
.apv2-img-main img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 6s ease; }
.apv2-img-main:hover img { transform: scale(1.04); }
.apv2-img-badge { position: absolute; bottom: 1.25rem; left: 1.25rem; background: var(--primary); color: var(--white); padding: 0.6rem 1.1rem; border-radius: 10px; font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; backdrop-filter: blur(8px); z-index: 2; }
.apv2-img-badge i { font-size: 0.9rem; }
.apv2-img-small { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 170px; height: 130px; border-radius: 14px; overflow: hidden; border: 4px solid var(--white); box-shadow: 0 10px 30px rgba(10,22,40,0.15); z-index: 3; }
.apv2-img-small img { width: 100%; height: 100%; object-fit: cover; }
.apv2-accent-line { position: absolute; top: -12px; left: -12px; width: 80px; height: 80px; border-left: 3px solid var(--accent); border-top: 3px solid var(--accent); border-radius: 4px 0 0 0; opacity: 0.5; }
.apv2-content { position: relative; }
.apv2-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 1rem; }
.apv2-desc { font-size: 1rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 2rem; }
.apv2-highlights { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.apv2-highlight { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 1.1rem; background: var(--white); border-radius: 12px; border: 1px solid var(--gray-100); transition: all 0.3s ease; }
.apv2-highlight:hover { border-color: rgba(200,164,94,0.3); box-shadow: 0 6px 24px rgba(200,164,94,0.08); transform: translateX(5px); }
.apv2-highlight-icon { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), #0d2240); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.apv2-highlight strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.1rem; }
.apv2-highlight span { font-size: 0.78rem; color: var(--gray-500); }
.apv2-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary); color: var(--white); padding: 0.85rem 2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; }
.apv2-btn:hover { background: var(--accent); color: var(--white); gap: 0.75rem; }

/* === Services Preview V2 === */
.spv2-section { position: relative; padding: 6rem 0; overflow: hidden; }
.spv2-bg { position: absolute; inset: 0; background: var(--primary); }
.spv2-bg::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(200,164,94,0.04) 100%); }
.spv2-bg::after { content: ''; position: absolute; bottom: -150px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,164,94,0.08) 0%, transparent 70%); border-radius: 50%; }
.spv2-section .container { position: relative; z-index: 1; }
.spv2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.spv2-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.spv2-desc { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 2rem; }
.spv2-services { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.spv2-service { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.1rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; transition: all 0.3s ease; }
.spv2-service:hover { background: rgba(200,164,94,0.08); border-color: rgba(200,164,94,0.2); transform: translateX(5px); }
.spv2-service-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.12); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.spv2-service strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.1rem; }
.spv2-service span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.spv2-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: var(--white); padding: 0.85rem 2rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; transition: all 0.3s ease; }
.spv2-btn:hover { background: var(--white); gap: 0.75rem; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,164,94,0.25); }
.spv2-visual { position: relative; }
.spv2-img-stack { position: relative; }
.spv2-img-1 { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.spv2-img-1 img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 6s ease; }
.spv2-img-1:hover img { transform: scale(1.04); }
.spv2-img-2 { position: absolute; bottom: -1.5rem; left: -1.5rem; width: 170px; height: 130px; border-radius: 14px; overflow: hidden; border: 4px solid var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.3); z-index: 3; }
.spv2-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.spv2-float-stat { position: absolute; top: 1.5rem; right: -1rem; background: var(--white); border-radius: 12px; padding: 1rem 1.25rem; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.15); z-index: 3; animation: floatY 3s ease-in-out infinite; }
.spv2-float-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.spv2-float-label { font-size: 0.72rem; color: var(--gray-500); font-weight: 500; }

@media (max-width: 768px) {
    .apv2-grid, .spv2-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .apv2-img-main img, .spv2-img-1 img { height: 300px; }
    .apv2-img-small { right: -0.5rem; bottom: -1rem; width: 130px; height: 100px; }
    .spv2-img-2 { left: -0.5rem; bottom: -1rem; width: 130px; height: 100px; }
    .spv2-float-stat { right: 0.5rem; }
    .apv2-section, .spv2-section { padding: 4rem 0; }
}

/* === Reviews Section === */
.reviews { padding: 5rem 0; background: var(--gray-50); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review-loading { grid-column: 1/-1; text-align: center; padding: 3rem; color: var(--gray-500); }
.review-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--accent); margin-bottom: 1rem; font-size: 0.9rem; }
.review-text { color: var(--gray-700); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem;
}
.review-name { font-weight: 600; color: var(--gray-900); font-size: 0.9rem; }
.review-date { color: var(--gray-500); font-size: 0.8rem; }

/* === Stats Section === */
.stats {
    position: relative; padding: 5rem 0;
    background: var(--primary);
}
.stats-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,164,94,0.05), transparent);
}
.stats .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    position: relative; z-index: 2;
}
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-item .stat-icon {
    width: 56px; height: 56px; margin: 0 auto 1rem;
    background: rgba(255,255,255,0.12); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.3rem;
}
.stat-number {
    font-size: 2.5rem; font-weight: 700; color: var(--white);
    margin-bottom: 0.25rem;
}
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; }

/* === CTA Section === */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}
.cta-content { max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.cta-description { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* === Footer === */
.footer { background: var(--primary); color: rgba(255,255,255,0.7); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 2.5rem; }
.footer-logo img { height: 45px; width: auto; margin-bottom: 1rem; }
.footer-description { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social .social-link, .social-link {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; transition: var(--transition);
}
.footer-social .social-link:hover, .social-link:hover { background: var(--accent); color: var(--white); }
.footer-title { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { display: flex; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.9rem; }
.footer-contact i { color: rgba(255,255,255,0.8); margin-top: 3px; font-size: 0.85rem; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
    padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center; font-size: 0.85rem;
}

/* === Scroll Top === */
.scroll-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-light); transform: translateY(-2px); }

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition); animation: wpPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
@keyframes wpPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* === Modal === */
.modal {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal.active { opacity: 1; visibility: visible; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.modal-content {
    position: relative; background: var(--white);
    border-radius: var(--radius-lg); padding: 2.5rem;
    max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto;
    box-shadow: var(--shadow-xl); z-index: 1;
    transform: translateY(20px); transition: var(--transition);
}
.modal.active .modal-content { transform: translateY(0); }
.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gray-100); color: var(--gray-600);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.modal-close:hover { background: var(--gray-200); color: var(--gray-900); }
.modal-icon {
    width: 64px; height: 64px; margin: 0 auto 1.25rem;
    border-radius: 50%; background: rgba(16,185,129,0.1);
    color: var(--success); display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
}
.modal-title { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.modal-description { text-align: center; color: var(--gray-600); margin-bottom: 1.5rem; }

/* === Custom Modals (custom-modals.js) === */
.custom-modal {
    position: fixed; inset: 0; z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.custom-modal.active { opacity: 1; visibility: visible; }
.custom-modal-content {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2.5rem; max-width: 420px; width: 90%;
    box-shadow: var(--shadow-xl); text-align: center;
    transform: translateY(20px); transition: var(--transition);
}
.custom-modal.active .custom-modal-content { transform: translateY(0); }
.custom-modal-icon {
    width: 64px; height: 64px; margin: 0 auto 1.25rem;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
}
.custom-modal-icon.info { background: rgba(59,130,246,0.1); color: #3b82f6; }
.custom-modal-icon.success { background: rgba(16,185,129,0.1); color: #10b981; }
.custom-modal-icon.warning { background: rgba(245,158,11,0.1); color: #f59e0b; }
.custom-modal-icon.error { background: rgba(239,68,68,0.1); color: #ef4444; }
.custom-modal-title { font-size: 1.35rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.custom-modal-message { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; }
.custom-modal-buttons { display: flex; gap: 0.75rem; justify-content: center; }
.custom-modal-btn {
    padding: 0.65rem 1.5rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.9rem; cursor: pointer;
    border: none; display: inline-flex; align-items: center; gap: 0.4rem;
    transition: var(--transition);
}
.custom-modal-btn.primary { background: var(--accent); color: var(--white); }
.custom-modal-btn.primary:hover { background: var(--accent-light); }
.custom-modal-btn.secondary { background: var(--gray-200); color: var(--gray-700); }
.custom-modal-btn.secondary:hover { background: var(--gray-300); }
.custom-modal-btn.danger { background: #ef4444; color: var(--white); }
.custom-modal-btn.danger:hover { background: #dc2626; }

/* === Review Reminder Banner === */
.review-reminder-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 0.75rem 0; position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
    display: none;
}
body.has-topbar .review-reminder-banner { top: 32px; }
body.has-review-banner .navbar { top: var(--banner-height, 52px); }
body.has-review-banner .hero { margin-top: var(--banner-height, 52px); }
body.has-review-banner .page-header { margin-top: var(--banner-height, 52px); }
body.has-review-banner.dashboard-body .dashboard-full-content { padding-top: var(--banner-height, 52px); }
.review-reminder-content {
    display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.review-reminder-icon {
    width: 40px; height: 40px; background: rgba(255,255,255,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.review-reminder-text { flex: 1; color: var(--white); min-width: 0; }
.review-reminder-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.review-reminder-text p { font-size: 0.8rem; opacity: 0.8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-reminder-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn-review-now {
    background: var(--white); color: #1B3A5C;
    padding: 0.5rem 1.25rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.85rem; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-review-now:hover { background: var(--accent); }
.btn-review-close {
    background: rgba(255,255,255,0.15); color: var(--white);
    width: 32px; height: 32px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
}
.btn-review-close:hover { background: rgba(255,255,255,0.25); }

/* === Services Detail Page === */
.services-detail { padding: 5rem 0; }
.service-detail-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center; margin-bottom: 5rem;
}
.service-detail-card.service-reverse { direction: rtl; }
.service-detail-card.service-reverse > * { direction: ltr; }
.service-detail-image { border-radius: var(--radius-lg); overflow: hidden; }
.service-detail-image img { width: 100%; height: 400px; object-fit: cover; }
.service-detail-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.25rem;
}
.service-detail-title { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
.service-detail-description { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.5rem; }
.service-features { margin-bottom: 1.5rem; }
.service-features li {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.5rem 0; color: var(--gray-700); font-size: 0.95rem;
}
.service-features i { color: var(--accent); font-size: 0.85rem; }
.service-detail-footer { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Additional Services */
.additional-services { padding: 5rem 0; background: var(--gray-50); }
.additional-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
.additional-card {
    text-align: center; padding: 2rem 1rem;
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); transition: var(--transition);
}
.additional-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.additional-icon {
    width: 52px; height: 52px; margin: 0 auto 1rem;
    background: rgba(200,164,94,0.1); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.2rem;
}
.additional-title { font-size: 0.95rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.4rem; }
.additional-description { font-size: 0.8rem; color: var(--gray-600); }

/* Pricing */
.pricing { padding: 5rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2.5rem; border: 1px solid var(--gray-200);
    position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pricing-badge {
    display: inline-block; background: var(--accent); color: var(--white);
    padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.75rem;
    font-weight: 700; margin-bottom: 1rem;
}
.pricing-title { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
.pricing-price { margin-bottom: 1.5rem; }
.price-currency { font-size: 1.25rem; font-weight: 600; color: var(--gray-900); vertical-align: top; }
.price-amount { font-size: 3rem; font-weight: 700; color: var(--gray-900); }
.price-period { font-size: 0.9rem; color: var(--gray-500); }
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 0; color: var(--gray-700); font-size: 0.9rem;
}
.pricing-features i { color: var(--accent); font-size: 0.8rem; }
.pricing-note { text-align: center; margin-top: 2rem; color: var(--gray-500); font-size: 0.9rem; }
.pricing-note i { color: var(--accent); margin-right: 0.4rem; }

/* === About Page === */
.about-main { padding: 5rem 0; }
.about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content-left .section-description { margin-bottom: 1rem; }
.about-signature { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }
.about-signature p:first-child { font-size: 1.1rem; color: var(--gray-900); }
.about-signature p:last-child { color: var(--gray-500); font-size: 0.9rem; }
.about-image-grid { position: relative; }
.about-image-main { border-radius: var(--radius-lg); width: 100%; height: 450px; object-fit: cover; }
.about-image-secondary { position: absolute; bottom: -2rem; left: -2rem; width: 200px; }
.about-image-secondary img { border-radius: var(--radius-md); height: 150px; object-fit: cover; border: 4px solid var(--white); }
.about-experience-badge {
    position: absolute; top: -1rem; right: -1rem;
    background: var(--accent); color: var(--white);
    padding: 1rem; border-radius: var(--radius-md); text-align: center;
}
.badge-number { display: block; font-size: 2rem; font-weight: 700; }
.badge-text { font-size: 0.75rem; font-weight: 600; }

/* Vision Mission */
.vision-mission { padding: 5rem 0; background: var(--gray-50); }
.vm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.vm-card {
    background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); text-align: center; transition: var(--transition);
}
.vm-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vm-icon {
    width: 56px; height: 56px; margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.3rem;
}
.vm-title { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.vm-description { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* Why Choose */
.why-choose { padding: 5rem 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
    padding: 2rem; border-radius: var(--radius-lg);
    background: var(--white); border: 1px solid var(--gray-200);
    transition: var(--transition); position: relative;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.why-number {
    position: absolute; top: 1rem; right: 1.5rem;
    font-size: 3rem; font-weight: 800; color: var(--gray-100);
}
.why-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    background: rgba(200,164,94,0.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 1rem;
}
.why-title { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; }
.why-description { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }

/* Timeline */
.timeline { padding: 5rem 0; background: var(--gray-50); }
.timeline-wrapper { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-wrapper::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: var(--gray-300); transform: translateX(-50%);
}
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-content {
    width: 45%; padding: 1.5rem; background: var(--white);
    border-radius: var(--radius-md); border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; }
.timeline-year {
    display: inline-block; background: var(--accent); color: var(--white);
    padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem;
    font-weight: 700; margin-bottom: 0.5rem;
}
.timeline-title { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; }
.timeline-description { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }

/* Team */
.team { padding: 5rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--gray-200); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-image { position: relative; overflow: hidden; }
.team-image img { width: 100%; height: 300px; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-social {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1rem 1rem; display: flex; justify-content: center; gap: 0.5rem;
    opacity: 0; transition: var(--transition);
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.2); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; transition: var(--transition);
}
.team-social a:hover { background: var(--accent); color: var(--white); }
.team-info { padding: 1.25rem; text-align: center; }
.team-name { font-size: 1.05rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; }
.team-position { color: var(--accent-dark); font-size: 0.85rem; font-weight: 500; }

/* === Contact Page === */
.contact-info-section { padding: 5rem 0; }
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.contact-info-card {
    text-align: center; padding: 2rem 1.5rem;
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.contact-info-icon {
    width: 56px; height: 56px; margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.2rem;
}
.contact-info-title { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; }
.contact-info-text { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }
.contact-info-text a { color: var(--accent-dark); }
.contact-info-text a:hover { color: var(--accent); }

.contact-main-section { padding: 0 0 5rem; }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form-container {
    background: var(--white); padding: 2.5rem;
    border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
}
.form-header { margin-bottom: 2rem; }
.form-title { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.form-description { color: var(--gray-600); font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--gray-700); margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea, .form-input {
    width: 100%; padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
    font-size: 0.95rem; color: var(--gray-800);
    background: var(--white); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .form-input:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,164,94,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.error-message { color: var(--danger); font-size: 0.8rem; margin-top: 0.3rem; display: block; }
.input-error { border-color: var(--danger) !important; }

.contact-map-container { display: flex; flex-direction: column; gap: 2rem; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; }
.contact-map iframe { width: 100%; height: 400px; border: none; }
.contact-social { background: var(--gray-50); padding: 2rem; border-radius: var(--radius-lg); }
.contact-social-title { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; }
.contact-social-description { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1rem; }
.contact-social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.contact-social-links .social-link {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: var(--radius-sm);
    background: var(--white); border: 1px solid var(--gray-200);
    color: var(--gray-700); font-size: 0.85rem; font-weight: 500;
    width: auto; height: auto;
}
.contact-social-links .social-link:hover { border-color: var(--accent); color: var(--accent); background: var(--white); }

/* === FAQ Page === */
.faq-intro { padding: 3rem 0; }
.faq-intro-content { text-align: center; max-width: 700px; margin: 0 auto; }
.faq-intro-content h2 { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.faq-intro-content p { color: var(--gray-600); font-size: 1rem; line-height: 1.7; }
.faq-intro-content a { color: var(--accent-dark); font-weight: 600; }
.faq-intro-content a:hover { color: var(--accent); }

.faq-categories { padding: 0 0 2rem; }
.faq-category-buttons { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.faq-cat-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.25rem; border-radius: 30px;
    background: var(--white); border: 1.5px solid var(--gray-300);
    color: var(--gray-600); font-size: 0.9rem; font-weight: 500;
    transition: var(--transition);
}
.faq-cat-btn:hover, .faq-cat-btn.active {
    background: var(--primary); color: var(--white); border-color: var(--primary);
}

.faq-section { padding: 2rem 0 5rem; }
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 1.25rem; font-weight: 700; color: var(--gray-900);
    margin-bottom: 1.25rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}
.faq-group-title i { color: var(--accent); }
.faq-item {
    margin-bottom: 0.75rem; border: 1px solid var(--gray-200);
    border-radius: var(--radius-md); overflow: hidden;
    background: var(--white); transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem; cursor: pointer; gap: 1rem;
}
.faq-question h3 { font-size: 1rem; font-weight: 600; color: var(--gray-800); flex: 1; }
.faq-question i { color: var(--gray-400); font-size: 0.85rem; transition: var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer { max-height: 1000px; padding-bottom: 1.5rem; }
.faq-answer p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.75rem; }
.faq-answer ul, .faq-answer ol { margin: 0.5rem 0 0.75rem 1.25rem; }
.faq-answer li { color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.4rem; }
.faq-answer ul { list-style: disc; }
.faq-answer ol { list-style: decimal; }
.faq-answer a { color: var(--accent-dark); font-weight: 500; }
.faq-answer a:hover { color: var(--accent); }
.highlight-box {
    background: var(--gray-50); padding: 1rem 1.5rem;
    border-radius: var(--radius-sm); border-left: 3px solid var(--accent);
    font-size: 1.1rem;
}

/* === Fleet Page === */
.fleet-categories { padding: 5rem 0; background: var(--gray-50); }
.fleet-filter { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
    padding: 0.7rem 1.75rem; border-radius: 50px;
    background: var(--white); border: 1.5px solid var(--gray-200);
    color: var(--gray-600); font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
    background: var(--primary); color: var(--white); border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(10,22,40,0.18);
}

/* ===== FLEET CARDS ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.fleet-card {
    background: var(--white); border-radius: 16px;
    overflow: hidden; border: 1px solid var(--gray-200);
    transition: all 0.35s ease;
    display: flex; flex-direction: column;
}
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10,22,40,0.1);
    border-color: rgba(200,164,94,0.25);
}

.fleet-image { position: relative; height: 220px; overflow: hidden; }
.fleet-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-image img { transform: scale(1.05); }
.fleet-image::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.5) 100%);
    z-index: 1; pointer-events: none;
}
.fleet-badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    background: var(--primary); color: var(--white);
    padding: 0.3rem 0.7rem; border-radius: 6px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; z-index: 2;
}
.fleet-badge-featured {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: var(--accent); color: var(--white);
    padding: 0.3rem 0.7rem; border-radius: 6px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; z-index: 2;
}
.fleet-image-overlay {
    position: absolute; bottom: 0.75rem; left: 0.75rem; z-index: 2;
    display: flex; gap: 0.4rem;
}
.fleet-image-overlay .fleet-spec-pill {
    display: flex; align-items: center; gap: 0.3rem;
    background: rgba(0,0,0,0.45); backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.3rem 0.65rem; border-radius: 6px;
    font-size: 0.75rem; font-weight: 600; color: #fff;
}
.fleet-image-overlay .fleet-spec-pill i { color: var(--accent); font-size: 0.7rem; }

.fleet-content { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.fleet-card-header { margin-bottom: 0.75rem; }
.fleet-title { font-size: 1.1rem; font-weight: 800; color: var(--gray-900); margin-bottom: 0.4rem; line-height: 1.25; }
.fleet-card-meta { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.fleet-category {
    color: var(--accent-dark); font-size: 0.72rem; font-weight: 700;
    background: rgba(200,164,94,0.08); padding: 0.2rem 0.6rem; border-radius: 5px;
}
.fleet-year-badge {
    background: var(--gray-100); color: var(--gray-600);
    padding: 0.2rem 0.6rem; border-radius: 5px;
    font-size: 0.72rem; font-weight: 600;
}
.fleet-divider { height: 1px; background: var(--gray-100); margin: 0 0 0.75rem; }

.fleet-features {
    margin: 0 0 0.75rem; list-style: none; padding: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.1rem 0.5rem;
}
.fleet-features li {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.25rem 0; color: var(--gray-600); font-size: 0.78rem;
}
.fleet-features i { color: var(--accent-dark); font-size: 0.55rem; }

.fleet-routes {
    margin: 0 0 0.75rem; padding: 0.65rem 0.75rem;
    background: var(--gray-50); border-radius: 8px;
}
.fleet-routes-title {
    display: flex; align-items: center; gap: 0.35rem;
    margin-bottom: 0.4rem; font-size: 0.72rem; font-weight: 700; color: var(--gray-800);
}
.fleet-routes-title i { color: var(--accent-dark); font-size: 0.7rem; }
.fleet-routes-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.fleet-route-tag {
    padding: 0.18rem 0.5rem;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 5px; font-size: 0.68rem; color: var(--gray-500);
    transition: all 0.25s ease;
}
.fleet-route-tag:hover { border-color: var(--accent); color: var(--accent-dark); }
.fleet-route-tag i { color: var(--accent-dark); font-size: 0.5rem; }

.fleet-desc { color: var(--gray-500); font-size: 0.82rem; margin: 0 0 0.75rem; line-height: 1.55; }

.fleet-price-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}
.fleet-price { font-size: 1.35rem; font-weight: 800; color: var(--primary); line-height: 1; }
.fleet-price small { font-size: 0.75rem; font-weight: 500; color: var(--gray-400); }
.fleet-cta-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--primary); color: var(--white);
    padding: 0.6rem 1.1rem; border-radius: 10px;
    font-size: 0.78rem; font-weight: 700; text-decoration: none;
    transition: all 0.3s ease; border: none; cursor: pointer;
}
.fleet-cta-btn:hover { background: #0d2240; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,22,40,0.15); }
.fleet-cta-btn i { font-size: 0.9rem; }
.fleet-cta-btn-full {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; margin-top: auto;
    background: var(--primary); color: var(--white);
    padding: 0.7rem; border-radius: 10px;
    font-size: 0.82rem; font-weight: 700; text-decoration: none;
    transition: all 0.3s ease; border: none; cursor: pointer;
}
.fleet-cta-btn-full:hover { background: #0d2240; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,22,40,0.15); }

.fleet-route-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(200,164,94,0.1); color: var(--accent-dark);
    border: 1.5px solid rgba(200,164,94,0.25); cursor: pointer;
    font-size: 0.95rem; transition: all 0.3s ease; flex-shrink: 0;
}
.fleet-route-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(200,164,94,0.3); }

@media (max-width: 1024px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fleet-grid { grid-template-columns: 1fr; } .fleet-features { grid-template-columns: 1fr; } }

.fleet-global-features { padding: 5rem 0; background: var(--gray-50); }
.global-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.global-feature { text-align: center; padding: 2rem 1.5rem; }
.global-feature-icon {
    width: 56px; height: 56px; margin: 0 auto 1rem;
    background: var(--primary); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.2rem;
}
.global-feature-title { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; }
.global-feature-description { color: var(--gray-600); font-size: 0.9rem; }

.comfort-section { padding: 5rem 0; }
.comfort-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.comfort-list { margin: 1.5rem 0; }
.comfort-list li {
    display: flex; gap: 1rem; margin-bottom: 1.25rem;
    align-items: flex-start;
}
.comfort-list i { color: var(--accent); font-size: 1.1rem; margin-top: 2px; }
.comfort-list strong { display: block; color: var(--gray-900); font-size: 1rem; margin-bottom: 0.2rem; }
.comfort-list p { color: var(--gray-600); font-size: 0.9rem; margin: 0; }
.comfort-image { border-radius: var(--radius-lg); overflow: hidden; }
.comfort-image img { width: 100%; height: 450px; object-fit: cover; }

/* === Comfort V2 (Fleet Page) === */
.comfort-v2 { position: relative; padding: 6rem 0; overflow: hidden; }
.comfort-v2-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #f8f6f1 0%, #faf9f6 50%, #f0ece3 100%); z-index: 0; }
.comfort-v2-bg::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,164,94,0.08) 0%, transparent 70%); border-radius: 50%; }
.comfort-v2 .container { position: relative; z-index: 1; }
.comfort-v2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.comfort-v2-title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--gray-900); line-height: 1.15; margin-bottom: 1.25rem; }
.comfort-v2-desc { font-size: 1rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.comfort-v2-features { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.comfort-v2-feat { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; background: var(--white); border-radius: 14px; border: 1px solid var(--gray-100); transition: all 0.3s ease; }
.comfort-v2-feat:hover { border-color: rgba(200,164,94,0.3); box-shadow: 0 8px 30px rgba(200,164,94,0.08); transform: translateX(6px); }
.comfort-v2-feat-icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), #0d2240); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.comfort-v2-feat h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.2rem; }
.comfort-v2-feat p { font-size: 0.82rem; color: var(--gray-500); margin: 0; line-height: 1.5; }
.comfort-v2-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.comfort-v2-call { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gray-600); font-size: 0.9rem; font-weight: 600; text-decoration: none; padding: 0.75rem 1.25rem; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); transition: all 0.3s ease; }
.comfort-v2-call:hover { border-color: var(--primary); color: var(--primary); }
.comfort-v2-call i { font-size: 0.85rem; }

.comfort-v2-right { position: relative; }
.comfort-v2-img-wrapper { position: relative; }
.comfort-v2-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(10,22,40,0.12); }
.comfort-v2-img-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.comfort-v2-img-secondary { position: absolute; bottom: -2rem; left: -2.5rem; width: 180px; height: 140px; border-radius: 14px; overflow: hidden; border: 4px solid #fff; box-shadow: 0 10px 30px rgba(10,22,40,0.15); }
.comfort-v2-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.comfort-v2-float-card { position: absolute; top: 1.5rem; right: -1.5rem; background: var(--white); border-radius: 12px; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.65rem; box-shadow: 0 8px 30px rgba(10,22,40,0.1); border: 1px solid var(--gray-100); animation: floatY 3s ease-in-out infinite; z-index: 2; }
.comfort-v2-float-bottom { top: auto; right: auto; bottom: 1rem; left: auto; right: 1.5rem; animation-delay: 1.5s; }
.comfort-v2-float-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(200,164,94,0.15); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.comfort-v2-float-num { display: block; font-size: 1.15rem; font-weight: 800; color: var(--gray-900); line-height: 1.2; }
.comfort-v2-float-label { font-size: 0.7rem; color: var(--gray-400); font-weight: 500; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 768px) {
    .comfort-v2-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .comfort-v2-img-secondary { left: -1rem; bottom: -1.5rem; width: 140px; height: 110px; }
    .comfort-v2-float-card { right: -0.5rem; }
    .comfort-v2-float-bottom { right: 0.5rem; }
    .comfort-v2-img-main img { height: 320px; }
    .comfort-v2 { padding: 4rem 0; }
}

/* === Legal Pages (Terms, Privacy) === */
.legal-content { max-width: 900px; margin: 0 auto; }
.legal-update {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gray-50); padding: 0.5rem 1rem;
    border-radius: var(--radius-sm); color: var(--gray-600);
    font-size: 0.85rem; margin-bottom: 2rem;
}
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.4rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
.legal-section h3 { font-size: 1.1rem; font-weight: 600; color: var(--gray-800); margin: 1.25rem 0 0.75rem; }
.legal-section p { color: var(--gray-600); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-section ul, .legal-section ol { margin: 0.5rem 0 1rem 1.25rem; }
.legal-section ul { list-style: disc; }
.legal-section ol { list-style: decimal; }
.legal-section li { color: var(--gray-600); line-height: 1.7; margin-bottom: 0.4rem; font-size: 0.95rem; }
.legal-section a { color: var(--accent-dark); }
.legal-section a:hover { color: var(--accent); }
.legal-acceptance { margin-top: 3rem; }
.acceptance-box {
    background: var(--gray-50); padding: 2rem; border-radius: var(--radius-lg);
    text-align: center; border: 1px solid var(--gray-200);
}
.acceptance-box i { font-size: 2rem; color: var(--accent); margin-bottom: 0.75rem; }
.acceptance-box h3 { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.acceptance-box p { color: var(--gray-600); font-size: 0.95rem; }
.privacy-intro { margin-bottom: 2rem; }
.intro-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 2rem; border-radius: var(--radius-lg); text-align: center; color: var(--white);
}
.intro-box i { font-size: 2rem; color: var(--accent); margin-bottom: 0.75rem; }
.intro-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.intro-box p { opacity: 0.85; font-size: 0.95rem; line-height: 1.7; }
.gdpr-section {
    background: var(--gray-50); padding: 2rem; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); margin-top: 2rem;
}
.gdpr-section h3 { font-size: 1.15rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.gdpr-section h3 i { color: var(--accent); margin-right: 0.5rem; }
.gdpr-section p { color: var(--gray-600); margin-bottom: 0.75rem; }
.gdpr-section ul { list-style: disc; margin-left: 1.25rem; }
.gdpr-section li { color: var(--gray-600); margin-bottom: 0.4rem; }

/* === Reservation Widget (Homepage) === */
.reservation-widget-section { padding: 0; margin-top: 2rem; position: relative; z-index: 10; }
.reservation-widget-section .container { max-width: 100%; padding: 0; }
.reservation-widget-container {
    background: var(--white); border-radius: 0;
    box-shadow: 0 20px 60px rgba(10,22,40,0.12);
    overflow: visible;
}
.rw-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 4rem; border-bottom: 1px solid var(--gray-100);
    background: linear-gradient(135deg, rgba(10,22,40,0.02) 0%, transparent 100%);
}
.rw-header-left { display: flex; align-items: center; gap: 0.85rem; }
.rw-header-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #0d2240);
    color: var(--accent); display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.rw-header-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.1rem; }
.rw-header-desc { font-size: 0.78rem; color: var(--gray-400); }
.rw-header-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(16,185,129,0.08); color: #10B981;
    padding: 0.4rem 0.85rem; border-radius: 8px;
    font-size: 0.75rem; font-weight: 700;
}
.rw-header-badge i { font-size: 0.7rem; }
.reservation-widget-inner { padding: 2rem 4rem 2.5rem; }
.widget-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 1.25rem; }
.widget-column { position: relative; }
.widget-label {
    display: flex; align-items: center; gap: 0.4rem;
    margin-bottom: 0.5rem;
}
.widget-label-icon { color: var(--accent); font-size: 0.75rem; }
.widget-label-text { font-size: 0.7rem; font-weight: 700; color: var(--gray-500); letter-spacing: 1px; text-transform: uppercase; }
.widget-input-group { position: relative; }
.widget-input-icon { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 0.85rem; }
.widget-input {
    width: 100%; padding: 0.85rem 0.85rem 0.85rem 2.5rem;
    border: 1.5px solid var(--gray-200); border-radius: 12px;
    font-size: 0.9rem; color: var(--gray-800); background: var(--gray-50);
    transition: all 0.3s ease; cursor: pointer;
}
.widget-input:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 4px rgba(200,164,94,0.08); }
.widget-input:hover { border-color: var(--gray-300); }
.widget-dropdown {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 14px; box-shadow: 0 16px 48px rgba(10,22,40,0.12);
    z-index: 100; max-height: 320px; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    pointer-events: none;
    transition: all 0.25s ease;
}
.widget-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.widget-dropdown-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.7rem 1rem; cursor: pointer; transition: all 0.2s ease;
    font-size: 0.88rem; color: var(--gray-700); border-radius: 8px; margin: 0 0.35rem;
}
.widget-dropdown-item:hover { background: var(--gray-50); color: var(--accent-dark); }
.widget-dropdown-item i { color: var(--accent); font-size: 0.8rem; width: 20px; text-align: center; }
.widget-dropdown-category {
    padding: 0.6rem 1rem 0.3rem; font-size: 0.7rem; font-weight: 700;
    color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px;
    border-top: 1px solid var(--gray-100); margin-top: 0.25rem;
}
.widget-dropdown-category:first-child { border-top: none; margin-top: 0; }
.widget-dropdown-passengers { padding: 1rem; min-width: 250px; border-radius: 14px; }
.passenger-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100);
}
.passenger-row:last-child { border-bottom: none; }
.passenger-label { font-size: 0.9rem; font-weight: 500; color: var(--gray-700); }
.passenger-counter { display: flex; align-items: center; gap: 0.75rem; }
.counter-btn {
    width: 34px; height: 34px; border-radius: 10px;
    border: 1.5px solid var(--gray-200); background: var(--white);
    color: var(--gray-700); font-size: 1rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease; cursor: pointer;
}
.counter-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,164,94,0.04); }
.counter-value { font-size: 1rem; font-weight: 600; color: var(--gray-900); min-width: 20px; text-align: center; }
.widget-button-row { margin-top: 1.5rem; }
.widget-submit-btn {
    width: 100%; padding: 1.1rem;
    background: linear-gradient(135deg, var(--primary), #0d2240);
    color: var(--white);
    border: none; border-radius: 12px;
    font-size: 0.95rem; font-weight: 700; letter-spacing: 1.5px;
    cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(10,22,40,0.2);
    position: relative; overflow: hidden;
}
.widget-submit-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    opacity: 0; transition: opacity 0.3s ease;
}
.widget-submit-btn:hover::before { opacity: 1; }
.widget-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(10,22,40,0.25); color: #fff; }
.widget-submit-btn i, .widget-submit-btn span { position: relative; z-index: 1; }
@media (max-width: 768px) {
    .rw-header { padding: 1rem 1.5rem; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .rw-header-badge { align-self: flex-start; }
    .reservation-widget-inner { padding: 1.5rem; }
}

/* === Responsive === */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .additional-grid { grid-template-columns: repeat(3, 1fr); }
    .widget-row { grid-template-columns: 1fr 1fr; }
    .global-features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        background: var(--primary); flex-direction: column;
        padding: 5rem 2rem 2rem; gap: 0.5rem;
        transition: var(--transition); z-index: 1000;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-link { padding: 0.75rem 1rem; width: 100%; }
    .btn-auth { width: 100% !important; justify-content: center !important; }
    .nav-user-section { flex-direction: column; text-align: center; width: 100%; }

    .hero-content { padding: 7rem 0 3rem; }
    .about-content-grid,
    .service-detail-card, .contact-main-grid, .comfort-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-detail-card.service-reverse { direction: ltr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .vm-grid, .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .fleet-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .additional-grid { grid-template-columns: repeat(2, 1fr); }
    .widget-row { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats .stats-grid { grid-template-columns: 1fr 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .global-features-grid { grid-template-columns: 1fr 1fr; }
    .timeline-wrapper::before { left: 1rem; }
    .timeline-content { width: calc(100% - 3rem); margin-left: 3rem !important; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .page-header { padding: 8rem 0 3rem; min-height: auto; }
    .review-reminder-content { flex-direction: row; text-align: left; gap: 0.75rem; flex-wrap: nowrap; }
    .review-reminder-icon { width: 32px; height: 32px; font-size: 0.9rem; }
    .review-reminder-text h4 { font-size: 0.8rem; }
    .review-reminder-text p { font-size: 0.7rem; }
    .review-reminder-actions { gap: 0.35rem; }
    .btn-review-now { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
    .btn-review-close { width: 28px; height: 28px; }
    .faq-category-buttons { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .additional-grid { grid-template-columns: 1fr; }
    .stats .stats-grid { grid-template-columns: 1fr; }
    .global-features-grid { grid-template-columns: 1fr; }
}

/* === Animations === */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
[data-aos="fade-up"] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
[data-aos="fade-up"].aos-animate, body.loaded [data-aos="fade-up"] { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s, transform 0.6s; }
[data-aos="fade-right"].aos-animate, body.loaded [data-aos="fade-right"] { opacity: 1; transform: translateX(0); }
[data-aos="fade-left"] { opacity: 0; transform: translateX(30px); transition: opacity 0.6s, transform 0.6s; }
[data-aos="fade-left"].aos-animate, body.loaded [data-aos="fade-left"] { opacity: 1; transform: translateX(0); }

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--primary);
    border-top: 1px solid rgba(200, 164, 94, 0.2);
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}
.cookie-consent.active {
    transform: translateY(0);
}
.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.cookie-consent-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(200, 164, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.cookie-consent-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
}
.cookie-consent-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent-text a:hover {
    color: #d4b06a;
}
.cookie-consent-actions {
    flex-shrink: 0;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.cookie-btn-accept {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.cookie-btn-accept:hover {
    background: #d4b06a;
    transform: translateY(-1px);
}
.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.cookie-btn-reject:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.25rem 1.5rem;
        gap: 1rem;
    }
    .cookie-consent-icon { display: none; }
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn-accept, .cookie-btn-reject {
        flex: 1;
        text-align: center;
    }
}

/* ===================================
   NOTIFICATION SYSTEM
   =================================== */
.notif-bell {
    position: relative; display: none; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
    color: rgba(255,255,255,0.8); font-size: 1.05rem;
    transition: var(--transition); background: rgba(255,255,255,0.08);
    margin-right: 0.25rem;
}
.notif-bell:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.notif-bell.has-unread { color: var(--accent); }
.notif-badge {
    position: absolute; top: 2px; right: 2px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: #ef4444; color: #fff; font-size: 0.65rem; font-weight: 700;
    border-radius: 9px; display: none; align-items: center; justify-content: center;
    line-height: 1; border: 2px solid var(--primary);
}
.notif-badge.active { display: flex; }
.notif-bell.has-unread .notif-badge { animation: notifPulse 2s infinite; }
@keyframes notifPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Dropdown */
.notif-dropdown {
    position: absolute; top: calc(100% + 12px); right: -60px;
    width: 360px; max-height: 480px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18); border: 1px solid var(--gray-200);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.25s ease; z-index: 1100; overflow: hidden;
}
.notif-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.notif-dropdown-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-100);
}
.notif-dropdown-header > span,
.notif-dropdown-title { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); }
.notif-dropdown-header > a,
.notif-mark-all {
    font-size: 0.75rem; font-weight: 600; color: var(--accent-dark);
    cursor: pointer; background: none; border: none; padding: 0;
    font-family: inherit; transition: var(--transition); text-decoration: none;
}
.notif-dropdown-header > a:hover,
.notif-mark-all:hover { color: var(--accent); }
.notif-list { max-height: 360px; overflow-y: auto; }
.notif-list::-webkit-scrollbar { width: 4px; }
.notif-list::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
.notif-item {
    display: flex; gap: 0.75rem; padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--gray-50); cursor: pointer;
    transition: var(--transition); text-decoration: none;
}
.notif-item:hover { background: var(--gray-50); }
.notif-item.unread { background: rgba(200,164,94,0.04); }
.notif-item.unread::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--accent);
}
.notif-item { position: relative; }
.notif-icon {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.notif-icon.confirmed { background: rgba(16,185,129,0.1); color: #10b981; }
.notif-icon.rejected { background: rgba(239,68,68,0.1); color: #ef4444; }
.notif-icon.completed { background: rgba(59,130,246,0.1); color: #3b82f6; }
.notif-icon.welcome { background: rgba(200,164,94,0.1); color: var(--accent); }
.notif-icon.general { background: rgba(107,114,128,0.1); color: #6b7280; }
.notif-text { flex: 1; min-width: 0; }
.notif-text-title { font-size: 0.82rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.15rem; }
.notif-item.unread .notif-text-title { color: var(--gray-900); }
.notif-text-msg {
    font-size: 0.78rem; color: var(--gray-500); line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.notif-text-time { font-size: 0.68rem; color: var(--gray-400); margin-top: 0.25rem; }
.notif-empty {
    padding: 2.5rem 1rem; text-align: center; color: var(--gray-400);
}
.notif-empty i { font-size: 2rem; margin-bottom: 0.75rem; display: block; opacity: 0.5; }
.notif-empty p { font-size: 0.85rem; }

@media (max-width: 480px) {
    .notif-dropdown { width: calc(100vw - 32px); right: -100px; }
}


/* ===================================
   HERO WEATHER WIDGET
   =================================== */
.hero-weather-widget {
    display: none;
    margin-top: 0.5rem;
    padding: 0.65rem 0.85rem;
    background: rgba(10,22,40,0.7);
    border-radius: 10px;
    border: 1px solid rgba(200,164,94,0.12);
    backdrop-filter: blur(8px);
    animation: heroWeatherIn 0.4s ease;
}
.hero-weather-widget.active { display: flex; align-items: center; gap: 0.75rem; }
@keyframes heroWeatherIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-weather-widget .weather-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.hero-weather-widget .weather-info { flex: 1; min-width: 0; }
.hero-weather-widget .weather-temp { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.1rem; }
.hero-weather-widget .weather-desc { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: capitalize; }
.hero-weather-widget .weather-details { display: flex; gap: 0.6rem; margin-top: 0.2rem; }
.hero-weather-widget .weather-detail { display: flex; align-items: center; gap: 0.3rem; font-size: 0.68rem; color: rgba(255,255,255,0.55); }
.hero-weather-widget .weather-detail i { font-size: 0.6rem; color: var(--accent); }


/* ===================================
   WHATSAPP LIVE SUPPORT BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s ease;
}
.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 2;
}
.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float-btn:active { transform: scale(0.95); }
.whatsapp-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: whatsappPulse 2s infinite;
    z-index: 1;
    top: 0;
    right: 0;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: var(--gray-800);
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 768px) {
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-float-btn { width: 54px; height: 54px; font-size: 1.5rem; }
    .whatsapp-pulse { width: 54px; height: 54px; }
    .whatsapp-tooltip { display: none; }
}


/* ===================================
   VEHICLE GALLERY LIGHTBOX
   =================================== */
.fleet-image { cursor: pointer; position: relative; overflow: hidden; }
.fleet-image::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 48px;
    height: 48px;
    background: rgba(10,22,40,0.7);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}
.fleet-image:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.fleet-image:hover img { transform: scale(1.08); }
.fleet-image img { transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active { display: flex; opacity: 1; }
.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-main-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}
.lightbox-info {
    margin-top: 1rem;
    text-align: center;
    color: #fff;
}
.lightbox-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.25rem; }
.lightbox-info p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.lightbox-counter {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.lightbox-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding: 0.25rem;
    max-width: 90vw;
}
.lightbox-thumbs::-webkit-scrollbar { height: 4px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 2px; }
.lightbox-thumb {
    width: 72px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.lightbox-thumb:hover { opacity: 0.8; }
.lightbox-thumb.active { opacity: 1; border-color: var(--accent); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }
.lightbox-nav.disabled { opacity: 0.2; pointer-events: none; }

@media (max-width: 768px) {
    .lightbox-main-img { max-height: 55vh; border-radius: 8px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 0.95rem; }
    .lightbox-nav.prev { left: 0.5rem; }
    .lightbox-nav.next { right: 0.5rem; }
    .lightbox-thumb { width: 56px; height: 40px; }
    .lightbox-close { top: 0.75rem; right: 0.75rem; }
    .lightbox-counter { top: 0.75rem; left: 0.75rem; }
}


/* ===================================
   SKELETON LOADING
   =================================== */
@keyframes skeletonShimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.5s infinite ease-in-out;
    border-radius: 6px;
}
.skeleton-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}
.skeleton-img {
    width: 100%;
    height: 220px;
}
.skeleton-body { padding: 1.25rem; }
.skeleton-line {
    height: 14px;
    margin-bottom: 0.65rem;
    border-radius: 4px;
}
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-40 { width: 40%; }
.skeleton-line.w-80 { width: 80%; }
.skeleton-line.w-100 { width: 100%; }
.skeleton-line.h-lg { height: 20px; }
.skeleton-line.h-btn { height: 42px; border-radius: 8px; margin-top: 0.5rem; }
.skeleton-specs {
    display: flex;
    gap: 1rem;
    margin: 0.75rem 0;
}
.skeleton-spec {
    height: 14px;
    width: 70px;
    border-radius: 4px;
}
/* Review skeleton */
.skeleton-review {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
}
.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}
.skeleton-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
/* Dashboard reservation skeleton */
.skeleton-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-50);
}
.skeleton-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}
.skeleton-text-group { flex: 1; }


/* ===================================
   TYPING ANIMATION
   =================================== */
.typing-cursor {
    display: inline-block;
    color: var(--accent);
    font-weight: 300;
    animation: typingBlink 0.7s infinite;
    margin-left: 2px;
}
@keyframes typingBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===================================
   DESIGN ENHANCEMENTS 2.0
   =================================== */

/* --- Section Dividers (Wave) --- */
.features::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--gray-50);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--primary);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.features, .reviews, .stats, .cta {
    position: relative;
}

/* --- Glassmorphism Navbar --- */
.navbar.scrolled {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(200, 164, 94, 0.08);
}

/* --- Enhanced Stats with Glow Numbers --- */
.stat-number {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(200, 164, 94, 0.15));
}

.stat-item .stat-icon {
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: rgba(200, 164, 94, 0.25);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 30px rgba(200, 164, 94, 0.15);
}

/* --- Enhanced Review Cards --- */
.review-card {
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(200, 164, 94, 0.06);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    border-color: rgba(200, 164, 94, 0.15);
}

/* --- Enhanced CTA Section --- */
.cta {
    overflow: hidden;
}

.cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 164, 94, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-title {
    position: relative;
    z-index: 1;
}

.cta-description {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

/* --- Enhanced Footer --- */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.footer {
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin-top: 0.75rem;
    border-radius: 2px;
    opacity: 0.6;
}

/* --- Enhanced Scroll Top Button --- */
.scroll-top {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 4px 15px rgba(200, 164, 94, 0.3);
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: 0 6px 25px rgba(200, 164, 94, 0.4);
    transform: translateY(-4px);
}

/* --- Enhanced Page Headers --- */
.page-header-overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.5) 0%,
        rgba(10, 22, 40, 0.7) 50%,
        rgba(10, 22, 40, 0.95) 100%
    );
}

.page-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* --- Gold Accent Line on Page Headers --- */
.page-header-content::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    margin-top: 1.5rem;
    border-radius: 2px;
}

/* --- Enhanced Breadcrumb --- */
.breadcrumb a {
    position: relative;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
    width: 100%;
}

/* --- Smooth Hover on Footer Links --- */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid var(--accent);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

/* --- Enhanced Hero Scroll Indicator --- */
.hero-scroll {
    animation: heroScrollFloat 3s ease-in-out infinite;
}

@keyframes heroScrollFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* --- Enhanced WhatsApp Tooltip --- */
.whatsapp-float::before {
    content: 'Yardıma mı ihtiyacınız var?';
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    pointer-events: none;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

/* --- Loading Screen Enhancement --- */
.loader {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1f3c 100%);
}

.loader-logo {
    letter-spacing: 6px;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Notification Bell Enhancement --- */
.notif-badge {
    animation: notifPulse 2s ease-in-out infinite;
}

@keyframes notifPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* --- Enhanced Buttons Micro-interactions --- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* --- End of premium enhancements --- */

/* --- Mobile Enhancements --- */
@media (max-width: 768px) {
    .whatsapp-float::before,
    .whatsapp-float::after {
        display: none;
    }

    .features::before,
    .reviews::before,
    .stats::before,
    .cta::before {
        height: 30px;
        top: -30px;
    }

    .page-header-content::after {
        width: 40px;
        margin-top: 1rem;
    }
}

/* --- Hero Trust Badges --- */
.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.hero-badge i {
    color: var(--accent);
    font-size: 0.8rem;
}

.hero-badge:hover {
    background: rgba(200, 164, 94, 0.15);
    border-color: rgba(200, 164, 94, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-badges {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    .hero-badge {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
    }
}
