/* Gezgin Tilki - Main Stylesheet */
:root {
    --primary-color: #D90429;
    /* Vivid Red */
    --primary-hover: #EF233C;
    /* Lighter Red */
    --primary-light: rgba(217, 4, 41, 0.08);
    /* Soft primary text background */
    --secondary-color: #0F172A;
    /* Deeper dark blue/slate for a premium feel */
    --accent-color: #1E293B;
    /* Lighter slate */
    --text-dark: #1E293B;
    /* Dark Slate */
    --text-light: #64748B;
    /* Muted Slate */
    --white: #ffffff;
    --bg-light: #F8FAFC;
    /* Very subtle cool gray/off-white */
    --bg-white: #ffffff;
    /* Pure white */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Animation & Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Modern & Deep */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 15px 35px -5px rgba(0, 0, 0, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.65;
    /* Better readability */
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    /* Crisper text on macOS */
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.3;
    letter-spacing: -0.02em;
    /* Tighter headers for premium look */
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - Premium Glassmorphism */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-slow);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
}

header.transparent .nav-links a:not(.btn-primary) {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

header.transparent .nav-links a:not(.btn-primary)::after {
    background-color: var(--white);
}

header.transparent .mobile-menu-btn {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled .logo img {
    height: 52px !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Dual Logo System - Dark/Light switching */
.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

header.transparent .logo-dark {
    display: none;
}

header.transparent .logo-light {
    display: block;
}

.nav-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

/* Underline Hover Animation */
.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
    background: var(--primary-light);
}

.nav-links a:not(.btn-primary):hover::after {
    width: calc(100% - 2.4rem);
    /* Match padding */
}

.nav-links a:not(.btn-primary).active {
    color: var(--primary-color);
    font-weight: 600;
    background: var(--primary-light);
}

.nav-links a:not(.btn-primary).active::after {
    width: calc(100% - 2.4rem);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.25);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #FF4757 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 4, 41, 0.35);
    color: var(--white);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 0.25rem;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a:not(.btn-primary) {
        color: var(--text-dark) !important;
        text-shadow: none !important;
        padding: 0.7rem 1rem;
        border-radius: 8px;
        width: 100%;
    }

    .nav-links a:not(.btn-primary):hover {
        background: rgba(217, 4, 41, 0.06);
    }

    .nav-links .btn-primary {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo img {
        height: 45px !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}


/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 100px;
    /* Offset for header */
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.35rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

.section-header blockquote,
.section-header p {
    color: var(--text-light);
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

footer h4 {
    color: white;
}

/* Search Box Enhancements (Global tweaks) */
.search-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.search-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
}

.form-group label {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input,
.guest-selector-btn {
    transition: var(--transition-fast);
}

.form-group input:focus,
.guest-selector-btn:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.1);
}

/* Featured Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    text-align: center;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin: 1rem auto;
    position: relative;
    max-width: 650px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary-light);
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(26, 83, 92, 0.9), rgba(26, 83, 92, 0.9)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 5px;
    border: none;
    outline: none;
}

/* Destination Cards */
/* Destination Cards - Premium Design */
.destination-card {
    position: relative;
    border-radius: 20px;
    /* Slightly rounder */
    overflow: hidden;
    height: 380px;
    /* Bit taller */
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    /* Use new css variable shadow */
    transition: var(--transition-slow);
    background: var(--bg-white);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover img {
    transform: scale(1.08);
    /* Smoother zoom */
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 60%, transparent 100%);
    padding: 2.5rem 1.5rem 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.destination-card:hover .destination-overlay {
    padding-bottom: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 70%, transparent 100%);
}

.destination-overlay h3 {
    color: var(--white) !important;
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.destination-overlay h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.destination-overlay .dest-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.destination-overlay .dest-tours {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.destination-overlay .dest-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.destination-card:hover .dest-cta {
    opacity: 1;
    transform: translateY(0);
}

.destination-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.page-header {
    margin-top: 0;
    /* Fixed header offset handled by padding-top on each page */
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--white) !important;
    font-size: 1.25rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Flatpickr Custom Theme */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.flatpickr-day.inRange {
    box-shadow: -5px 0 0 #fee2e2, 5px 0 0 #fee2e2;
    background: #fee2e2 !important;
    /* Very light red */
    border-color: #fee2e2 !important;
}

.flatpickr-months .flatpickr-month {
    background: var(--primary-color);
    color: #fff;
    fill: #fff;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: var(--primary-color);
}

.flatpickr-weekdays {
    background: var(--primary-color);
}

span.flatpickr-weekday {
    color: #fff !important;
}

/* Owl Carousel Custom Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color) !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-dots {
    margin-top: 20px !important;
}

.owl-dot span {
    background: #ddd !important;
    width: 10px !important;
    height: 10px !important;
    margin: 5px !important;
}

.owl-dot.active span {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

/* Tours Page Sidebar */
.filters label {
    font-size: 0.95rem;
    color: var(--text-light);
    transition: color 0.3s;
}

.filters label:hover {
    color: var(--primary-color);
}

.filters input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.filters input[type="number"],
.filters input[type="text"] {
    transition: border-color 0.3s;
}

.filters input[type="number"]:focus,
.filters input[type="text"]:focus {
    border-color: var(--primary-color) !important;
    outline: none;
}

/* Responsive adjustments for Tours Page */
@media (max-width: 768px) {
    .tours-listing .row {
        flex-direction: column;
    }

    .filters {
        width: 100%;
        position: static !important;
        /* Disable sticky on mobile */
    }
}

/* Tour Card Interaction */
.tour-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Search Autocomplete */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9f9f9;
}

.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-item h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.search-result-item p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   TOUR DETAIL PAGE - Premium Styles
   ============================================ */

/* Hero Section */
.tour-hero-pro {
    position: relative;
    height: 700px;
    /* Taller hero */
    margin-top: -90px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.tour-hero-pro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    z-index: 0;
}

.tour-hero-pro .hero-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: transform 10s ease-out;
    /* Slower, premium pan */
    transform: scale(1.02);
}

.tour-hero-pro:hover .hero-bg {
    transform: scale(1.06);
}

.tour-hero-pro .container {
    position: relative;
    z-index: 2;
    padding-bottom: 4rem;
    animation: fadeInUp 1s ease-out forwards;
}

.tour-hero-pro .tour-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.tour-hero-pro .hero-info-strip {
    display: inline-flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    color: white;
}

.tour-hero-pro .hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    transition: background 0.3s;
}

.tour-hero-pro .hero-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.tour-hero-pro .hero-info-item i {
    font-size: 1.25rem;
    opacity: 0.7;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.tour-hero-pro .hero-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.tour-hero-pro .hero-info-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
    font-weight: 600;
}

.tour-hero-pro .hero-info-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.tour-hero-pro .hero-info-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

.tour-hero-pro .hero-info-price {
    background: var(--primary-color);
    position: relative;
}

.tour-hero-pro .hero-info-price:hover {
    background: #c5031f;
}

.tour-hero-pro .hero-info-price i {
    opacity: 1;
}

.tour-hero-pro .hero-info-price .hero-info-label {
    opacity: 0.85;
}

.tour-hero-pro .hero-info-price .hero-info-value {
    font-size: 1.1rem;
    font-weight: 800;
}

.tour-hero-pro .hero-cta {
    margin-top: 1.5rem;
}

.tour-hero-pro .hero-cta .btn-primary {
    font-size: 1.05rem;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 20px rgba(217, 4, 41, 0.4);
}

.quick-summary {
    padding: 5rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.quick-summary .section-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.quick-summary h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.quick-summary p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 16px;
    transition: var(--transition);
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 4, 41, 0.1);
}

