/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-gold: #FEBF10;
    --secondary-obsidian: #070709;
    --background-dark: #0a0a0c;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --border-gray: #2a2a2a;
    --hover-gray: #1a1a1a;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace
}

body {
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 7, 9, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    padding: 0 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.logo-image:hover {
    filter: brightness(1.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    background: rgba(254, 191, 16, 0.05);
    transition: all 0.3s ease;
}

.phone-number:hover {
    background: rgba(254, 191, 16, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-1px);
}

.phone-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.phone-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    padding-top: 100px;
    position: relative;
    background-image: url('./media/taxivan athens hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Tours Hero Section with specific background */
.tours-hero {
    background-image: url('./media/taxivan athens tours hero image.webp');
}

/* Transfers Hero Section with specific background */
.transfers-hero {
    background-image: url('./media/taxivan athens airports pickup.webp');
}




/* Homepage hero section - increased height by 20% */
.hero:not(.transfers-hero):not(.tours-hero) {
    height: 84vh;
}

.hero-content {
    text-align: left;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
   
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

/* Transfers hero title with text shadow */
.transfers-hero .hero-title {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.3rem;
    color: #eeeeee;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--secondary-obsidian);
}

.btn-primary:hover {
    background-color: #e5a90f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 191, 16, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-obsidian);
    color: var(--text-primary);
    border: 2px solid var(--border-gray);
}

.btn-secondary:hover {
    background-color: var(--hover-gray);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 42, 42, 0.5);
}

/* Hero background overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
background: linear-gradient(
  to bottom,
  rgba(10, 10, 12, 0) 0%,
  rgba(10, 10, 12, 0) 20%,
  rgba(10, 10, 12, 0.3) 60%,
  rgba(10, 10, 12, 0.7) 100%
);    z-index: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        height: 50vh;
        padding-top: 120px;
        text-align: center;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        gap: 1rem;
    }
    
    .nav-right {
        order: -1;
    }
    
    .phone-number {
        padding: 0.4rem 0.8rem;
        border-radius: 4px;
    }
    
    .phone-link {
        font-size: 0.8rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--secondary-obsidian);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--border-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 0.5rem;
    }
    
    .phone-number {
        padding: 0.3rem 0.6rem;
    }
    
    .phone-link {
        font-size: 0.75rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .hero {
        height: 50vh;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}

/* Statistics Section */
.stats {
    background-color: #121416;
    padding: 5rem 0;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.ride-specs {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 600;
    color: #FEBF10;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.ride-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .ride-specs {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 3rem 0;
    }
    
    .stats-container {
        gap: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 0.8rem;
    }
    
    .ride-specs {
        font-size: 2rem;
    }
    
    .ride-label {
        font-size: 0.9rem;
    }
}

/* Driver Section */
.driver {
    background-color: var(--secondary-obsidian);
    padding: 5rem 0;
}

.driver-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
    align-items: center;
}

.driver-content {
    padding: 2rem;
}

.driver-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.driver-headline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--text-primary);
    flex: 1;
}

.driver-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(254, 191, 16, 0.3);
}

.driver-name {
    color: var(--primary-gold);
}

.driver-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.driver-text:last-child {
    margin-bottom: 0;
}

.driver-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background-image: url('./media/the ride home page.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
}

.driver-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: var(--primary-gold);
    color: var(--secondary-obsidian);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 191, 16, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.driver-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.driver-btn:hover {
    background-color: #e5a90f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 191, 16, 0.4);
}

