/**
 * @file    style.css
 * @desc    Referans Group Turizm - Özel stiller (Bootstrap 5 üzerine)
 * @author  Grand Hotel Web Projesi
 * @version 1.0.0
 *
 * RENK PALETİ:
 * - Koyu Lacivert (Primary): #0A1628
 * - Gold (Accent): #C9A84C
 * - Kırık Beyaz (Background): #F8F5F0
 * - Koyu Lacivert Açık: #122040
 * - Gold Hover: #D4B85E
 * - Gri Metin: #6c757d
 * - Açık Gri: #e9ecef
 */

/* ================================================================
   1. CSS DEĞİŞKENLERİ
   ================================================================ */
:root {
    /* Ana renkler */
    --navy: #0A1628;
    --navy-light: #122040;
    --navy-dark: #060e1a;
    --gold: #C9A84C;
    --gold-hover: #D4B85E;
    --gold-light: #f0e6c8;
    --cream: #F8F5F0;
    --cream-dark: #ede8e0;

    /* Metin renkleri */
    --text-primary: #0A1628;
    --text-secondary: #4a5568;
    --text-muted: #6c757d;
    --text-light: #a0aec0;
    --text-white: #ffffff;

    /* Arka planlar */
    --bg-white: #ffffff;
    --bg-light: #F8F5F0;
    --bg-section-alt: #f0ece6;

    /* Border */
    --border-color: #e2ddd6;
    --border-gold: #C9A84C;

    /* Shadow */
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 10px 30px rgba(10, 22, 40, 0.15);
    --shadow-gold: 0 4px 15px rgba(201, 168, 76, 0.3);

    /* Font */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transition */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ================================================================
   2. RESET VE TEMEL STİLLER
   ================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--gold-hover);
}

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

/* Seçim rengi */
::selection {
    background-color: var(--gold);
    color: var(--navy);
}

/* ================================================================
   3. RENK SINIFLARI
   ================================================================ */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-section-alt { background-color: var(--bg-section-alt) !important; }

/* ================================================================
   4. BUTON STİLLERİ
   ================================================================ */
.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-navy {
    background-color: var(--navy);
    color: var(--text-white);
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-navy:hover {
    background-color: var(--navy-light);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ================================================================
   5. ÜST BAR
   ================================================================ */
.top-bar {
    background-color: var(--navy-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.top-bar a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar-info i,
.top-bar-social i {
    font-size: 0.9rem;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-left: 6px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* ================================================================
   6. NAVBAR
   ================================================================ */
.navbar {
    padding: 10px 0;
    transition: var(--transition);
    z-index: 1050;
    background-color: var(--navy) !important;
}

.navbar.scrolled {
    padding: 6px 0;
    box-shadow: var(--shadow-md);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Navbar Brand & Logo */
.site-logo {
    width: auto;
    object-fit: contain;
}

.site-logo-header {
    height: 80px;
    max-width: 300px;
    border-radius: var(--radius-sm);
}

.site-logo-footer {
    max-height: 100px;
    max-width: 280px;
    border-radius: var(--radius-sm);
}

.navbar-brand {
    padding: 2px 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.brand-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
}

.logo-icon {
    font-size: 1.8rem;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 10px 0;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--cream);
    color: var(--gold);
}

/* ================================================================
   7. HERO SECTION
   ================================================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.85) 0%,
        rgba(10, 22, 40, 0.65) 50%,
        rgba(10, 22, 40, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content h4,
.hero-content h5,
.hero-content h6,
.hero-content p,
.hero-content span,
.hero-content div {
    color: #ffffff !important;
}

.hero-badge {
    background-color: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    color: #ffffff !important;
    opacity: 0.95;
    line-height: 1.8;
}

.min-vh-75 {
    min-height: 75vh;
}

.quick-booking-card {
    border-top: 4px solid var(--gold);
}

.card-title {
    font-family: var(--font-heading);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.animate-bounce {
    animation: bounce 2s ease infinite;
}

/* Hero Görsel Animasyonları */
.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.hero-image-card {
    position: relative;
    overflow: hidden;
}

.hero-image-card img {
    height: 380px;
    object-fit: cover;
}

.hero-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.hero-image-card:hover::before {
    left: 100%;
}

.hero-img-animate {
    animation: float-image 6s ease-in-out infinite;
}

@keyframes float-image {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ================================================================
   8. SECTION STİLLERİ
   ================================================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 10px;
    position: relative;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px auto 30px;
    border: none;
}

.section-divider-left {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px 0 30px;
    border: none;
}

/* ================================================================
   9. ÖZELLİK KARTLARI (Features)
   ================================================================ */
.feature-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--navy);
}

.feature-card h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

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

/* ================================================================
   10. BLOG KARTLARI
   ================================================================ */
.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--navy);
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-link:hover {
    color: var(--navy);
    letter-spacing: 2px;
}

/* ================================================================
   11. GALERİ STİLLERİ
   ================================================================ */
.gallery-filter {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-filter .btn {
    margin: 4px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    background-color: transparent;
    transition: var(--transition);
}

.gallery-filter .btn:hover,
.gallery-filter .btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h6 {
    color: var(--text-white);
    font-family: var(--font-heading);
    margin: 0;
}

/* ================================================================
   12. İLETİŞİM STİLLERİ
   ================================================================ */
.contact-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-card-icon i {
    font-size: 1.4rem;
    color: var(--navy);
}

.contact-card h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

.contact-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--gold);
}

/* ================================================================
   13. SAYFA BAŞLIĞI (Page Header / Breadcrumb)
   ================================================================ */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,168,76,0.05)" stroke-width="1"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.page-header .breadcrumb {
    margin-bottom: 0;
    background: none;
    padding: 0;
}