.highlight-item .icon-box {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.highlight-item:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

/* Itinerary Section - Timeline Style */
.itinerary-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.itinerary-section .section-header span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.itinerary-section .section-header h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.itinerary-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Timeline connecting line */
.itinerary-list::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(217, 4, 41, 0.1));
    z-index: 0;
}

.itinerary-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.itinerary-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.itinerary-header {
    padding: 1.5rem 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-left: 4px solid var(--primary-color);
    transition: background 0.2s;
}

.itinerary-header:hover {
    background: rgba(217, 4, 41, 0.02);
}

.day-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(217, 4, 41, 0.25);
}

.itinerary-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.itinerary-header i {
    color: var(--text-light);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.itinerary-body {
    padding: 0 2rem 2rem 5.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid #f5f5f5;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inclusions Section */
.inclusions-section {
    padding: 5rem 0;
    background: white;
}

.col-included,
.col-excluded {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.col-included {
    background: linear-gradient(135deg, #f0fdf4, #f9fff9);
    border: 1px solid #dcfce7;
}

.col-excluded {
    background: linear-gradient(135deg, #fef2f2, #fff9f9);
    border: 1px solid #fecaca;
}

.col-included:hover,
.col-excluded:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.col-included h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #16a34a;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dcfce7;
}

.col-excluded h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #dc2626;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fecaca;
}

.check-list li,
.cross-list li {
    margin-bottom: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.check-list li i {
    color: #16a34a;
    margin-top: 4px;
    flex-shrink: 0;
}

.cross-list li i {
    color: #dc2626;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Pricing / Dates Section */
.pricing-dates {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e2235 100%);
    color: white;
}

.pricing-dates .section-header h2 {
    font-size: 2.2rem;
    color: white;
}

.pricing-dates .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.dates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
}

.dates-table thead tr {
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.dates-table tbody tr {
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.dates-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(217, 4, 41, 0.1);
}

.dates-table td {
    padding: 1.5rem 1rem;
}

.dates-table td:first-child {
    border-radius: 12px 0 0 12px;
}

.dates-table td:last-child {
    border-radius: 0 12px 12px 0;
}

/* Pulse animation for urgency */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Mobile Booking Bar */
.mobile-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
}

/* Tour Detail Responsive */
@media (max-width: 768px) {
    .tour-hero-pro {
        height: auto !important;
        min-height: 480px;
        overflow: hidden !important;
        padding-top: 130px;
        align-items: flex-end;
    }

    .tour-hero-pro .hero-bg {
        height: auto !important;
        top: 0;
        bottom: 0;
    }

    .tour-hero-pro .container {
        padding-bottom: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .tour-hero-pro .tour-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem;
        letter-spacing: 0 !important;
    }

    /* Mobile: 2x2 grid layout for info strip */
    .tour-hero-pro .hero-info-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        border-radius: 10px;
        gap: 0;
    }

    .tour-hero-pro .hero-info-divider {
        display: none;
    }

    .tour-hero-pro .hero-info-item {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tour-hero-pro .hero-info-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tour-hero-pro .hero-info-item i {
        font-size: 0.85rem;
        width: 16px;
    }

    .tour-hero-pro .hero-info-label {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }

    .tour-hero-pro .hero-info-value {
        font-size: 0.75rem;
    }

    /* Price spans full width on mobile */
    .tour-hero-pro .hero-info-price {
        grid-column: 1 / -1;
        border-bottom: none;
        justify-content: center;
        padding: 0.6rem 0.75rem;
        border-right: none !important;
    }

    .tour-hero-pro .hero-info-price .hero-info-value {
        font-size: 0.85rem;
    }

    .tour-hero-pro .hero-cta {
        margin-top: 0.75rem;
        text-align: center;
    }

    .tour-hero-pro .hero-cta .btn-primary {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
        width: 100%;
    }

    .quick-summary .row {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .highlights-grid {
        grid-template-columns: 1fr !important;
    }

    .itinerary-list::before {
        display: none;
    }

    .itinerary-body {
        padding-left: 1.5rem !important;
    }

    .col-included,
    .col-excluded {
        padding: 1.5rem;
    }

    .mobile-booking-bar {
        display: flex !important;
    }

    #booking-section {
        padding-bottom: 80px !important;
    }
}

/* ============================================
   FEATURED TOURS SECTION - Homepage
   ============================================ */

.featured-tours-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 50%, #f0f4ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.featured-tours-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-tours-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(217, 4, 41, 0.2);
    }

    50% {
        box-shadow: 0 4px 25px rgba(217, 4, 41, 0.35);
    }
}

.featured-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.featured-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-tour-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.featured-tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-tour-card:hover .featured-tour-img img {
    transform: scale(1.1);
}

.featured-tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #FF6B35, #FF4757);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 3px 12px rgba(255, 71, 87, 0.35);
    letter-spacing: 0.3px;
    z-index: 2;
}

