/* ==========================================================================
   CSS Stylesheet - Pantelis Car & Moto Rental
   Theme: Light Aegean Sand & Ocean Blue
   ========================================================================== */

:root {
    --color-primary: #1a365d;      /* Deep Aegean Navy */
    --color-secondary: #2b78e4;    /* Vivid Sky Blue */
    --color-accent: #e49e2b;       /* Warm Cycladic Sun Gold */
    --color-accent-hover: #c9841b; 
    --color-bg: #fcfbf9;           /* Pure Sand White */
    --color-bg-alt: #f3eff9;       /* Light Muted Grey/Sand */
    --color-card-bg: #ffffff;
    --color-text: #2c3e50;         /* Dark Slate */
    --color-text-muted: #627282;   /* Medium Slate Gray */
    --color-border: #e8e3d9;       /* Soft Border */
    --color-success: #10b981;
    --color-error: #ef4444;
    
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --shadow-sm: 0 4px 6px -1px rgba(26, 54, 93, 0.05), 0 2px 4px -1px rgba(26, 54, 93, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(26, 54, 93, 0.08), 0 4px 6px -2px rgba(26, 54, 93, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(26, 54, 93, 0.12), 0 10px 10px -5px rgba(26, 54, 93, 0.06);
    --shadow-xl: 0 25px 50px -12px rgba(26, 54, 93, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --container-max: 1200px;
    --header-height: 80px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */

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

h1 {
    font-size: 2.75rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-title {
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    margin: 0 auto;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-bounce);
    padding: 0.875rem 1.75rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: white;
    box-shadow: 0 4px 14px rgba(43, 120, 228, 0.3);
}

.btn-primary:hover {
    background-color: #1c61be;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 120, 228, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 14px rgba(228, 158, 43, 0.3);
}

.btn-secondary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 158, 43, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    height: var(--header-height);
    background-color: rgba(252, 251, 249, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
    background-color: rgba(252, 251, 249, 0.95);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-bounce);
}

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

.footer-logo-image {
    background-color: white;
    padding: 6px;
    border-radius: var(--radius-md);
    height: 70px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(43, 120, 228, 0.1);
    color: var(--color-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.1);
    background-color: var(--color-secondary);
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    margin-top: 0.15rem;
}

/* Nav Links */
.main-nav ul {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

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

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

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-text-muted);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    background-color: rgba(252, 251, 249, 0.5);
}

.lang-toggle-btn:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    background-color: rgba(43, 120, 228, 0.05);
}

.lang-toggle-btn svg {
    width: 14px;
    height: 14px;
}

.mobile-menu-toggle {
    display: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 54, 93, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-xl);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active .mobile-nav-content {
    right: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    color: var(--color-primary);
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
}

.mobile-link:hover {
    color: var(--color-secondary);
}

.mobile-contact-info {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.mobile-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-contact-info svg {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
}

/* ==========================================================================
   Hero & Parallax Section
   ========================================================================== */

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Taller to allow movement room */
    background-image: url('https://images.unsplash.com/photo-1542856391-010fb87dcfed?auto=format&fit=crop&w=1920&q=80'); /* Beautiful coastal road */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: translateY(0);
    will-change: transform;
}

/* If background fixed is supported/preferred, standard fallback */
@media (min-width: 1024px) {
    .parallax-bg {
        background-attachment: fixed;
        height: 100%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(252, 251, 249, 0.4) 0%, rgba(252, 251, 249, 0.85) 90%, var(--color-bg) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin-top: -40px;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(43, 120, 228, 0.1);
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.badge-accent svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1.4s ease-out 0.6s both;
}

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

/* ==========================================================================
   Horizontal Booking Bar
   ========================================================================== */

.booking-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -80px; /* Overlap the hero section */
    margin-bottom: 5rem;
}

.booking-bar-wrapper {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
}

.booking-bar-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-bar-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-full);
}

.horizontal-booking-form {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 1rem;
    flex-grow: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.form-group label svg {
    width: 14px;
    height: 14px;
    color: var(--color-secondary);
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-weight: 500;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    min-height: 48px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a365d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-secondary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(43, 120, 228, 0.1);
}

.btn-search {
    min-height: 48px;
    white-space: nowrap;
    padding: 0.8rem 2rem;
}

/* ==========================================================================
   Services & Features
   ========================================================================== */

.services-section {
    padding: 6rem 0;
    background-color: rgba(243, 239, 249, 0.4);
}

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

.service-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-secondary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43, 120, 228, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(43, 120, 228, 0.08);
    color: var(--color-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    background-color: var(--color-secondary);
    color: white;
    transform: scale(1.1);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

/* ==========================================================================
   Fleet Section
   ========================================================================== */

.fleet-section {
    padding: 6rem 0;
}

.fleet-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    background-color: rgba(43, 120, 228, 0.03);
}

.filter-btn.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(26, 54, 93, 0.15);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    transition: var(--transition-smooth);
}

