/* ================================
   Kodaklimo - Main Stylesheet
   ================================ */

/* CSS Variables */
:root {
    --gold: #d4a855;
    --gold-dark: #c49a48;
    --gold-light: rgba(212, 168, 85, 0.1);
    --black: #0f0f0f;
    --dark: #1a1a1a;
    --dark-gray: #2a2a2a;
    --gray: #6b7280;
    --light-gray: #9ca3af;
    --white: #ffffff;
    --off-white: #f9fafb;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
}

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

.btn-book {
    background: rgba(212, 168, 85, 0.2);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 85, 0.5);
}

.btn-book:hover {
    background: rgba(212, 168, 85, 0.3);
    box-shadow: 0 0 20px rgba(212, 168, 85, 0.2);
}

/* BÜYÜK CTA BUTONLARI */
.btn-cta-large {
    background: var(--dark);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 6px;
}

.btn-cta-large:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-large svg {
    width: 22px;
    height: 22px;
}

.btn-cta-outline-large {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 6px;
}

.btn-cta-outline-large:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-cta-outline-large svg {
    width: 22px;
    height: 22px;
}

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

.btn-dark:hover {
    background: var(--black);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 1px solid #d1d5db;
}

.btn-outline-dark:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

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

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

.btn-primary-large {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary-large:hover {
    background: var(--gold-dark);
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    padding: 1rem;
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--gold-dark);
}

/* ================================
   Navbar
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 6px;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-link:first-child,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-icon {
    width: 16px;
    height: 16px;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ================================
   Hero Section with Background Image
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--black), var(--dark), var(--black));
}

/* Hero Background Image */
.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, rgba(212, 168, 85, 0.3) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 3;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.hero-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.title-gold {
    display: block;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.title-white {
    display: block;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 1);
}

/* CTA Bar - BÜYÜK VE BELIRGIN */
.cta-bar {
    position: relative;
    background: linear-gradient(to right, rgba(120, 85, 40, 0.6), rgba(150, 110, 50, 0.7), rgba(120, 85, 40, 0.6));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 168, 85, 0.3);
    border-bottom: 1px solid rgba(212, 168, 85, 0.3);
    z-index: 10;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
}

.cta-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Safety Banner */
.safety-banner {
    position: relative;
    background: linear-gradient(to right, var(--dark), var(--dark-gray), var(--dark));
    z-index: 10;
}

.safety-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 0;
}

.safety-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.safety-subtitle {
    color: var(--gray);
    margin-top: 0.25rem;
}

/* ================================
   Section Styles
   ================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-title .title-gold {
    font-size: inherit;
    display: inline;
    font-style: italic;
}

.section-title .title-dark {
    font-size: inherit;
    display: inline;
    color: var(--dark);
    font-weight: 700;
    font-style: normal;
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-description {
    max-width: 800px;
    margin: 1.5rem auto 0;
    color: var(--gray);
    line-height: 1.8;
}

/* ================================
   Fleet Section
   ================================ */
.fleet {
    padding: 6rem 0;
    background: var(--white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fleet-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(to bottom, #f9fafb, var(--white));
}

.fleet-image img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    transition: transform 0.7s ease;
}

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

.fleet-info {
    padding: 1.5rem;
    text-align: center;
}

.fleet-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.fleet-passengers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.passengers-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.passengers-label {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fleet-description {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fleet-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fleet-buttons .btn {
    width: 100%;
    padding: 0.875rem;
}

/* ================================
   Services Section
   ================================ */
.services {
    padding: 6rem 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.service-info {
    padding: 1.5rem;
    text-align: center;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-buttons .btn {
    width: 100%;
    padding: 0.875rem;
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials {
    padding: 6rem 0;
    background: var(--off-white);
}

.testimonials-slider {
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: rgba(212, 168, 85, 0.3);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

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

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ================================
   Features Section
   ================================ */
.features {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--off-white), var(--white));
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-tagline {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.feature-link:hover {
    color: var(--gold);
}

.feature-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.feature-link:hover svg {
    transform: translateX(4px);
}

/* ================================
   Footer
   ================================ */
.footer-contact {
    background: linear-gradient(to right, #b8860b, var(--gold), #b8860b);
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
}

.contact-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.phone-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.phone-number:hover {
    color: #f3f4f6;
}

.btn-footer-book {
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-footer-book:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.footer-main {
    background: var(--black);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 64px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-copyright {
    background: var(--black);
    border-top: 1px solid #1a1a1a;
    padding: 1.5rem 0;
}

.footer-copyright p {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
}

.nicemill-link {
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.nicemill-link:hover {
    color: var(--white);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 168, 85, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

/* ================================
   Page Hero (for inner pages)
   ================================ */
.page-hero, .book-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
}

.page-hero .hero-bg, .book-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--black), var(--dark));
}

.page-hero .hero-image, .book-hero .hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero .hero-image img, .book-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay, .book-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-hero .container, .book-hero .container {
    position: relative;
    z-index: 10;
}

.page-title, .book-title {
    position: relative;
    margin-bottom: 1rem;
}

.page-subtitle, .book-subtitle {
    position: relative;
    color: var(--gray);
    font-size: 1.125rem;
}

/* ================================
   Book Now Page - Moovs Widget
   ================================ */
.booking-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.booking-info h2 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.booking-features {
    margin-bottom: 2rem;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray);
}

.booking-features svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-box {
    background: var(--dark);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-box h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
}

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

.booking-widget-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.booking-widget-container h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.widget-subtitle {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.booking-iframe-container {
    width: 100%;
    min-height: 700px;
    border-radius: 12px;
    overflow: hidden;
    background: #f9fafb;
}

.booking-iframe-container iframe {
    width: 100%;
    min-height: 700px;
    border: none;
}

.moovs-widget {
    min-height: 400px;
    border: 2px dashed #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-placeholder {
    text-align: center;
    padding: 2rem;
}

.widget-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.widget-loader p {
    color: var(--gray);
}

.booking-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #92400e;
}

.booking-note a {
    color: var(--gold-dark);
    font-weight: 600;
}

/* ================================
   Locations Page
   ================================ */
.locations-section {
    padding: 4rem 0;
}

.locations-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.locations-intro h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.locations-intro p {
    color: var(--gray);
    line-height: 1.8;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.location-card h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-light);
}

.location-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    border-bottom: 1px solid #f3f4f6;
}

.location-list li:last-child {
    border-bottom: none;
}

.locations-cta {
    text-align: center;
    background: var(--dark);
    padding: 3rem;
    border-radius: 12px;
}

.locations-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.locations-cta p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* ================================
   About Page
   ================================ */
.about-section {
    padding: 4rem 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-intro p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-values {
    margin-bottom: 4rem;
}

.about-values h2 {
    font-size: 2rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.value-item h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ================================
   Vehicle & Service Detail
   ================================ */
.vehicle-detail, .service-detail {
    padding: 4rem 0;
    background: var(--off-white);
}

.vehicle-content, .service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vehicle-image-large, .service-image-large {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.vehicle-image-large img, .service-image-large img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.vehicle-info-detail h2, .service-info-detail h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.vehicle-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.meta-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.vehicle-description-full, .service-description-full {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-tagline-detail {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Fleet & Services Page */
.fleet-page, .services-page {
    padding: 4rem 0;
}

.fleet-page.compact {
    padding: 2rem 0;
}

.other-fleet {
    padding: 2rem 0 0;
}

.other-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .vehicle-content, .service-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cta-container, .safety-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-text {
        font-size: 1.25rem;
    }

    .btn-cta-large,
    .btn-cta-outline-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .fleet-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title-gold, .title-white {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}
