﻿/*
====================================================
 TAXIVAN CSS PAGE SECTIONS INDEX
====================================================
 GLOBAL STYLES:           Line 20
 TOUR TEMPLATE:           Line 66
 HEADER & NAV:            Line 396
 FOOTER (GLOBAL):         Line 853
 INDEX PAGE:              Line 1032
 TRANSFERS PAGE:          Line 1301
 TOURS PAGE:              Line 1746
 THE RIDE PAGE:           Line 1992
 GALLERY PAGE:            Line 2108
 CONTACT PAGE:            Line 2203
 CONFIRMATION PAGE:       Line 2533
====================================================
*/

/* ============================= */
/*         GLOBAL STYLES         */
/* ============================= */
/* 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;
    --background-secondary: #121416;
    --background-tertiary: #22252A;
    --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-tertiary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}




/* ============================= */
.page-layout {
    max-width:2560px;
     margin: 0 auto; 
}


/* ============================= */
/* TOUR HERO SECTION (placeholder) */
/* ============================= */



/* ============================= */
/* TOUR DESCRIPTION SECTION      */
/* ============================= */
.tour-description-section {
    padding: 3rem 2rem;
    background: var(--background-dark);
}

@media screen and (max-width: 1024px) {
    .tour-description-section {
        padding: 4rem 4rem;
    }  
}

@media screen and (max-width: 450px) {
    .tour-description-section {
        padding: 4rem 2rem;
    }  
}

.tour-description-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
}

.tour-description-col {
    flex: 1 1 300px;
    min-width: 280px;
}

.tour-description-col.left {
    max-width: 50%;
}

.tour-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.tour-short-description,
.tour-long-description {
    font-size: 1.1rem;
}

.tour-short-description {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.tour-long-description {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .tour-description-row {
        flex-direction: column;
        gap: 2rem;
    }

    .tour-description-col.left,
    .tour-description-col.right {
        max-width: 100%;
    }
}


/* ============================= */
/* TOUR HIGHLIGHTS SECTION       */
/* ============================= */
.tour-highlights-main-col {
    flex: 2 1 380px;
    min-width: 300px;
}

.tour-highlights-row,
.tour-highlights-cols {
    display: flex;
    gap: 2rem;
    padding-top:2rem;
}

.tour-highlights-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
     margin-bottom: 0.3rem;
     padding-top:2rem;
}

.tour-highlights-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
}

