/* STM Travel - Frontend Core CSS */

:root {
    --primary: var(--theme-primary, #2563EB);
    --secondary: var(--theme-secondary, #3B82F6);
    --accent: var(--theme-accent, #1E40AF);
    
    --header-bg: var(--theme-header-bg, #FFFFFF);
    --header-text: var(--theme-header-text, #1F2937);
    --footer-bg: var(--theme-footer-bg, #1F2937);
    --footer-text: var(--theme-footer-text, #F9FAFB);
    
    --body-bg: var(--theme-body-bg, #FFFFFF);
    --text-color: var(--theme-text-color, #4B5563);
    --heading-color: var(--theme-heading-color, #111827);
    --card-bg: var(--theme-card-bg, #FFFFFF);
    --card-border: var(--theme-card-border, #E5E7EB);
    
    --link-color: var(--theme-link-color, #2563EB);
    --btn-bg: var(--theme-button-bg, #2563EB);
    --btn-hover: var(--theme-button-hover-bg, #1D4ED8);
    --btn-text: var(--theme-button-text, #FFFFFF);

    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--body-bg);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.3;
}

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

a:hover {
    opacity: 0.8;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HEADER & TOPBAR ================= */
.top-bar {
    font-size: 0.85rem;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001; /* Başlangıçta en üstte */
    height: 40px;
    display: flex;
    align-items: center;
}

.main-header {
    background-color: var(--header-bg);
    padding: 15px 0;
    position: fixed;
    top: 40px; /* Topbar'ın hemen altı */
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sayfa içeriği için üst boşluk */
body {
    padding-top: 120px;
}

/* Sayfa aşağı kaydığında Header Topbar'ın ÜSTÜNE ÇIKAR */
.header-scrolled {
    top: 0 !important;
    z-index: 1002 !important; /* Topbar'dan (1001) daha yukarıda olmalı */
    padding: 10px 0 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    background-color: var(--header-bg) !important;
}

/* Topbar kapalıysa düzeni ayarlar */
body:not(:has(.top-bar)) .main-header {
    top: 0;
}
body:not(:has(.top-bar)) {
    padding-top: 80px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 45px;
}
.nav-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--header-text);
}
.nav-logo span i {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-item a {
    color: var(--header-text);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}
.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}
.nav-item a:hover::after, .nav-item.active a::after {
    width: 100%;
}

.nav-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--header-text);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    background: #f1f5f9;
}
.nav-search-btn:hover {
    background: var(--primary);
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--header-text);
    position: absolute;
    left: 0;
    transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* ================= COMPONENTS ================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}
.btn-primary {
    background-color: var(--btn-bg);
    color: var(--btn-text);
}
.btn-primary:hover {
    background-color: var(--btn-hover);
    color: var(--btn-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}
.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}
.btn-white {
    background-color: #fff;
    color: var(--primary);
}
.btn-white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}
.btn-block {
    width: 100%;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading-color);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: #fff;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    padding-right: 40px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.form-group-row {
    display: flex;
    gap: 20px;
}
.form-group-row .form-group {
    flex: 1;
}

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: #fff;
    animation: slideInDown 0.5s ease-out forwards;
}
.flash-message .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
}
.flash-success { background-color: #10B981; }
.flash-error { background-color: #EF4444; }
.flash-info { background-color: #3B82F6; }
.flash-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
}

/* ================= SECTION STYLES ================= */
.section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}
.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* ================= HOMEPAGE ================= */
/* Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}
.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.slide.active { opacity: 1; z-index: 10; }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s 0.3s ease-out;
}
.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}
.slide-title { font-size: 4rem; color: #fff; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.slide-subtitle { font-size: 1.5rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; }

/* Tour Search Bar */
.search-bar-section {
    margin-top: -40px;
    position: relative;
    z-index: 20;
}
.search-bar-form {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
    border: 1px solid var(--card-border);
}
.search-input-wrapper {
    position: relative;
    flex: 1;
}
.search-input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.2rem;
}
.search-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition);
}
.search-input:focus { border-color: var(--primary); }
.search-btn { padding: 18px 40px; }

/* Live Search Results */
.live-search-results {
    position: absolute;
    top: calc(100% + 5px);
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none;
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
}
.live-search-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f3f4f6;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s;
}
.live-search-item:hover { background: #f9fafb; }
.live-search-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; margin-right: 15px; }

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.tours-grid-3 { grid-template-columns: repeat(3, 1fr); }

.tour-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--card-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.tour-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.tour-card:hover .tour-card-image img { transform: scale(1.05); }
.tour-airline {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #111;
}
.tour-airline img { height: 15px; width: auto; object-fit: contain; }
.tour-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tour-card-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.2s;
}
.tour-card:hover .tour-card-title { color: var(--primary); }
.tour-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}
.tour-card-meta i { color: var(--primary); margin-right: 5px; }
.tour-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 80px 0;
    color: #fff;
    text-align: center;
}
.cta-content { max-width: 800px; margin: 0 auto; }
.cta-content h2 { color: #fff; font-size: 2.5rem; margin-bottom: 20px; }
.cta-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* ================= TOURS DETAIL ================= */
.tour-detail-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.tour-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}
.tour-detail-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}
.tour-detail-hero-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}
.tour-detail-meta-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 1.1rem;
    align-items: center;
}
.tour-detail-meta-hero span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tour-detail-meta-hero i { color: #60a5fa; }
.tour-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 8px;
}