.fleet-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43, 120, 228, 0.1);
}

.fleet-img-container {
    height: 200px;
    background-color: #faf8f5;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: var(--transition-bounce);
}

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

.vehicle-class {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(26, 54, 93, 0.85);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.fleet-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-name {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vehicle-specs svg {
    width: 15px;
    height: 15px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.fleet-footer {
    margin-top: auto;
}

/* Hidden elements during filter */
.fleet-card.hide {
    display: none;
}

/* ==========================================================================
   Reservation Detailed Form Modal
   ========================================================================== */

.reservation-modal-overlay,
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 54, 93, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 1.5rem;
}

.reservation-modal-overlay.active,
.success-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.reservation-modal {
    background-color: var(--color-card-bg);
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: var(--transition-bounce);
}

.reservation-modal-overlay.active .reservation-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.03);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    color: var(--color-primary);
    background-color: rgba(0, 0, 0, 0.07);
}

.modal-header {
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.modal-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.modal-body-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    overflow-y: auto;
    flex-grow: 1;
}

/* Booking Summary Column */
.booking-summary-panel {
    background-color: #faf9f6;
    border-right: 1px solid var(--color-border);
    padding: 2rem;
}

.booking-summary-panel h3 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-border);
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-item label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.summary-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

.summary-vehicle-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(43, 120, 228, 0.06);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(43, 120, 228, 0.1);
    margin-top: 0.25rem;
}

.summary-vehicle-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
}

.summary-vehicle-badge strong {
    font-size: 0.95rem;
    color: var(--color-primary);
}

.summary-item.text-highlight span {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

/* Customer Info Column */
.customer-info-panel {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.customer-info-panel h3 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.form-group-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.modal-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Success Modal Card */
.success-card {
    background-color: var(--color-card-bg);
    max-width: 480px;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: var(--transition-bounce);
}

.success-modal-overlay.active .success-card {
    transform: scale(1);
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 36px;
    height: 36px;
}

.success-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.success-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.success-details-preview {
    background-color: #faf9f6;
    border: 1px solid var(--color-border);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    text-align: left;
    margin-bottom: 2rem;
}

.success-details-preview p {
    margin-bottom: 0.35rem;
}

.success-details-preview p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   About & Map Section
   ========================================================================== */

.about-section {
    padding: 6rem 0;
    border-top: 1px solid var(--color-border);
}

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

.about-info-col .lead-text {
    font-size: 1.15rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-info-col .body-text {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.manager-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #faf9f6;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    max-width: 320px;
}

.manager-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: rgba(43, 120, 228, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.manager-details h4 {
    font-size: 1rem;
    font-weight: 700;
}

.manager-details p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Map Elements */
.about-map-col .map-container-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    background-color: #eee;
}

.leaflet-map-element {
    height: 380px;
    width: 100%;
    z-index: 10;
}

.map-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 100;
    max-width: 260px;
}

.map-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.map-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.map-card p:last-child {
    margin-bottom: 0;
}

.map-card svg {
    width: 13px;
    height: 13px;
    color: var(--color-secondary);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.site-footer {
    background-color: #111e30; /* Very dark Aegean blue */
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 5rem 0 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 4rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

/* Brand column */
.footer-logo .brand-name {
    color: white;
}

.footer-logo .brand-sub {
    color: rgba(255, 255, 255, 0.4);
}

.footer-logo .logo-icon {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.footer-desc {
    font-size: 0.9rem;
    margin: 1.25rem 0 1.75rem;
    line-height: 1.6;
}

.payment-badges {
    display: flex;
    gap: 0.75rem;
}

.payment-badges span {
    font-size: 0.7rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-badges svg {
    width: 12px;
    height: 12px;
    color: var(--color-secondary);
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-links li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.contact-icon {
    color: var(--color-secondary);
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-links div {
    display: flex;
    flex-direction: column;
}

.contact-links div span:first-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
}

.contact-links div a,
.contact-links div span:last-child {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 0.15rem;
}

.contact-links div a:hover {
    color: var(--color-secondary);
}

/* Links List */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0c1421;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   Bilingual System (Language Toggle Class Rules)
   ========================================================================== */

body.lang-el .lang-en {
    display: none !important;
}

body.lang-en .lang-el {
    display: none !important;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.25rem;
    }
    
    .hero-section {
        height: auto;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 6rem;
    }
    
    .booking-bar-section {
        margin-top: -3rem;
    }
    
    .horizontal-booking-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-group-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-map-col {
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide on mobile, use hamburger */
    }
    
    .btn-nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .form-group-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .modal-body-grid {
        grid-template-columns: 1fr;
        overflow-y: visible;
    }
    
    .reservation-modal-overlay {
        align-items: flex-start;
        overflow-y: auto;
        padding: 1rem;
    }
    
    .reservation-modal {
        max-height: none;
        height: auto;
        overflow: visible;
    }
    
    .booking-summary-panel {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