.tour-highlights-list li {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.golden-checkbox {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.7em;
    position: relative;
    font-size: 1.2em;
}

.golden-checkbox::after {
    content: '\2713';
    color: #FEBF10;
    font-size: 1.2em;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 700px) {
    .tour-highlights-row {
        flex-direction: column;
        gap: 1rem;
    }
}




/* ============================= */
/* TOUR GALLERY SECTION          */
/* ============================= */
.tour-gallery-section {
    padding: 3rem 2rem;
    background: var(--background-secondary);
}

.tour-gallery-row {
    display: flex;
    gap: 5px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.tour-gallery-col {
    flex: 1 1 250px;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-gallery-img {
    max-width: 95%;
    object-fit: cover;
    border-radius: 10px;
    background: #22252A;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(254,191,16,0.18);
}

@media (max-width: 1024px) {
    .tour-gallery-row {
        flex-direction: column;
        gap: 5.5rem;
        padding-bottom:3rem;
    }
}

@media (max-width: 450px) {
.tour-gallery-section {
    max-width:100%;
    padding: 3rem 0rem; }
.tour-gallery-row {
        max-width: 100%;
        gap: 2rem; 
        padding-bottom:1.5rem;
    }
}


/* ============================= */
/* TOUR INFO & BOOKING SECTION   */
/* ============================= */
.tour-info-booking-section {
    padding: 3rem 2rem 2rem;
    background: var(--background-dark);
}

.tour-info-booking-row {
    display: flex;
    gap: 2.0rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
   
    
}

.tour-info-main-col,
.tour-booking-form {
    background: var(--background-secondary);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    margin-bottom: 2rem;
}

.tour-info-main-col {
    flex: 0 0 35%;
    padding: 2rem;
}

.tour-booking-form {
    flex: 0 0 60%;
    padding: 0.5rem;
  
}



.tour-info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
}

.tour-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}

.tour-info-list li {
    font-size: 1.08rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tour-info-note {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 0.5rem;
    transition: transform 0.2s;
}

.whatsapp-link:hover {
    transform: scale(1.08);
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
    display: block;
}

.booking-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    display: none;
}

.booking-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.booking-message.show {
    display: block;
}

@media (max-width: 1024px) {

    .tour-info-booking-row {
        flex-wrap: wrap;
        max-width:100%;
    }

    .tour-info-main-col {
        flex: 0 0 90%;
        padding: 5rem;
         margin-left: auto;
        margin-right: auto;
    }
   
    .tour-booking-form {
        padding: 1.5rem 1rem;
        margin-left: auto;
        margin-right: auto;
      flex: 0 0 90%;
    } 
}


@media (max-width: 450px) {

    .tour-info-booking-section {
        padding: 3rem 0rem 2rem;
    }
     .tour-info-main-col {
        padding: 3rem;  
        flex: 0 0 100%; 
    }
    .tour-booking-form {  
      flex: 0 0 100%;
       padding: 1.5rem 0.5rem;
    } 
}


/*         HEADER & NAV          */
/* ============================= */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 2560px;
    background: rgba(7, 7, 9, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

.page-layout .navbar {
    width: 100%;
    max-width: 2560px;
    margin-left: auto;
    margin-right: auto;
}

.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%;
}

@media (min-width: 1920px) {
    .nav-menu {
        gap: 3rem;
    }

    .nav-link {
        font-size: 1.08rem;
    }

    .phone-link {
        font-size: 1rem;
    }
}


/*
/* 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: 90vh;
    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;
}

@media (min-width: 2560px) {
    .hero {
        height: 78vh;
    }
}


/* 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-content {
    text-align: left;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

@media (min-width: 769px) {
    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 50vw;
    }
}

.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.5;
    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);
    text-decoration: none;
}

.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);
    text-decoration: none;
}

.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: 1024px) {
    .hero {
        height: 600px;
        padding-top: 120px;
        text-align: center;
        background-attachment: scroll;
    }

    .contact-hero {
        height: 50vh;
        min-height: 220px;
        padding-top: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .gallery-hero {
        height: 50vh;
        min-height: 220px;
        padding-top: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.index .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    body.index .hero-buttons {
        justify-content: center;
    }

    body.index .hero-buttons .btn {
        width: auto;
        min-width: 120px;
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    .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);
        border-bottom: 4px solid var(--primary-gold);
    }

    .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: 55vh;
        padding-top: 100px;
    }

    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}

/*         FOOTER (GLOBAL)       */
/* ============================= */
/* Footer */
.footer {
    background-color: var(--background-secondary);
    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;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
    width:8%;
}

.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;
    }
}
/* Statistics Section */
.stats {
    background-color: var(--background-secondary);
    padding: 3rem 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;
    }
}

/* ============================= */
/* ===== NEST HUB HERO SECTION OVERRIDES (1024x600) ===== */
@media (min-width:850px) and (max-width: 1024px) {
    body.index .hero {
        height: 56vh;
        min-height: 520px;
        padding-top: 45vh !important;
        padding-bottom: 160px !important;
    }
    body.index .hero-content {
        max-width: 90vw;
       
    }
    body.index .hero-title {
        font-size: 2.1rem;
    }
    body.index .hero-description {
        font-size: 1.1rem;
    }
    body.index .hero-buttons .btn {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        width: 90%;
        min-width: 220px;
        max-width: 280px;
    }
}
/* ===== END NEST HUB HERO SECTION OVERRIDES ===== */
body.index .hero-buttons {
    justify-content: center;
}