.tour-detail-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.tour-detail-main {
    flex: 1;
}
.tour-detail-sidebar {
    width: 350px;
    position: sticky;
    top: 100px;
}

.tour-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Tabs */
.tour-tabs {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
}
.tour-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--card-border);
    background: #f8fafc;
}
.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn.active {
    background: #fff;
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}
.tab-content {
    display: none;
    padding: 30px;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

/* Timeline */
.program-timeline {
    position: relative;
}
.program-day {
    margin-bottom: 20px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
}
.program-day-header {
    background: #f8fafc;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}
.program-day-header:hover { background: #f1f5f9; }
.program-day-header h3 { margin: 0; font-size: 1.1rem; color: var(--primary); }
.program-day-subtitle { font-size: 0.9rem; color: #64748b; margin-left: auto; margin-right: 15px; }
.program-day-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    line-height: 1.7;
}
.program-day.open .program-day-content {
    padding: 20px;
    max-height: 2000px;
    border-top: 1px solid var(--card-border);
}
.program-day i { transition: transform 0.3s; }
.program-day.open i { transform: rotate(180deg); }

.tour-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.services-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.services-header {
    padding: 15px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    transition: var(--transition);
}
.services-header:hover {
    background: #f1f5f9;
}
.services-header h3 {
    margin-bottom: 0 !important;
    font-size: 1.1rem;
}
.services-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}
.services-box.open .services-content {
    max-height: 2000px;
    padding: 25px;
    border-top: 1px solid var(--card-border);
    transition: all 0.5s ease-in-out;
}
.services-box .toggle-icon {
    transition: transform 0.3s;
    color: #64748b;
}
.services-box.open .toggle-icon {
    transform: rotate(180deg);
}
.services-box.included h3 i { color: #10b981; }
.services-box.excluded h3 i { color: #ef4444; }
.services-list ul { padding-left: 20px; }
.services-list li { margin-bottom: 10px; }

/* Sidebar Card */
.tour-sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}
.tour-sidebar-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--card-border);
}
.price-label { display: block; color: #64748b; font-size: 0.9rem; margin-bottom: 5px; }
.price-value { display: block; font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.tour-sidebar-info .info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-color);
}
.tour-sidebar-info i { color: var(--primary); width: 20px; text-align: center; }

/* ================= RESERVATION ================= */
.reservation-layout {
    display: flex;
    gap: 40px;
}
.reservation-form-area {
    flex: 1;
}
.reservation-summary-area {
    width: 380px;
}
.form-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.form-section-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--primary);
}
.participant-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}
.participant-card h4 { margin-bottom: 15px; font-size: 1.1rem; }
.form-help { color: #64748b; font-size: 0.85rem; display: block; margin-top: 5px; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}
.form-check-input { margin-top: 5px; }
.form-check-label { font-size: 0.95rem; line-height: 1.5; cursor: pointer; }

/* Summary Area */
.summary-card { position: sticky; top: 100px; }
.summary-card h3 { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--card-border); }
.summary-tour-info { margin-bottom: 25px; }
.summary-img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
.summary-tour-info h4 { font-size: 1.1rem; margin-bottom: 10px; }
.summary-price-breakdown {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}
.price-row { display: flex; justify-content: space-between; margin-bottom: 10px; color: #475569; }
.price-row.total { 
    margin-top: 15px; 
    padding-top: 15px; 
    border-top: 2px dashed #cbd5e1; 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--heading-color); 
}

/* ================= FOOTER ================= */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-logo img { height: 50px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-logo span { font-size: 1.8rem; font-weight: 800; color: #fff; display: block; margin-bottom: 20px; }
.footer-description { color: #9ca3af; line-height: 1.8; }
.footer-title { color: #fff; font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--primary); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #9ca3af; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact { list-style: none; margin-bottom: 25px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; color: #9ca3af; }
.footer-contact i { color: var(--primary); margin-top: 5px; }
.footer-contact a { color: #9ca3af; }
.footer-contact a:hover { color: #fff; }

.footer-social { display: flex; gap: 15px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: #fff;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-left p { color: #9ca3af; font-size: 0.9rem; }
.footer-bottom-right a { color: #9ca3af; font-size: 0.9rem; margin-left: 20px; }
.footer-bottom-right a:hover { color: #fff; }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* Modal & Miscellaneous */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.page-link { padding: 10px 15px; border: 1px solid var(--card-border); border-radius: 6px; background: var(--card-bg); font-weight: 500; }
.page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-link:hover:not(.active) { background: #f1f5f9; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ================= SKIP LINK ================= */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
}

/* ================= MOBILE MENU OVERLAY ================= */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}
.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    padding: 0;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #374151;
    padding: 5px;
}
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-list li a {
    display: block;
    padding: 15px 25px;
    color: var(--heading-color);
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}
.mobile-menu-list li a:hover {
    background: #f8fafc;
    color: var(--primary);
}

/* Logo Link */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heading-color);
}
.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    grid-column: 1 / -1;
}
.no-results i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d1d5db;
}

/* Reviews Cards */
.reviews-carousel { overflow: hidden; position: relative; }
.reviews-track { display: flex; gap: 30px; }
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
    min-width: 350px;
    flex-shrink: 0;
}
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 700;
}
.review-author { font-size: 1.1rem; margin-bottom: 3px; }
.review-date { font-size: 0.85rem; color: #6b7280; }
.star-rating { color: #fbbf24; font-size: 1.2rem; margin-bottom: 15px; }
.star-rating .star.filled { color: #fbbf24; }
.star-rating .star { color: #d1d5db; }
.review-text { color: var(--text-color); line-height: 1.7; margin-bottom: 15px; }
.review-google-link { color: var(--primary); font-weight: 500; font-size: 0.9rem; }

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 25px; }
.blog-card-title { font-size: 1.2rem; margin-bottom: 15px; }
.blog-card-title a { color: var(--heading-color); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { color: #6b7280; margin-bottom: 15px; line-height: 1.6; }
.blog-read-more { color: var(--primary); font-weight: 600; }

/* FAQ */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--card-border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-question {
    width: 100%; padding: 20px; background: var(--card-bg);
    border: none; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    text-align: left; font-family: inherit;
}
.faq-question h3 { font-size: 1.1rem; margin: 0; }
.faq-icon { transition: transform 0.3s; color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 20px 20px; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* HTML Content */
.html-content { line-height: 1.8; }
.html-content h2, .html-content h3 { margin: 30px 0 15px; }
.html-content p { margin-bottom: 15px; }
.html-content img { border-radius: 8px; }
.html-content ul, .html-content ol { padding-left: 25px; margin-bottom: 15px; }