.page-header .breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ================================================================
   14. HAKKIMIZDA SAYFASI STİLLERİ
   ================================================================ */
.about-content {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-content p {
    margin-bottom: 20px;
}

.vision-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.vision-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vision-card .icon-wrapper i {
    font-size: 1.8rem;
    color: var(--navy);
}

/* Sayaç Animasyonu */
.counter-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================================================
   15. FORM STİLLERİ
   ================================================================ */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--cream);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.25);
    background-color: var(--bg-white);
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

/* Alert mesajları */
.alert-success-custom {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: var(--radius-sm);
    padding: 15px 20px;
}

.alert-error-custom {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: var(--radius-sm);
    padding: 15px 20px;
}

/* ================================================================
   16. BLOG DETAY SAYFASI
   ================================================================ */
.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.blog-detail-content h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-detail-content ul li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.sidebar-widget h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.blog-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.blog-nav-link:hover {
    color: var(--gold);
}

.blog-nav-link .nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.blog-nav-link .nav-title {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ================================================================
   17. SAYFALAMA (Pagination)
   ================================================================ */
.pagination .page-link {
    color: var(--navy);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    margin: 0 3px;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.pagination .page-item.active .page-link {
    background-color: var(--navy);
    border-color: var(--navy);
    color: var(--text-white);
}

/* ================================================================
   18. WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float i {
    font-size: 1.8rem;
    color: white;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ================================================================
   19. FOOTER STİLLERİ
   ================================================================ */
.footer {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

/* Footer içindeki tüm yazıları beyaz yap */
.footer p,
.footer span,
.footer li,
.footer small {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer p.text-muted,
.footer span.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-contact i {
    margin-top: 3px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* ================================================================
   20. İLAN KARTLARI
   ================================================================ */
.ilan-card {
    background: var(--bg-white);
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(10, 22, 40, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.ilan-card:hover,
.ilan-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: 0 20px 45px rgba(10, 22, 40, 0.15);
}

.ilan-card-img {
    position: relative;
    aspect-ratio: 16 / 11;
    min-height: 210px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f5ec, #e8eef3);
}

.ilan-card-img img,
.ilan-card-img .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ilan-card-img img {
    transition: transform 0.35s ease;
}

.ilan-card:hover .ilan-card-img img {
    transform: scale(1.04);
}

.ilan-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.18);
}

.ilan-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.ilan-card-konum {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    color: var(--gold-hover);
    background: rgba(201, 168, 76, 0.11);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ilan-card-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    line-height: 1.35;
    margin-bottom: 14px;
    min-height: 3.1rem;
}

.ilan-card-title a {
    color: var(--navy);
    text-decoration: none;
}

.ilan-card-title a:hover,
.ilan-card-title a:focus {
    color: var(--gold-hover);
}

.ilan-card-ozellikler {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.ilan-card-ozellikler span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: 999px;
    color: #4d5968;
    background: #f7f8fa;
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 600;
}

.ilan-card-fiyat {
    border-top: 1px solid rgba(10, 22, 40, 0.08);
    padding-top: 16px;
    margin-top: auto;
}

.fiyat {
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 800;
}

.fiyat-label {
    color: #586473;
    font-size: 0.88rem;
    font-weight: 600;
}

.bg-navy .text-muted,
.cta-section .text-muted,
.sidebar-widget.bg-navy .text-muted {
    color: rgba(255, 255, 255, 0.78) !important;
}

/* ================================================================
   21. RESPONSIVE TASARIM
   ================================================================ */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        display: block;
        padding: 0 0 48px;
        background-color: var(--navy);
    }

    .hero-section [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-section > .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-layout {
        min-height: auto;
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-layout > * {
        min-width: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-media-col {
        order: 1;
    }

    .hero-copy-col {
        order: 2;
        padding: 30px 24px 0 !important;
    }

    .hero-bg {
        background-attachment: scroll;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 22, 40, 0.12) 0%,
            rgba(10, 22, 40, 0.88) 44%,
            var(--navy) 100%
        );
    }

    .hero-image-wrapper {
        margin: 0;
    }

    .hero-image-glow,
    .hero-image-card::before {
        display: none;
    }

    .hero-image-card {
        border-radius: 0 0 26px 26px !important;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24) !important;
    }

    .hero-image-card img {
        height: clamp(260px, 52vw, 360px);
        object-position: center 58%;
    }

    .hero-img-animate {
        animation: none;
    }

    .hero-title {
        font-size: clamp(2rem, 5.8vw, 2.65rem);
        line-height: 1.08;
        margin-bottom: 16px !important;
    }

    .hero-desc {
        max-width: 640px;
        margin-bottom: 22px !important;
        line-height: 1.65;
    }

    .hero-badge {
        max-width: 100%;
        padding: 7px 14px;
        border-radius: 999px;
        font-size: 0.74rem;
        letter-spacing: 0.6px;
        white-space: normal;
    }

    .hero-buttons {
        gap: 12px !important;
        width: 100%;
    }

    .hero-buttons .btn {
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
    }

    .scroll-indicator {
        display: none;
    }

    .quick-booking-card {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .counter-number {
        font-size: 2.2rem;
    }

    .navbar-collapse {
        background-color: var(--navy-light);
        border-radius: var(--radius-sm);
        padding: 15px;
        margin-top: 10px;
        box-shadow: var(--shadow-md);
    }

    .navbar-collapse .nav-link {
        display: inline-flex;
        width: auto;
    }

    .navbar-collapse .nav-link::after {
        bottom: 2px;
    }

    .site-logo-header {
        height: 60px;
        max-width: 220px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-bottom: 34px;
    }

    .hero-copy-col {
        padding: 26px 18px 0 !important;
    }

    .hero-copy-col > .hero-badge,
    .hero-copy-col .hero-title,
    .hero-copy-col .hero-desc,
    .hero-copy-col .hero-buttons {
        width: calc(100vw - 36px);
        max-width: calc(100vw - 36px);
    }

    .hero-image-card {
        border-radius: 0 0 22px 22px !important;
    }

    .hero-image-card img {
        height: clamp(230px, 64vw, 300px);
    }

    .hero-title {
        font-size: clamp(2rem, 9.8vw, 2.35rem);
    }

    .hero-title .text-gold {
        display: block;
    }

    .hero-desc {
        font-size: 0.96rem;
        line-height: 1.62;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .top-bar {
        display: none;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .hero-copy-col {
        padding: 24px 16px 0 !important;
    }

    .hero-copy-col > .hero-badge,
    .hero-copy-col .hero-title,
    .hero-copy-col .hero-desc,
    .hero-copy-col .hero-buttons {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .blog-navigation {
        flex-direction: column;
    }
}

/* ================================================================
   22. ANIMASYONLAR
   ================================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to top butonu */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--navy);
    color: var(--text-white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.scroll-top:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* ================================================================
   23. YARDIMCI SINIFLAR
   ================================================================ */
.text-gold-hover:hover {
    color: var(--gold-hover) !important;
}

.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 22, 40, 0.7);
}

.border-gold {
    border-color: var(--gold) !important;
}

.shadow-gold {
    box-shadow: var(--shadow-gold);
}

/* Placeholder görsel */
.placeholder-img {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid var(--border-color);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