/* ============================= */
/*      TRANSFERS PAGE           */
/* ============================= */
/* Airport Transfers Section */
.transfers {
    padding: 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;
    }
}

/* ============================= */
/* ===== TRANSFERS PRICING SECTION ===== */

.transfers-pricing-section {
    background-color: var(--secondary-obsidian);
    padding: 5rem 12rem;
    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: var(--background-secondary);
    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: var(--background-secondary);
    padding:0.9rem;
    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: var(--background-secondary);
    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;
    }
}


/* ============================= */
/*         TOURS PAGE            */
/* ============================= */
/* 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: var(--background-secondary);
    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;
    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;
    }
}



/* ============================= */
/*      THE RIDE PAGE            */
/* ============================= */
/* 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: var(--background-secondary);
    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 PAGE (if any)    */
/* ============================= */
/* 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 Hero Section with specific background */
.hero.gallery-hero {
    background-image: url('./media/gallery/Dimitris with friends from India.jpg') !important;
}
/*

/* 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;
    }
}

/* ============================= */
/*      CONTACT PAGE STYLES      */
/* ============================= */
      

  /* Contact Hero Specific Styles */
        .contact-hero {
            background-image: url('./media/Dimitris and group with yellow shirts.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 60vh;
        }

        /* Contact Section Styles */
        .contact-section {
            padding: 150px 0;
            background-color: #070709;
            margin-left:auto;
            margin-right:auto;
    
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 100px 0;
            }
        }

        .contact-container {
            margin-left: auto;
            margin-right: auto;
            padding: 0 2rem;
            max-width:80%;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Contact Info Styles */
        .contact-info {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            background-color: var(--background-secondary);
        }

        .contact-info-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .contact-info-description {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .contact-details {
            margin-bottom: 2.5rem;
           
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

        .contact-icon-wrapper {
            background: #22252A;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .contact-detail-icon {
            color: #E9AE1C;
        }

        .contact-detail-content h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .contact-detail-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-detail-link:hover {
            color: #FEBF10;
        }

        .contact-detail-text {
            color: #fff;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .contact-detail-note {
            color: #888;
            font-size: 0.9rem;
        }

        /* Social Links */
        .social-links {
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .social-title {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: none;
            color: #FEBF10;
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1.3rem;
        }

        .social-link svg {
            color: #FEBF10;
            fill: #FEBF10;
            transition: color 0.3s, fill 0.3s;
        }

        .social-link:hover {
            background: none;
            color: #fff;
            transform: translateY(-2px);
        }

        .social-link:hover svg {
            color: #fff;
            fill: #fff;
        }

        /* Contact Form Styles */
        .contact-form-wrapper {
            background: white;
            padding: 2.0rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            background-color: var(--background-secondary);
        }

        .contact-form-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .contact-form-description {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: none;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
            background: #22252A;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #FEBF10;
            background: #22252A;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit-btn {
            width: 100%;
            padding: 14px 24px;
            background: linear-gradient(135deg, #FEBF10, #e6ac0e);
            color: #333;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .form-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(254, 191, 16, 0.3);
        }

        .form-submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .btn-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        /* Contact Message Styles */
        .contact-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .contact-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .contact-message.show {
            display: block !important;
            animation: slideDown 0.3s ease;
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 100px;
                justify-items: center;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-hero {
                min-height: 50vh;
                background-attachment: scroll;
            }


            .contact-info,
            .contact-form-wrapper {
                padding: 1.2rem;
                margin-left: auto;
                margin-right: auto;
            }

            .contact-detail {
                margin-bottom: 1.5rem;
            }

            .contact-container {

                max-width:100%;
                padding:0;
        
            }
        }



/* ============================= */
/*   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 {
    background: var(--background-secondary);
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    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%;
    }
}


/* ============================= */
