/**
 * Voyager Turk - Premium Karavan Kiralama
 * Nautical Luxury Theme
 * Renk Paleti: Bej, Beyaz, Koyu Lacivert
 */

/* ==================== FONT IMPORTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors - Nautical Luxury */
    --color-navy: #0a1628;
    --color-navy-light: #162440;
    --color-navy-dark: #050d18;
    --color-beige: #c9a86c;
    --color-beige-light: #ddc9a3;
    --color-beige-dark: #a68b4b;
    --color-cream: #faf8f5;
    --color-white: #ffffff;
    --color-sand: #f5f0e8;
    --color-text-dark: #1a1a1a;
    --color-text-light: #f5f0e8;
    --color-text-muted: #6b7280;
    
    /* Gradients */
    --gradient-navy: linear-gradient(135deg, #0a1628 0%, #162440 100%);
    --gradient-beige: linear-gradient(135deg, #c9a86c 0%, #ddc9a3 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.9) 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.16);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.2);
    --shadow-beige: 0 4px 24px rgba(201, 168, 108, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-4xl) 0;
}

.section--navy {
    background: var(--gradient-navy);
    color: var(--color-text-light);
}

.section--cream {
    background-color: var(--color-cream);
}

.section--sand {
    background-color: var(--color-sand);
}

.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-navy);
    margin-bottom: var(--space-md);
    position: relative;
}

.section--navy .section-title {
    color: var(--color-white);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-beige);
    margin: var(--space-lg) auto 0;
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section--navy .section-subtitle {
    color: var(--color-beige-light);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--gradient-beige);
    color: var(--color-navy);
    box-shadow: var(--shadow-beige);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(201, 168, 108, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--navy {
    background: var(--gradient-navy);
    color: var(--color-white);
}

.btn--navy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn--outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-normal);
}

.header--scrolled,
.header--solid {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header__logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-beige);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-navy);
}

.header__logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header__menu-link {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
    padding: var(--space-sm) 0;
}

.header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-beige);
    transition: width var(--transition-normal);
}

.header__menu-link:hover::after,
.header__menu-link--active::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.header__lang {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
}

.header__lang:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.header__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-normal);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--gradient-navy);
    padding: var(--space-4xl) var(--space-xl);
    transition: right var(--transition-normal);
    z-index: 1001;
}

.mobile-menu--active {
    right: 0;
}

.mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.mobile-menu__overlay--active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.mobile-menu__close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.mobile-menu__link {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 500;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-navy);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero__background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

/* Decorative Elements */
.hero__decor {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.hero__decor--compass {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border: 2px solid var(--color-beige);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

.hero__decor--line {
    bottom: 20%;
    left: 0;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-beige), transparent);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 120px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(201, 168, 108, 0.15);
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-beige);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease forwards;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero__title-accent {
    color: var(--color-beige);
    font-style: italic;
}

.hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero__stats {
    display: flex;
    gap: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero__stat {
    text-align: left;
}

.hero__stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-beige);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-xs);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== FLEET / FILOMUZ ==================== */
.fleet {
    background: var(--color-cream);
}

.fleet__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.fleet-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.fleet-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.fleet-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.fleet-card:hover .fleet-card__image img {
    transform: scale(1.1);
}

.fleet-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-card__image-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--color-beige);
    opacity: 0.5;
}

.fleet-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-beige);
    color: var(--color-navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.fleet-card__location {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(8px);
    color: var(--color-white);
    font-size: 0.875rem;
    border-radius: var(--radius-full);
}

.fleet-card__location svg {
    width: 14px;
    height: 14px;
    color: var(--color-beige);
}

.fleet-card__content {
    padding: var(--space-xl);
}

.fleet-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.fleet-card__meta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-sand);
}

.fleet-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.fleet-card__meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-beige);
}

.fleet-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleet-card__price {
    display: flex;
    flex-direction: column;
}

.fleet-card__price-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

.fleet-card__price-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.fleet-card__action {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.fleet-card__action:hover {
    background: var(--color-beige);
    color: var(--color-navy);
    transform: scale(1.1);
}

.fleet-card__action svg {
    width: 20px;
    height: 20px;
}

.fleet__more {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ==================== WHY US / NEDEN BİZ ==================== */
.why-us {
    background: var(--gradient-navy);
    position: relative;
    overflow: hidden;
}

.why-us__decor {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201, 168, 108, 0.1);
    border-radius: 50%;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 108, 0.3);
    transform: translateY(-4px);
}

.why-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: rgba(201, 168, 108, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card__icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-beige);
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.why-card__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ==================== CONTACT / İLETİŞİM ==================== */
.contact {
    background: var(--color-sand);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__info {
    background: var(--gradient-navy);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: var(--color-white);
}

.contact__info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
}

