/*
 * Simo Turizm (simoturizm.com) - Premium Design System (CSS)
 * Apple/Stripe-inspired Luxury UI with Navy Blue, Royal Blue & Electric Cyan Accents
 * Simo Bilişim Yazılım Teknolojileri Sanayi ve Ticaret Şirketi
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Light Theme (Default) */
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-input: #ffffff;
    --border-color: rgba(15, 23, 42, 0.08);
    --border-hover: rgba(37, 99, 235, 0.35);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --primary: #1d4ed8; /* Deep Royal Blue */
    --primary-hover: #1e40af;
    --primary-glow: rgba(29, 78, 216, 0.15);
    --primary-rgb: 29, 78, 216;
    
    --accent: #0891b2; /* Darker Cyan */
    --accent-hover: #0e7490;
    --accent-glow: rgba(8, 145, 178, 0.15);
    --accent-rgb: 8, 145, 178;

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --card-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    --glass-blur: 16px;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

body.dark-theme {
    /* Dark Theme */
    --bg-primary: #040612;
    --bg-secondary: #0a0d20;
    --bg-card: rgba(12, 16, 36, 0.65);
    --bg-input: rgba(6, 8, 20, 0.85);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(37, 99, 235, 0.45);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --primary: #2563eb; /* Royal Blue */
    --primary-hover: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.25);
    --primary-rgb: 37, 99, 235;
    
    --accent: #06b6d4; /* Cyan */
    --accent-hover: #0891b2;
    --accent-glow: rgba(6, 182, 212, 0.2);
    --accent-rgb: 6, 182, 212;
    
    --card-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    position: relative;
}

/* Background Gradients */
.bg-gradient-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape-1 {
    position: absolute;
    top: 5%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulseShape 15s ease-in-out infinite alternate;
}

.shape-2 {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulseShape 20s ease-in-out infinite alternate-reverse;
}

@keyframes pulseShape {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(5%, 5%); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.25);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--accent-rgb), 0.6);
}

/* Glassmorphism utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
    transform: translateY(-4px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--bg-primary), 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.65rem;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

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

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Header CTA Button styling */
.nav-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white !important;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px var(--primary-glow);
    font-weight: 700;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Announcement Bar */
.marquee-wrapper {
    margin-top: 85px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.12), rgba(var(--accent-rgb), 0.12));
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 2rem;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 100;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marqueeAnimation 25s linear infinite;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

@keyframes marqueeAnimation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Hero Section */
.hero {
    padding: 7rem 2rem 5rem;
    position: relative;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--border-hover);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

/* Floating graphics for hero area */
.hero-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-1 {
    position: absolute;
    top: -15%;
    left: -10%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    animation: floatAnimation 6s ease-in-out infinite;
}

.floating-card-2 {
    position: absolute;
    bottom: -10%;
    right: -5%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    animation: floatAnimation 8s ease-in-out infinite reverse;
}

.float-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.float-text h4 {
    font-size: 0.85rem;
    font-weight: 800;
}

.float-text p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* Smart Search Widget Area */
.search-widget-section {
    padding: 0 2rem;
    margin-top: -3.5rem;
    position: relative;
    z-index: 200;
}

.search-widget-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2.25rem;
    border-color: rgba(37, 99, 235, 0.15);
}

.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    overflow-x: auto;
}

.search-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.search-tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.03);
}

