/*
 * Big Kral Boat - Main Stylesheet
 * Modern, clean boat tour website
 */

/* ============================================
   CSS VARIABLES (COLOR PALETTE)
   ============================================ */
:root {
    /* Primary Colors - Ocean Theme */
    --primary-color: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #3385D6;
    
    /* Secondary Colors */
    --secondary-color: #00A8E8;
    --accent-color: #FFB833;
    
    /* Neutral Colors */
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Status Colors */
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.main-header {
    position: relative;
    z-index: 2000; /* Above booking widget */
}

.navbar {
    padding: 1rem 0;
    background-color: transparent;
    transition: var(--transition-normal);
}

/* Scrolled State */
.navbar.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(1);
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-fast);
}

.navbar-brand i {
    font-size: 2rem;
    color: var(--accent-color);
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Nav Links */
.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-color) !important;
}

/* Dropdowns */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.dropdown-item .flag-icon {
    margin-right: 0.5rem;
}

/* Language/Currency Dropdowns */
.language-dropdown .lang-code,
.currency-dropdown .currency-code {
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Book Now CTA */
.btn-book-now {
    background: linear-gradient(135deg, var(--accent-color), #FF9500);
    border: none;
    color: var(--white) !important;
    font-weight: 600;
    padding: 0.65rem 1.5rem !important;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #FF9500, var(--accent-color));
}

.btn-book-now i {
    margin-right: 0.5rem;
}

/* Mobile Navbar */
@media (max-width: 991.98px) {
    .navbar {
        background-color: var(--white) !important;
    }
    
    .navbar-brand,
    .nav-link {
        color: var(--text-dark) !important;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background-color: var(--bg-light);
        border-radius: 8px;
    }
    
    .btn-book-now {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1E 100%);
    color: var(--white);
    margin-top: 5rem;
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

/* Newsletter */
.newsletter-signup {
    background-color: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-form .input-group {
    background-color: var(--white);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1.25rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}

.copyright-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.5);
}

.payment-methods i {
    transition: var(--transition-fast);
}

.payment-methods i:hover {
    color: var(--accent-color);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991.98px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .footer-top {
        padding: 3rem 0 1rem;
    }
    
    .payment-methods {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-brand i {
        font-size: 1.5rem;
    }
}

/*
 * HOME PAGE SPECIFIC STYLES
 * Add this to the end of style.css
 */

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: -80px; /* Offset fixed navbar */
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-fallback {
    background: linear-gradient(135deg, #0066CC 0%, #00A8E8 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,102,204,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons .btn {
    margin: 0.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   TOUR CARDS
   ============================================ */
.tour-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E0E0E0, #BDBDBD);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.tour-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.tour-badge-featured {
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-color), #FF9500);
}

.tour-badge-duration {
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
}

.tour-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tour-title a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.tour-title a:hover {
    color: var(--primary-color);
}

.tour-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex: 1;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E0E0E0;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-per {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-gray);
    margin: 0;
}

.about-images img {
    border-radius: 12px;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-summary {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    flex: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.blog-read-more i {
    transition: var(--transition-fast);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-slide {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-slide {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .section-padding {
        padding: 7rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .tour-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tour-footer .btn {
        width: 100%;
    }
    
    .feature-item {
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/*
 * STICKY SOCIAL CONTACT BUTTONS
 * Add this to the end of style.css
 */

/* ============================================
   STICKY CONTACT BUTTONS (Sol Alt)
   ============================================ */
.sticky-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 30px;  /* ← DEĞİŞTİ (top: 50% yerine) */
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Button Text (Hidden by default, shows on hover) */
.sticky-btn-text {
    position: absolute;
    left: 70px;
    white-space: nowrap;
    background: rgba(0,0,0,0.9);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
}

.sticky-btn:hover .sticky-btn-text {
    opacity: 1;
    visibility: visible;
    left: 75px;
}

/* WhatsApp */
.sticky-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.sticky-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: var(--white);
}

/* Phone */
.sticky-btn-phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.sticky-btn-phone:hover {
    background: linear-gradient(135deg, var(--primary-dark), #003366);
    color: var(--white);
}

/* Instagram */
.sticky-btn-instagram {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4, #5851DB);
}

.sticky-btn-instagram:hover {
    background: linear-gradient(135deg, #C13584, #833AB4);
    color: var(--white);
}

/* Facebook */
.sticky-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.sticky-btn-facebook:hover {
    background: linear-gradient(135deg, #0C63D4, #084B9E);
    color: var(--white);
}

/* Pulse Animation for WhatsApp */
.sticky-btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .sticky-contact-buttons {
        left: 15px;
        gap: 12px;
    }
    
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Hide text on tablet */
    .sticky-btn-text {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .sticky-contact-buttons {
        left: 10px;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    /* Move to bottom right on mobile */
    .sticky-contact-buttons {
        left: auto;
        right: 15px;
        bottom: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 50px;
        height: 50px;
    }
}

/*
 * NAVBAR LOGO STYLES
 */
.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.navbar-brand:hover .navbar-logo {
    transform: translateY(-2px);
}

/* Responsive Logo */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .navbar-logo {
        height: 35px;
        max-width: 150px;
    }
}

/*
 * ========================================
 * BIG KRAL BOAT - CSS REVISIONS
 * All 5 fixes in one section
 * ========================================
 */

/* ============================================
   FIX 1: HERO SLIDER TEXT - BEYAZ RENK
   ============================================ */
.hero-title {
    color: #FFFFFF !important; /* Beyaz */
    text-shadow: 0 4px 12px rgba(0,0,0,0.5); /* Okunabilirlik için shadow artırıldı */
}

.hero-subtitle {
    color: #FFFFFF !important; /* Beyaz */
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}


/* ============================================
   FIX 2: HAMBURGER BUTONU - NORMAL HEADER'DA DARK
   ============================================ */

/* Normal state (beyaz arka planda görünsün) */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Scrolled state (beyaz arka planda) */
.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hamburger button border */
.navbar-toggler {
    border-color: rgba(26, 26, 26, 0.2);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 26, 26, 0.1);
}


/* ============================================
   FIX 3: MOBİLDE SLIDER - HEADER BOŞLUĞU
   ============================================ */

/* Mobile'da hero slider header'a girmesin */
@media (max-width: 991.98px) {
    .hero-slider {
        margin-top: 0; /* Normal state boşluk yok */
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        margin-top: 0; /* Navbar fixed olduğu için boşluk gerek yok */
        padding-top: 70px; /* İçerikten padding ver */
    }
    
    .hero-slide {
        padding-top: 70px;
    }
}

@media (max-width: 575.98px) {
    .hero-slider {
        padding-top: 60px;
    }
    
    .hero-slide {
        padding-top: 60px;
    }
}


/* ============================================
   FIX 4: STICKY BUTTONS - MOBİLDE SOL ALT (REVİZE EDİLDİ)
   ============================================ */

/* Desktop & Tablet: Sol alt - ZATEN VAR YUKARIDA, BU OVERRIDE */
.sticky-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 991.98px) {
    .sticky-contact-buttons {
        left: 15px;
        bottom: 25px;
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .sticky-contact-buttons {
        left: 10px;
        bottom: 20px;
        gap: 10px;
    }
}

/* Mobile: SOL ALT (SAĞ DEĞİL!) - OVERRIDE */
@media (max-width: 575.98px) {
    .sticky-contact-buttons {
        left: 15px;        /* ← SOL taraf */
        right: auto;       /* ← SAĞ iptal */
        bottom: 20px;
        transform: none;
        flex-direction: column; /* ← Dikey */
        gap: 10px;
    }
}


/* ============================================
   FIX 5: FOOTER LOGO & CONTACT STYLING
   ============================================ */

/* Footer Logo Image */
.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Footer Contact - Better formatting */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact div {
    flex: 1;
}

.footer-contact strong {
    color: rgba(255,255,255,0.9);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

/* Responsive footer logo */
@media (max-width: 767.98px) {
    .footer-logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .footer-contact li {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-contact i {
        font-size: 1.1rem;
    }
}


/* ============================================
   ADDITIONAL MOBILE OPTIMIZATIONS
   ============================================ */

/* Hero content mobile padding adjustment */
@media (max-width: 575.98px) {
    .hero-content {
        padding: 1rem;
        padding-top: 2rem; /* Extra top space */
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

/*
 * ========================================
 * TOURS PAGES CSS
 * Listing & Detail pages styling
 * Add this to style.css
 * ========================================
 */

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 5rem 0 3rem;
    color: var(--white);
    margin-top: 70px; /* Navbar height */
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* ============================================
   TOURS LISTING
   ============================================ */
.tours-listing {
    background-color: var(--bg-light);
}

/* Tour Card */
.tour-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.tour-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    z-index: 2;
}

.badge-featured {
    left: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #FF9500);
}

.badge-duration {
    right: 1rem;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
}

.tour-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tour-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tour-title a:hover {
    color: var(--primary-color);
}

.tour-summary {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex: 1;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* No Tours Found */
.no-tours-found {
    text-align: center;
    padding: 5rem 2rem;
}

.no-tours-found i {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.no-tours-found h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-tours-found p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ============================================
   TOUR DETAIL PAGE
   ============================================ */

/* Hero Section */
.tour-hero {
    margin-top: 70px; /* Navbar height */
}

.tour-hero-image img,
.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 2rem;
}

/* Tour Header */
.tour-header {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.tour-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1rem 0;
}

.tour-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-gray);
    font-size: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: var(--primary-color);
}

/* Description */
.tour-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.description-content {
    line-height: 1.8;
    color: var(--text-gray);
}

/* Info Boxes */
.info-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.list-styled {
    list-style: none;
    padding: 0;
}

.list-styled li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.list-styled li i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Pricing Table */
.pricing-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bg-light);
}

.pricing-table table {
    margin: 0;
}

.pricing-table thead {
    background: var(--bg-light);
}

.pricing-table th {
    font-weight: 600;
    color: var(--text-dark);
    padding: 1rem;
}

.pricing-table td {
    padding: 1rem;
    color: var(--text-gray);
}

/* Extras */
.extras-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.extra-item {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.extra-info h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.extra-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.extra-price {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* ============================================
   BOOKING WIDGET
   ============================================ */
.booking-widget {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    top: 100px; /* Navbar + spacing */
    z-index: 100; /* Below header */
}

.booking-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.booking-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-price .price-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
}

.booking-price .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white); /* Ensure white color */
}

.booking-price .price-per {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.booking-body {
    padding: 2rem;
}

.booking-body .form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.booking-body .form-control,
.booking-body .form-select {
    border: 2px solid var(--bg-light);
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.booking-body .form-control:focus,
.booking-body .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
}

.passengers-section label,
.extras-section > label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: block;
}

.passenger-input label {
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.booking-footer {
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    text-align: center;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .page-header {
        padding: 4rem 0 2.5rem;
        margin-top: 60px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .tour-hero {
        margin-top: 60px;
    }
    
    .tour-hero-image img,
    .carousel-item img {
        height: 400px;
    }
    
    .booking-widget {
        position: static !important;
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .tour-hero-image img,
    .carousel-item img {
        height: 300px;
    }
    
    .tour-detail-title {
        font-size: 2rem;
    }
    
    .tour-meta {
        gap: 1rem;
    }
    
    .tour-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .tour-footer .btn {
        width: 100%;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .booking-price .price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .page-header {
        padding: 2.5rem 0 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .tour-card {
        margin-bottom: 1.5rem;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .tour-detail-title {
        font-size: 1.5rem;
    }
    
    .extra-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .booking-body {
        padding: 1.5rem;
    }
}
/* ============================================
   TOUR DETAIL PAGE - REVISED LAYOUT
   ============================================ */

/* Tour Gallery Slider (Next to Booking Form) */
.tour-gallery-slider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tour-gallery-slider .carousel-item {
    height: 500px;
}

.tour-gallery-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-featured-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tour-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .tour-gallery-slider .carousel-item {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .tour-gallery-slider .carousel-item {
        height: 300px;
    }
}

/* ============================================
   FLOATING BOOK NOW BUTTON (MOBILE)
   ============================================ */

.floating-book-btn {
    position: fixed;
    bottom: 80px; /* Above backToTop button */
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1500; /* Above backToTop (1000), below header (2000) */
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.floating-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.5);
}

.floating-book-btn:active {
    transform: translateY(-1px);
}

.floating-book-btn i {
    font-size: 1.1rem;
}

.floating-book-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.6);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 70px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .floating-book-btn span {
        display: none; /* Hide text on very small screens */
    }
    
    .floating-book-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .floating-book-btn i {
        font-size: 1.3rem;
    }
}
/* ============================================
   CART, CHECKOUT & CONFIRMATION PAGES
   ============================================ */

/* ============================================
   CART PAGE
   ============================================ */

.cart-section {
    background: var(--bg-light);
}

.empty-cart {
    padding: 5rem 2rem;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.empty-cart p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Cart Items */
.cart-items {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.cart-item {
    padding: 1.5rem;
    border: 1px solid var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
}

.cart-item:last-child {
    margin-bottom: 0;
}

.item-image {
    border-radius: 8px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.item-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.item-title a:hover {
    color: var(--primary-color);
}

.item-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.item-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-passengers,
.item-extras {
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.passenger-row,
.extra-row {
    padding: 0.25rem 0;
    color: var(--text-dark);
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--bg-light);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    top: 100px;
}

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.summary-divider {
    height: 1px;
    background: var(--bg-light);
    margin: 1rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.payment-note {
    text-align: center;
    color: var(--text-muted);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.checkout-section {
    background: var(--bg-light);
}

.checkout-form {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: var(--primary-color);
}

.payment-method {
    margin-top: 2rem;
}

.payment-option {
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option .form-check-input:checked ~ .form-check-label {
    color: var(--primary-color);
}

.terms-checkbox {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    top: 100px;
}

.order-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.summary-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.summary-item {
    padding: 1.5rem;
    border: 1px solid var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.summary-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.item-details {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.passenger-list,
.extras-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.passenger-list li,
.extras-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.item-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid var(--bg-light);
    font-weight: 600;
}

.summary-totals {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.total-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.total-final {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.secure-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ============================================
   CONFIRMATION PAGE
   ============================================ */

.confirmation-section {
    background: var(--bg-light);
    min-height: 80vh;
}

.confirmation-header {
    margin-bottom: 3rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color), #28a745);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 3rem;
    color: var(--white);
}

.confirmation-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.confirmation-header .lead {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.reservation-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.reservation-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem 2rem;
}

.reservation-card .card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.reference-number {
    font-size: 0.9rem;
}

.reference-number strong {
    font-size: 1.25rem;
    display: block;
    margin-top: 0.25rem;
}

.reservation-card .card-body {
    padding: 2rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.detail-list strong {
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.passengers-table,
.extras-table {
    margin: 1rem 0;
}

.passengers-table thead,
.extras-table thead {
    background: var(--bg-light);
}

.passengers-table th,
.extras-table th {
    font-weight: 600;
    padding: 0.75rem;
}

.passengers-table td,
.extras-table td {
    padding: 0.75rem;
}

.payment-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.payment-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.payment-summary .summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.payment-summary .summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.payment-summary .total-amount {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.payment-summary .payment-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.next-steps {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin: 2rem 0;
}

.next-steps h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.next-steps h4 i {
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.steps-list li i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.confirmation-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Print Styles */
@media print {
    .page-header,
    .main-header,
    footer,
    .confirmation-actions,
    .next-steps {
        display: none;
    }
    
    .confirmation-section {
        padding: 0;
        background: white;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .cart-summary,
    .order-summary {
        margin-top: 2rem;
        position: static !important;
    }
}

@media (max-width: 768px) {
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
    
    .item-price {
        font-size: 1.25rem;
    }
    
    .total-amount {
        font-size: 1.5rem;
    }
    
    .confirmation-header h1 {
        font-size: 2rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cart-summary,
    .checkout-form,
    .order-summary,
    .reservation-card .card-body {
        padding: 1.5rem;
    }
    
    .reference-number {
        text-align: left;
        margin-top: 1rem;
    }
}
/* ============================================
   NAVBAR GLOBAL FIX - White Background Always
   ============================================ */

/* Navbar - Always white background with dark text on ALL pages */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease;
}

/* Navbar scrolled state - keep white */
.navbar.scrolled {
    background: white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

/* Navbar links - dark text */
.navbar .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary) !important;
}

/* Navbar brand/logo - dark text */
.navbar-brand {
    color: var(--dark) !important;
}

.navbar-brand:hover {
    color: var(--primary) !important;
}

/* Mobile toggle button - dark */
.navbar-toggler {
    border-color: var(--dark);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 37, 41, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language and Currency dropdowns - dark text */
.navbar .dropdown-toggle {
    color: var(--dark) !important;
}

.navbar .dropdown-menu {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar .dropdown-item {
    color: var(--dark) !important;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: var(--light);
    color: var(--primary) !important;
}

/* Book Now button - keep primary color */
.navbar .btn-book-now,
.navbar-nav .btn-book-now,
.navbar .nav-item .btn-book-now {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
    font-weight: 600;
}

.navbar .btn-book-now:hover,
.navbar-nav .btn-book-now:hover,
.navbar .nav-item .btn-book-now:hover {
    background: var(--secondary) !important;
    color: white !important;
    border-color: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.navbar .btn-book-now i {
    color: white !important;
}

/* Ensure icons are dark */
.navbar .nav-link i,
.navbar .dropdown-toggle i {
    color: var(--dark);
}

/* Mobile menu - white background */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
}