.contact__info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact__info-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 108, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-beige);
}

.contact__info-content {
    flex: 1;
}

.contact__info-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xs);
}

.contact__info-value {
    font-weight: 500;
}

.contact__info-value a:hover {
    color: var(--color-beige);
}

.contact__social {
    display: flex;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    transition: all var(--transition-normal);
}

.contact__social-link:hover {
    background: var(--color-beige);
    color: var(--color-navy);
}

.contact__social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact__form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem var(--space-lg);
    background: var(--color-sand);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: all var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: var(--color-white);
    border-color: var(--color-beige);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--color-navy-dark);
    color: var(--color-white);
    padding-top: var(--space-4xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer__logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-beige);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-navy);
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
}

.footer__description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--color-white);
    transition: all var(--transition-normal);
}

.footer__social-link:hover {
    background: var(--color-beige);
    color: var(--color-navy);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: all var(--transition-normal);
}

.footer__link:hover {
    color: var(--color-beige);
    padding-left: var(--space-sm);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer__contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 108, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-beige);
}

.footer__contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer__contact-text a:hover {
    color: var(--color-beige);
}

.footer__bottom {
    padding: var(--space-xl) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-xl);
}

.footer__bottom-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer__bottom-link:hover {
    color: var(--color-beige);
}

/* ==================== CARAVAN DETAIL PAGE ==================== */
.detail {
    padding-top: 100px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.breadcrumb a:hover {
    color: var(--color-beige);
}

.breadcrumb__separator {
    color: var(--color-text-muted);
}

.detail__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    margin-top: var(--space-xl);
}

.detail__gallery {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.detail__main-image {
    aspect-ratio: 16/10;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gradient-navy);
}

.detail__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail__thumbnails {
    display: flex;
    gap: var(--space-md);
}

.detail__thumbnail {
    width: 100px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.detail__thumbnail--active,
.detail__thumbnail:hover {
    opacity: 1;
    border-color: var(--color-beige);
}

.detail__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail__info {
    padding: var(--space-xl);
}

.detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.detail__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-sand);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.detail__meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-beige);
}

.detail__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

.detail__description {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.detail__features {
    margin-bottom: var(--space-2xl);
}

.detail__features-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

.detail__features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.detail__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-sand);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.detail__feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-beige);
}

.detail__specs {
    background: var(--color-sand);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.detail__specs-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

.detail__specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.detail__spec {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
}

.detail__spec-label {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.detail__spec-value {
    font-weight: 600;
    color: var(--color-navy);
}

/* Reservation Card */
.reservation-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.reservation-card__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-sand);
}

.reservation-card__price-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
}

.reservation-card__price-label {
    color: var(--color-text-muted);
}

.reservation-card__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.reservation-card__dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.reservation-card__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: var(--color-sand);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.reservation-card__total-label {
    font-weight: 600;
    color: var(--color-navy);
}

.reservation-card__total-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-beige-dark);
}

/* ==================== NOTIFICATIONS ==================== */
.notification {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    min-width: 320px;
    max-width: 420px;
    padding: var(--space-lg) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transform: translateX(150%);
    transition: transform var(--transition-normal);
    z-index: 2000;
}

.notification--active {
    transform: translateX(0);
}

.notification--success {
    border-left: 4px solid #10b981;
}

.notification--error {
    border-left: 4px solid #ef4444;
}

.notification__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.notification--success .notification__icon {
    color: #10b981;
}

.notification--error .notification__icon {
    color: #ef4444;
}

.notification__content {
    flex: 1;
}

.notification__title {
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.notification__message {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.notification__close {
    color: var(--color-text-muted);
    padding: var(--space-xs);
}

.notification__close:hover {
    color: var(--color-navy);
}

.notification__close svg {
    width: 20px;
    height: 20px;
}

/* ==================== LOADING STATE ==================== */
.loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.loading__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .detail__grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-card {
        position: static;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .section {
        padding: var(--space-3xl) 0;
    }
    
    .header__menu,
    .header__actions .btn {
        display: none;
    }
    
    .header__mobile-toggle {
        display: flex;
    }
    
    .hero__stats {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }
    
    .hero__stat {
        flex: 1 1 40%;
    }
    
    .fleet__grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__brand {
        max-width: none;
    }
    
    .footer__logo {
        justify-content: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .detail__features-grid,
    .detail__specs-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-card__dates {
        grid-template-columns: 1fr;
    }
    
    .notification {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ==================== ADMIN STYLES (if needed on public pages) ==================== */
.admin-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-badge--pending {
    background: #fef3c7;
    color: #92400e;
}

.admin-badge--approved {
    background: #d1fae5;
    color: #065f46;
}

.admin-badge--cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.admin-badge--completed {
    background: #dbeafe;
    color: #1e40af;
}