/**
 * Big Kral Boat - Main Stylesheet
 * Modern Mediterranean Luxury Design
 */

/* ============================================
   CSS Variables & Reset
============================================ */

:root {
    /* Colors - Mediterranean Theme */
    --primary-blue: #0066CC;
    --primary-dark: #004A99;
    --secondary-gold: #D4AF37;
    --accent-turquoise: #40E0D0;
    
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #2C3E50;
    
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    max-width: 100vw;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============================================
   Container & Grid
============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 50px;
}

/* ============================================
   Buttons
============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: var(--secondary-gold);
    color: white;
}

.btn-secondary:hover {
    background: #C19B2E;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn i {
    margin-right: 8px;
}

/* ============================================
   Top Bar
============================================ */

.top-bar {
    background: var(--bg-dark);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-item i {
    color: var(--accent-turquoise);
}

.topbar-item a {
    color: white;
}

.topbar-item a:hover {
    color: var(--accent-turquoise);
}

.topbar-item select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.topbar-item select option {
    background: var(--bg-dark);
    color: white;
}

.topbar-social {
    display: flex;
    gap: 10px;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}

.topbar-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* ============================================
   Header
============================================ */

.main-header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header-logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 80px 30px 30px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    padding: 10px 0;
}

.mobile-menu .btn {
    margin-top: 30px;
}

/* ============================================
   Hero Section
============================================ */

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,102,204,0.4));
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 700px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Quick Booking Inline Form - Minimalist Horizontal */
.quick-booking-inline {
    margin-top: 30px;
    max-width: 700px;
}

.quick-booking-inline form {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.quick-booking-inline .form-control {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    background: white;
    transition: var(--transition);
}

.quick-booking-inline .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.quick-booking-inline .form-control::placeholder {
    color: #999;
}

.quick-booking-inline button {
    padding: 12px 24px;
    white-space: nowrap;
    border-radius: 25px;
    flex-shrink: 0;
}

.quick-booking-inline button i {
    margin-right: 6px;
}

/* Responsive Quick Booking */
@media (max-width: 768px) {
    .quick-booking-inline form {
        flex-direction: column;
        border-radius: 16px;
        gap: 10px;
    }
    
    .quick-booking-inline .form-control {
        width: 100%;
        border-radius: 12px;
    }
    
    .quick-booking-inline button {
        width: 100%;
        border-radius: 12px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    box-sizing: border-box;
    max-width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* ============================================
   About Section
============================================ */

.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   Tour Info Section
============================================ */

.tour-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-turquoise), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ============================================
   Blog Section
============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h3 a {
    color: var(--text-dark);
}

.blog-card h3 a:hover {
    color: var(--primary-blue);
}

.blog-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* ============================================
   Footer
============================================ */

.main-footer {
    background: var(--bg-dark);
    color: white;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-posts li:last-child {
    border-bottom: none;
}

.footer-posts a {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

.footer-posts a:hover {
    color: var(--accent-turquoise);
}

.post-date {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: var(--accent-turquoise);
    width: 20px;
}

.tursab-badge {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-copyright a {
    color: var(--accent-turquoise);
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-legal a:hover {
    color: white;
}

.footer-payment {
    display: flex;
    gap: 10px;
}

.footer-payment img {
    height: 30px;
    width: auto;
}

/* ============================================
   Floating Contact Buttons
============================================ */

.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.telegram {
    background: #0088cc;
}

.float-btn.viber {
    background: #665CAC;
}

.float-btn.phone {
    background: var(--primary-blue);
}

.float-btn.location {
    background: var(--secondary-gold);
}

/* ============================================
   Tour Detail Page - PROFESSIONAL LAYOUT
============================================ */

/* Tour Detail Hero Section */
.tour-detail-hero {
    background: var(--bg-light);
    padding: 40px 0;
}

.tour-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.tour-breadcrumb a {
    color: var(--text-gray);
    transition: var(--transition);
}

.tour-breadcrumb a:hover {
    color: var(--primary-blue);
}

.tour-breadcrumb span {
    color: var(--primary-blue);
}

/* Tour Content Section */
.tour-content-section {
    padding: 60px 0;
    overflow-x: hidden;
}

.tour-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tour Detail Grid - Balanced Layout */
.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 993px) {
    .tour-detail-grid {
        grid-template-columns: 1fr 380px;
        gap: 50px;
    }
}

/* Left Column - Tour Main Content */
.tour-main-content {
    min-width: 0;
}

.tour-main-content > * {
    max-width: 100%;
}

/* Featured Image */
.tour-main-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Gallery Slider Styling */
.tour-gallery-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.tour-gallery-slider .swiper-wrapper {
    display: flex;
}

.tour-gallery-slider .swiper-slide {
    flex-shrink: 0;
}

.tour-gallery-slider .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.tour-gallery-slider .swiper-button-next,
.tour-gallery-slider .swiper-button-prev {
    color: white;
    background: rgba(0, 102, 204, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tour-gallery-slider .swiper-button-next:after,
.tour-gallery-slider .swiper-button-prev:after {
    font-size: 18px;
}

.tour-gallery-slider .swiper-pagination-bullet {
    background: var(--primary-blue);
}

/* Right Column - Booking Sidebar */
.booking-sidebar {
    width: 100%;
}

@media (min-width: 993px) {
    .booking-sidebar {
        position: sticky;
        top: 100px;
    }
}

.booking-sidebar > div {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Booking Form Styling */
.booking-sidebar .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    box-sizing: border-box;
}

.booking-sidebar .form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.booking-sidebar input[type="number"],
.booking-sidebar input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}

/* Tour Info Cards Styling */
.tour-main-content [style*="grid-template-columns"] {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .tour-main-content [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Experiences/Highlights Section */
.tour-main-content [style*="linear-gradient"] {
    border-radius: 12px;
    overflow: hidden;
}

/* Swiper Global Fix */
.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
}

/* Input Global Fix */
input[type="number"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    box-sizing: border-box;
}

/* Tour Page Spacing */
.tour-detail-hero .container,
.tour-content-section .container {
    max-width: 1200px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .tour-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        position: relative;
        top: 0;
    }
    
    .tour-content-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .tour-detail-hero {
        padding: 30px 0;
    }
    
    .tour-detail-hero h1 {
        font-size: 28px !important;
    }
    
    .tour-main-content [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .tour-gallery-slider .swiper-slide img {
        height: 250px;
    }
}

/* ============================================
   Responsive Design
============================================ */

@media (max-width: 992px) {
    .main-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    

    
    .section-title {
        font-size: 32px;
    }
    
    .tour-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .topbar-content {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-section,
    .hero-slide {
        height: auto;
        min-height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-contact {
        left: 10px;
        bottom: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .tour-detail-hero h1 {
        font-size: 32px !important;
    }
    
    /* Included/Excluded grid mobilde tek sütun */
    .tour-content-section [style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }
    
    .tour-content-section [style*="grid-template-columns: 1fr 1fr"] > div {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ============================================
   ANIMATION
============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.input-with-icon {
    position: relative;
    flex: 1;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    pointer-events: none;
}

.input-with-icon .form-control {
    padding-left: 40px;
}