.search-tab-btn.active {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: flex-end;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.search-control {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    outline: none;
    font-weight: 500;
    width: 100%;
    transition: var(--transition-smooth);
}

.search-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-search {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 15px var(--primary-glow);
    transition: var(--transition-smooth);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}

/* Sections General */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Categories Grid */
.categories-section {
    padding: 7rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.category-card {
    padding: 2.25rem;
    text-align: left;
}

.category-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Products Section (Hotels, Tours, Villas, Bungalows) */
.product-section {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

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

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15);
}

.product-img-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: #f59e0b;
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-body {
    padding: 1.75rem;
}

.product-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-price strong {
    font-size: 1.25rem;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Featured Destinations Grid */
.destinations-section {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.destination-card {
    height: 320px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.dest-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.75rem 1.5rem;
    z-index: 5;
    background: linear-gradient(to top, rgba(4, 6, 18, 0.95) 0%, rgba(4, 6, 18, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
}

.dest-details h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.dest-details p {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

/* Fleet Section */
.fleet-section {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

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

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.fleet-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.fleet-img-wrap {
    height: 200px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--accent-rgb), 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fleet-img-wrap i {
    font-size: 4.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.fleet-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.fleet-body {
    padding: 1.75rem;
}

.fleet-body h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.fleet-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.fleet-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.fleet-spec-item {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.fleet-spec-item i {
    color: var(--primary);
}

.fleet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.fleet-price {
    display: flex;
    flex-direction: column;
}

.fleet-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.fleet-price strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.fleet-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

/* Why Us */
.why-section {
    padding: 6rem 2rem;
    background: rgba(var(--bg-secondary), 0.3);
}

.why-container {
    max-width: 1440px;
    margin: 0 auto;
}

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

.why-card {
    padding: 2.5rem;
}

.why-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Corporate Section */
.corporate-section {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

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

.corporate-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.corporate-info h2 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.corporate-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.corporate-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.corporate-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.corporate-list li i {
    color: var(--success);
}

/* Reviews */
.reviews-section {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

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

.review-card {
    padding: 2.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.reviewer-name h4 {
    font-size: 0.95rem;
    font-weight: 800;
}

.reviewer-name p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.stars {
    color: #f59e0b;
    font-size: 0.8rem;
    display: flex;
    gap: 0.15rem;
}

.review-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* Blog */
.blog-section {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

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

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-img-placeholder {
    height: 180px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--accent-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
}

.blog-content {
    padding: 1.75rem;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-smooth);
}

.blog-link:hover {
    color: var(--accent);
    gap: 0.6rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-trigger i {
    transition: var(--transition-smooth);
    color: var(--primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-item.active {
    border-color: var(--border-hover);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* Partners section */
.partners-section {
    padding: 4rem 2rem;
    background: rgba(var(--bg-secondary), 0.2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.65;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Booking Section */
.teklif-section {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.teklif-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
}

.teklif-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.teklif-info h2 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teklif-info p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.form-box {
    padding: 3.5rem;
    border-color: rgba(37, 99, 235, 0.15);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.form-control {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    padding: 0.95rem 1.25rem;
    font-size: 0.9rem;
    outline: none;
    font-weight: 500;
    width: 100%;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Track Inquiry Section */
.track-section {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.track-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 3.5rem;
    text-align: center;
    border-color: rgba(37, 99, 235, 0.15);
}

.track-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.track-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.track-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.track-input-group input {
    flex: 1;
}

/* Result Card */
.result-card {
    display: none;
    padding: 2.5rem;
    text-align: left;
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(var(--bg-secondary), 0.4);
}

.status-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
}

.status-beklemede { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.status-fiyatlandirildi { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
.status-odeme-bildirildi { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.status-onaylandi { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.status-iptal { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

/* Mobile App Section */
.app-section {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.app-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    padding: 4.5rem;
    align-items: center;
    gap: 4rem;
    border-color: rgba(6, 182, 212, 0.15);
}

.app-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.app-text h2 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-text p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.app-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.app-qr-box {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.app-qr-code {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.app-qr-text strong {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.app-qr-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    margin-top: 0.15rem;
}

.app-graphic {
    display: flex;
    justify-content: center;
}

/* Footer styling */
footer {
    background: #03040b;
    border-top: 1px solid var(--border-color);
    padding: 5rem 2rem 2.5rem;
    position: relative;
    z-index: 100;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.footer-logo h3 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 1.25rem;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
}

/* AI Assistant Chat Widget */
.ai-assistant-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.ai-assistant-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.45);
}

.ai-chat-card {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 60px);
    height: 550px;
    max-height: calc(100vh - 150px);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.ai-chat-header {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(var(--primary-rgb), 0.15));
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.ai-chat-header h3 span {
    color: var(--accent);
    font-size: 0.7rem;
    background: rgba(6, 182, 212, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 8px;
    font-weight: 700;
}

.ai-chat-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.ai-chat-close:hover {
    color: var(--text-primary);
}

.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(var(--bg-primary), 0.4);
}

.ai-msg {
    max-width: 85%;
    padding: 0.85rem 1.1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.ai-msg-bot {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    align-self: flex-start;
    border-top-left-radius: 4px;
}

.ai-msg-user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-top-right-radius: 4px;
}

.ai-chat-quick {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    background: rgba(0,0,0,0.1);
}

.quick-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.4rem 0.85rem;
    border-radius: 10px;
    font-size: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.quick-btn:hover {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border-color: var(--primary);
}

.ai-chat-input-area {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.75rem;
    background: var(--bg-secondary);
}

.ai-chat-input {
    flex: 1;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    outline: none;
}

.ai-chat-send {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.ai-chat-send:hover {
    background: var(--primary-hover);
}

/* Modal UI */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 6, 18, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-content {
    width: 100%;
    max-width: 580px;
    padding: 3rem;
    position: relative;
    border-color: rgba(37,99,235,0.25);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-primary);
}

/* Toast In animation */
@keyframes slideIn {
    0% { transform: translateY(1rem); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Responsive Grids & Offcanvas */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-text p {
        margin: 0 auto 2.5rem;
    }
    .hero-cta {
        justify-content: center;
    }
    .corporate-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .app-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
        text-align: center;
    }
    .app-buttons {
        justify-content: center;
    }
    .app-qr-box {
        margin: 0 auto;
    }
    .teklif-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    .mobile-menu-toggle {
        display: block;
    }
    nav {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }
    nav.open {
        display: flex;
    }
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        width: 100%;
    }
    nav ul li {
        width: 100%;
    }
    nav a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }
    .hero-text h1 {
        font-size: 2.6rem;
    }
    .form-box, .track-box {
        padding: 2rem 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 2.1rem;
    }
    .ai-chat-card {
        width: 100%;
        bottom: 0;
        right: 0;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        max-width: 100%;
    }
}