.featured-badge i {
    font-size: 0.65rem;
    animation: star-spin 3s ease-in-out infinite;
}

@keyframes star-spin {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.2);
    }
}

.featured-tour-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.featured-tour-price small {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-light);
}

.featured-tour-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Featured Tours Meta - DÜZELTİLMİŞ VERSİYON */
.featured-tour-meta {
    display: flex;
    align-items: stretch;
    /* Kutuların boyunu eşitler */
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.8rem;
}

.featured-tour-meta span {
    font-size: 0.8rem;
    /* Yazı boyutu ideal */
    color: var(--text-dark);

    /* Esnek Kutu Ayarları */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* Genişlik Ayarları - BU KISIM ÖNEMLİ */
    flex: 1;
    /* Eşit alan kapla */
    width: 0;
    /* İçeriğe göre değil alana göre boyutlan */
    min-width: 0;
    /* Flexbox taşma sorununu çözer */

    background: #f8f9fa;
    padding: 0.5rem 0.2rem;
    /* Yanlardan boşluğu azalttık */
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #eee;

    /* Yazı Davranışı - Sığmazsa aşağı insin */
    white-space: normal;
    line-height: 1.2;
    height: auto;
    /* Yükseklik serbest */
}

/* İkon renkleri ve boyutları */
.featured-tour-meta span i {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-right: 4px;
    /* İkon ile yazı arasına mesafe */
    flex-shrink: 0;
    /* İkonun ezilmesini engeller */
}

