:root {
    --bg-color: #0a0a0a;
    --bg-card: #111111;
    --accent-color: #c9a84c;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --glass-bg: rgba(10, 10, 10, 0.85);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 5%;
    background: var(--glass-bg);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.logo {
    font-size: 1.8rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-phone {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 700;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero.jpg') center/cover no-repeat;
    z-index: -1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(10,10,10,0.95));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background-color: #b09140;
    transform: translateY(-5px);
}

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

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #000;
    transform: translateY(-5px);
}

/* Services Strip */
.section-padding {
    padding: 8rem 5%;
}

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

.service-card {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.8s ease;
}

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    z-index: 0;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 1;
}

.service-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Full Width Banner */
.full-banner {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/street-night.jpg') center/cover no-repeat;
    z-index: -1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* How It Works */
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 700;
    line-height: 1;
}

.step-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-info p {
    color: var(--text-secondary);
}

.how-image {
    height: 600px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    overflow: hidden;
}

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

/* Airport Transfers Section */
#airports {
    background-color: #111;
}

.airports-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.airport-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.badge {
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.badge:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.price-note {
    font-style: italic;
    color: var(--text-secondary);
}

/* Testimonials */
#testimonials {
    position: relative;
    background: url('images/interior.jpg') center/cover no-repeat fixed;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.testimonials-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent-color);
}

/* Booking CTA */
#booking-cta {
    position: relative;
    background: url('images/booking-cta.jpg') center/cover no-repeat;
    text-align: center;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
}

.booking-content {
    position: relative;
    z-index: 1;
}

.booking-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.booking-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

/* About / Find Us */
#about {
    position: relative;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/skyline.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border: 1px solid var(--accent-color);
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-caption {
    margin-top: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    padding: 5rem 5% 2rem;
    background-color: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-info p {
    color: var(--text-secondary);
}

.footer-links h4, .footer-contact h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-contact .phone-large {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .how-grid, .about-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-group {
        flex-direction: column;
    }
}