/* Driver Section Responsive */
@media (max-width: 968px) {
    .driver-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .driver-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .driver-headline {
        font-size: 2rem;
    }
    
    .driver-profile {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .driver {
        padding: 3rem 0;
    }
    
    .driver-content {
        padding: 1rem;
    }
    
    .driver-headline {
        font-size: 1.8rem;
    }
    
    .driver-profile {
        width: 80px;
        height: 80px;
    }
    
    .driver-text {
        font-size: 1rem;
    }
    
    .driver-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Airport Transfers Section */
.transfers {
    padding: 5rem 0;
}

.transfers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.transfers-content {
    background-color: var(--primary-gold);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transfers-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--secondary-obsidian);
}

.transfers-text {
    font-size: 1.1rem;
    color: var(--secondary-obsidian);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.transfers-btn {
    background-color: var(--secondary-obsidian);
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(7, 7, 9, 0.3);
}

.transfers-btn:hover {
    background-color: rgba(7, 7, 9, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 7, 9, 0.4);
}

.transfers-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.transfers-image {
    background-image: url('./media/taxivan athens airports pickup.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

/* Transfers Section Responsive */
@media (max-width: 968px) {
    .transfers-container {
        grid-template-columns: 1fr;
    }
    
    .transfers-content {
        padding: 2.5rem 2rem;
    }
    
    .transfers-title {
        font-size: 2rem;
    }
    
    .transfers-image {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 480px) {
    .transfers {
        padding: 3rem 0;
    }
    
    .transfers-content {
        padding: 2rem 1.5rem;
    }
    
    .transfers-title {
        font-size: 1.8rem;
    }
    
    .transfers-text {
        font-size: 1rem;
    }
    
    .transfers-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

/* Tours Section */
.tours {
    background-color: var(--secondary-obsidian);
    padding: 5rem 0;
}

.tours-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.tours-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tours-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
}

.tour-card {
    background: #121416;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-gray);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tour-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: var(--secondary-obsidian);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-content {
    padding: 1.5rem;
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.tour-excerpt {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.tour-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.tour-duration,
.tour-capacity {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tour-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.tours-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 0 2rem;
}

.tours-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tours-btn:hover {
    background: var(--primary-gold);
    color: var(--secondary-obsidian);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 191, 16, 0.3);
}

.tours-arrow {
    transition: transform 0.3s ease;
}

.tours-btn:hover .tours-arrow {
    transform: translateX(4px);
}

/* Tours Section Responsive */
@media (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .tours-title {
        font-size: 2.5rem;
    }
    
    .tours-description {
        font-size: 1.1rem;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .tour-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .tours {
        padding: 3rem 0;
    }
    
    .tours-header {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .tours-title {
        font-size: 2rem;
    }
    
    .tours-description {
        font-size: 1rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .tour-content {
        padding: 1.2rem;
    }
    
    .tour-title {
        font-size: 1.2rem;
    }
    
    .tour-excerpt {
        font-size: 0.9rem;
    }
    
    .tours-cta {
        padding: 0 1rem;
        margin-top: 2.5rem;
    }
    
    .tours-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-obsidian);
    border-top: 1px solid var(--border-gray);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-logo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    margin-bottom: 0;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 250px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    justify-content: flex-start;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact .footer-section-title {
    text-align: left;
}

.footer-contact .footer-section-title {
    text-align: right;
}

.footer-contact .footer-section-title {
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-contact {
        align-items: flex-start;
    }
    
    .footer-links {
        gap: 1.5rem;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-links {
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .footer-logo-header {
        gap: 0.75rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-description {
        max-width: none;
    }
}

/* Vehicle Info Section */
.vehicle-info {
    background-color: var(--secondary-obsidian);
    padding: 5rem 0;
}

.vehicle-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.vehicle-description {
    padding-right: 2rem;
}

.vehicle-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.vehicle-text:last-child {
    margin-bottom: 0;
}

.vehicle-amenities-section {
    display: flex;
    flex-direction: column;
}

.amenities-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: left;
}

.vehicle-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #121416;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.amenity-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.amenity-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Vehicle Info Responsive */
@media (max-width: 968px) {
    .vehicle-info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .vehicle-description {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .vehicle-info {
        padding: 3rem 0;
    }
    
    .vehicle-info-content {
        padding: 0 1rem;
    }
    
    .vehicle-amenities {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amenity-item {
        padding: 1.2rem;
    }
    
    .amenity-text {
        font-size: 0.9rem;
    }
}

/* Gallery Section */
.gallery {
    background-color: var(--secondary-obsidian);
    padding: 5rem 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-gray);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(254, 191, 16, 0.2);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Responsive */
@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery-container {
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .gallery-image {
        height: 250px;
    }
}

/* ===== TRANSFERS PRICING SECTION ===== */

.transfers-pricing-section {
    background-color: var(--secondary-obsidian);
    padding: 5rem 15rem;
    color: white;
}

.transfers-pricing-section .container {
    width: 100%;
    margin: 0 auto;
}

.pricing-main-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Transfer Pricing */
.pricing-left-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pricing-note-text {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}

.service-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.service-paragraph {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-third-row {
    padding: 2rem;
    background-color:#121416;
    border-radius:12px;
}

/* Booking Form Styles */
.booking-form {
    padding: 1rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.transfer-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: rem;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin:0.3em;
}

.form-input {
    background: #22252A;
    border: none;
    border-radius: 6px;
    padding: 1rem 0.75rem;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-input::placeholder {
    color: #999;
}

.form-textarea {
    background: #22252A;
    border: none;
    border-radius: 6px;
    padding: 1rem 0.75rem;
    color: white;
    font-size: 1rem;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-textarea::placeholder {
    color: #999;
}

.form-submit-btn {
    background: var(--primary-gold);
    color: var(--secondary-obsidian);
    border: none;
    border-radius: 6px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 40%;
}

.form-submit-btn:hover {
    background: #e6a914;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 191, 16, 0.3);
}

/* Right Column Padding */
.pricing-right-column {
    background-color:#121416;
    padding:2rem;
    border-radius:12px;
}

.pricing-first-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pricing-table-column {
    display: flex;
    flex-direction: column;
}

.pricing-table-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.airport-pricing-table {
    overflow: hidden;
    background-color:#121416;
    border-radius:12px;
}

.pricing-header {
    background-color: var(--primary-gold);
    padding: 1rem 1.5rem;
    text-align: center;
}

.header-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-obsidian);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid #2a2d33;
}

.pricing-row:last-child {
    border-bottom: none;
}

.destination {
    font-size: 0.85rem;
    font-weight: 400;
    color: #ccc;
}

.price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.0rem;
    font-weight: 600;
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    
    .transfers-pricing-section {
        padding: 3rem 2rem;
    }
    
    .transfers-pricing-section .container {
        width: 100%;
    }
    
    .pricing-main-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-first-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-left-column {
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .transfers-pricing-section .container {
        width: 100%;
        padding: 0;
    }
    
    .pricing-left-column {
        padding: 0;
    }
    
    .pricing-right-column {
        padding: 0;
    }
    
    .transfers-pricing-section {
        padding: 3rem 2rem;
    }
    
    .pricing-table-title {
        font-size: 1.5rem;
    }
    
    .pricing-row {
        padding: 0.75rem 1rem;
    }
    
    .destination,
    .price {
        font-size: 0.9rem;
    }

    .pricing-third-row {
        padding: 1.0rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 0.9rem;
        padding: 0.8rem 0.6rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-submit-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
}
}

/* ===== CONFIRMATION PAGE STYLES ===== */
.confirmation-section {
    background-color: var(--secondary-obsidian);
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-container {
    max-width: 600px;
    text-align: center;
    color: white;
}

.success-message,
.error-message {
    background: #121416;
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.success-message {
    border-left: 4px solid var(--primary-gold);
}

.error-message {
    border-left: 4px solid #e74c3c;
}

.confirmation-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.error-message h1 {
    color: #e74c3c;
}

.confirmation-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
}

.back-button,
.home-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--secondary-obsidian);
    padding: 1rem 2rem;
    margin: 0.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover,
.home-button:hover {
    background: #e6a914;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 191, 16, 0.3);
}

@media (max-width: 480px) {
    .confirmation-section {
        padding: 6rem 1rem 2rem;
    }
    
    .confirmation-container {
        max-width: 100%;
    }
    
    .success-message,
    .error-message {
        padding: 2rem 1.5rem;
    }
    
    .confirmation-container h1 {
        font-size: 2rem;
    }
    
    .confirmation-container p {
        font-size: 1rem;
    }
    
    .back-button,
    .home-button {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}