.featured-tour-meta span i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.featured-tour-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.featured-tour-card:hover .featured-tour-title {
    color: var(--primary-color);
}

.featured-tour-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.featured-tour-footer {
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.featured-tour-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.featured-tour-cta i {
    transition: transform 0.3s;
}

.featured-tour-card:hover .featured-tour-cta {
    gap: 0.75rem;
}

.featured-tour-card:hover .featured-tour-cta i {
    transform: translateX(4px);
}

/* Featured Tours Responsive */
@media (max-width: 1024px) {
    .featured-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .featured-tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-tours-section {
        padding: 3rem 0;
    }

    .featured-tour-img {
        height: 200px;
    }
}

/* Urgency / FOMO Indicator for Tour Cards */
.featured-tour-urgency,
.tour-urgency-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff5f5, #fee2e2);
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    margin-bottom: 0.75rem;
    animation: urgency-pulse 2.5s ease-in-out infinite;
}

.featured-tour-urgency i,
.tour-urgency-badge i {
    color: #dc3545;
    font-size: 0.95rem;
    flex-shrink: 0;
    animation: fire-flicker 1.5s ease-in-out infinite;
}

.featured-tour-urgency span,
.tour-urgency-badge span {
    font-size: 0.78rem;
    color: #991b1b;
    line-height: 1.3;
}

.featured-tour-urgency strong,
.tour-urgency-badge strong {
    font-weight: 700;
    color: #dc3545;
}

@keyframes urgency-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
        border-color: #fecaca;
    }

    50% {
        box-shadow: 0 0 12px 2px rgba(220, 53, 69, 0.12);
        border-color: #f87171;
    }
}

@keyframes fire-flicker {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

/* ============================================
   EMAIL ITINERARY - Button + Modal
   ============================================ */

.email-itinerary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
    letter-spacing: 0.3px;
}

.email-itinerary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.45);
}

.email-itinerary-btn:active {
    transform: translateY(-1px);
}

.email-itinerary-btn i {
    font-size: 1rem;
}

/* Modal Overlay */
.email-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content */
.email-modal {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.email-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    transition: all 0.2s;
}

.email-modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.email-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.email-modal-icon i {
    color: white;
    font-size: 1.5rem;
}

.email-modal h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.email-modal>p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.email-modal>p strong {
    color: #111827;
}

/* Input Group */
.email-input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 1rem;
    transition: border-color 0.3s;
    margin-bottom: 1rem;
}

.email-input-group:focus-within {
    border-color: #667eea;
    background: white;
}

.email-input-group i {
    color: #9CA3AF;
    font-size: 1rem;
    flex-shrink: 0;
}

.email-input-group:focus-within i {
    color: #667eea;
}

.email-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.9rem 0;
    font-size: 0.95rem;
    color: #111827;
    outline: none;
    font-family: inherit;
}

.email-input-group input::placeholder {
    color: #9CA3AF;
}

/* Send Button */
.email-send-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-send-btn:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-1px);
}

.email-send-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.email-send-btn .btn-text,
.email-send-btn .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Result Messages */
.email-result-success,
.email-result-error {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.email-result-success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.email-result-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Privacy Note */
.email-modal-note {
    color: #9CA3AF;
    font-size: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Mobile */
@media (max-width: 480px) {
    .email-modal {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .email-itinerary-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}