/* CSS Reset and Normalize */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    position: relative;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    color: var(--text-primary);
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

/* CSS Variables */
:root {
    /* Colors */
    --primary-orange: #2c3e50;
    --secondary-orange: #34495e;
    --yellow: #3498db;
    --blue: #3498db;
    --dark-blue: #2980b9;
    --black: #2c3e50;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --dark-gray: #333333;
    --error-red: #e74c3c;
    --success-green: #2ecc71;
    --warning-yellow: #f1c40f;
    --gradient-start: #f6f9fc;
    --gradient-end: #edf2f7;
    --card-bg: rgba(255, 255, 255, 0.95);
    --header-bg: rgba(255, 255, 255, 0.98);
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-primary: 'Arial', sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-index */
    --z-negative: -1;
    --z-elevate: 1;
    --z-sticky: 100;
    --z-drawer: 200;
    --z-modal: 300;
    --z-popover: 400;
    --z-toast: 500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    color: var(--text-primary);
}

/* Header Styles */
header {
    position: fixed;
    top: 38px; /* Topbar height */
    left: 0;
    width: 100%;
    background: #232946; /* Tam opak arka plan */
    padding: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
    border-bottom: none;
}

header.scroll-down {
    background: #232946; /* Tam opak arka plan */
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    background: transparent;
    min-height: 72px; /* Header'ın minimum yüksekliğini belirleyelim */
}

.logo {
    margin-right: 3rem;
    margin-left: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    width: 300px;
    margin-left: 0;
}

.logo-icon {
    position: absolute;
    left: -50px;
    color: var(--yellow);
    font-size: 2rem;
    animation: carDrive 3s linear infinite;
}

.logo-icon i {
    color: var(--yellow);
    text-shadow: 0 0 12px var(--yellow), 0 0 24px var(--yellow);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes carDrive {
    0% {
        left: -50px;
    }
    100% {
        left: 250px;
    }
}

@keyframes logoGlow {
    0% {
        text-shadow: 0 0 8px var(--yellow), 0 0 16px var(--yellow);
    }
    100% {
        text-shadow: 0 0 24px var(--yellow), 0 0 48px var(--yellow);
    }
}

.logo-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-sub {
    font-size: 1.3rem;
    color: var(--yellow);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    header {
        top: 38px !important;
        padding: 0;
        margin-top: 0;
    }

    .nav-links {
        position: fixed;
        top: 38px; /* Topbar yüksekliği kadar */
        left: -100%;
        width: auto;
        min-width: 200px;
        max-width: none;
        height: calc(100vh - 38px); /* Topbar yüksekliği kadar alanı kapla */
        background: rgba(35, 41, 70, 0.95);
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.2rem 1.5rem;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: left 0.3s ease;
        white-space: nowrap;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 0;
    }
    /* Hero Section Mobil Padding */
    .hero {
        padding-top: 110px; /* Mobil görünümde de aynı padding */
    }

    .logo-container {
        padding: 0.4rem;
        margin-left: 0.5rem;
        gap: 1rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 1.4rem;
    }

    .logo-main {
        font-size: 1.4rem;
    }

    .logo-sub {
        font-size: 1rem;
    }
}

/* Update existing logo styles */
.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.nav-links a:hover::after {
    width: 80%;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slider-navigation {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .prev-slide,
    .next-slide {
        padding: 0.8rem 1.2rem;
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 110px);
    background: url('@resim1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    margin-top: 0;
    z-index: 1;
    padding-top: 110px; /* Yeni padding-top */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    display: block;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.hero-buttons .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: #3498db;
    color: #fff;
    border: 2px solid #3498db;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .cta-button:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* About Section */
.about {
    background: #fff !important;
    color: #232946 !important;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    border: 1.5px solid #e2e8f0;
    padding: 2rem 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    margin-top: 64px;
    padding-top: 110px;
}

.about h2 {
    text-align: center;
    color: #3498db !important;
    margin-bottom: 0.8rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
}

.about-text {
    background: rgba(255,255,255,0.07);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(44,62,80,0.06);
    animation: fadeIn 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: box-shadow 0.3s, background 0.3s;
}

.about-text p {
    color: #232946 !important;
    font-size: 1.18rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    overflow: visible;
    animation: fadeInUp 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .about {
        padding: 1.2rem 0.5rem;
        border-radius: 12px;
        margin-top: 2.5rem; /* Menü ile about arası boşluk */
        padding-top: 110px;
    }
    .about h2 {
        font-size: 1.7rem;
    }
    .about-text {
        padding: 1rem 0.5rem;
    }
    .about-text p {
        font-size: 1rem;
    }
}

/* Tours Section */
.tours {
    padding: 5rem 2rem;
}

.tours h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
}

.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.1);
}

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

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-card h3 {
    padding: 1rem;
    color: var(--black);
}

.tour-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

/* Gallery Section */
.gallery-section h2 {
    color: #3498db !important;
    text-align: center;
    margin-bottom: 0.8rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
}
.gallery-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-preview {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    opacity: 1;
}

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

.gallery-button {
    padding: 0.8rem 1.5rem;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-button:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.gallery-button i {
    font-size: 1.1rem;
}

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
}

.gallery-modal.show {
    display: block;
}

.gallery-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

/* Scrollbar Styling */
.gallery-grid::-webkit-scrollbar {
    width: 10px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 5px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #ffed4a;
}

/* Contact Section */
.contact {
    padding: 2rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    background: #fff !important;
    color: #232946 !important;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    border: 1.5px solid #e2e8f0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.contact h2 {
    text-align: center;
    color: #3498db !important;
    margin-bottom: 0.8rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--yellow);
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--yellow);
    font-size: 1.5rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--yellow);
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--yellow);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #232946 !important;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.contact-item p:last-child {
    margin-bottom: 0;
}

.contact-info .social-links {
    display: flex !important;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    animation: fadeInSocial 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-info .social-links a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f3f6fa;
    border-radius: 50%;
    color: #3498db;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    opacity: 0;
    transform: scale(0.7);
    animation: fadeInIcon 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.contact-info .social-links a:hover {
    background: #3498db;
    color: #fff;
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 6px 18px rgba(52,152,219,0.18);
}

/* Instagram ve WhatsApp ikonları için özel stil */
.contact-info .social-links a i.fab.fa-instagram,
.contact-info .social-links a i.fab.fa-whatsapp {
    color: #3498db;
}

.contact-info .social-links a:hover i.fab.fa-instagram,
.contact-info .social-links a:hover i.fab.fa-whatsapp {
    color: #ffffff;
}

@keyframes fadeInSocial {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInIcon {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.08);
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #000000 !important;
    background-color: #ffffff !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #ffffff !important;
    color: #000000 !important;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
    color: #000000 !important;
    background-color: #ffffff !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666666 !important;
}

.contact-form .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-form .submit-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact {
        padding: 1rem;
        margin: 1rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info,
    .contact-form {
        padding: 1rem;
    }

    .contact-item {
        gap: 0.8rem;
    }

    .contact-info .social-links {
        gap: 1rem;
    }

    .contact-info .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Footer */
footer {
    background: #232946;
    color: #fff;
    padding: 2rem 0;
    border-top: 1.5px solid #e2e8f0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    color: #3498db;
    transform: scale(1.15);
}

#backToTop {
    position: fixed;
    right: 24px;
    bottom: 32px;
    width: 48px;
    height: 48px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(44,62,80,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2000;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#backToTop:not(.show) {
    transform: translateY(40px);
}

section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Remove social links styles */
.social-links {
    display: none;
}

.social-links a {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
        top: 38px !important; /* Topbar yüksekliği kadar */
    }
    
    .nav-links {
        position: fixed;
        top: 38px;
        left: -100%;
        width: auto;
        min-width: 200px;
        max-width: none;
        height: calc(100vh - 38px);
        background: rgba(35, 41, 70, 0.95);
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.2rem 1.5rem;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: left 0.3s ease;
        white-space: nowrap;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 0;
    }
    .nav-links.active {
        left: 0;
        animation: slideIn 0.3s ease forwards;
    }
}

@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Loading Animation */
img {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

img.loaded {
    opacity: 1;
}

/* Section Headers */
section h2 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-orange), var(--yellow));
}

/* Tour Cards Enhancement */
.tour-card {
    position: relative;
    overflow: hidden;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.tour-card:hover::before {
    opacity: 0.1;
}

/* Contact Form Enhancement */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.gallery-preview-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.gallery-preview-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s;
    opacity: 1;
}

.gallery-preview-grid .gallery-item img:hover {
    transform: scale(1.08);
}

.gallery-preview-grid .cta-button {
    height: 38px;
    font-size: 0.95rem;
    padding: 0 1rem;
    min-width: 0;
    border-radius: 6px;
    margin-left: 0.5rem;
    margin-top: 0;
    box-shadow: none;
}

.gallery-preview-grid .cta-button:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44, 62, 80, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.gallery-modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.gallery-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--black);
    cursor: pointer;
    z-index: 10;
}

.gallery-modal .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-modal .gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: block;
}

@media (max-width: 768px) {
    .gallery-modal-content {
        padding: 0.5rem;
    }
    .gallery-modal .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    .gallery-preview-grid .gallery-item img {
        width: 60px;
        height: 45px;
    }
}

.reservation {
    padding: 3rem 2rem;
    background: #fff !important;
    color: #232946 !important;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    border: 1.5px solid #e2e8f0;
    margin: 2rem auto;
    max-width: 1200px;
}

.reservation h2 {
    text-align: center;
    color: #3498db !important;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
}

.reservation h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--yellow);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    margin: 1rem auto;
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.status-text {
    font-weight: 500;
    color: var(--yellow);
    font-size: 1.1rem;
}

.status-icon {
    font-size: 1.4rem;
}

.status-icon.pending i {
    color: var(--yellow);
}

.status-icon.available i {
    color: #2ecc71;
}

.status-icon.unavailable i {
    color: #e74c3c;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--yellow);
    color: var(--black);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

#reservationForm {
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.form-box:hover {
    box-shadow: 0 4px 12px var(--shadow-color);
    border-color: var(--primary-orange);
}

.form-box label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
}

.form-box select,
.form-box input {
    background: #f3f6fa;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.03);
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-box select:focus,
.form-box input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb33;
    outline: none;
}

.form-box select option {
    background: #fff;
    color: #22223b;
    font-size: 1rem;
}

#reservationForm .cta-button {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

#reservationForm .cta-button:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .reservation {
        padding: 2rem 1rem;
        margin: 1rem;
    }

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

    .form-box {
        padding: 1rem 0.7rem;
    }

    .status-indicator {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
        text-align: center;
        margin: 1rem auto;
    }
}

/* Gallery Modal Styles */
.gallery-modal .gallery-item {
    background-color: rgba(255, 255, 255, 0.1);
}

.gallery-modal .gallery-item img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-modal .gallery-item img.loaded {
    opacity: 1;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    position: relative;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1101;
    padding: 0.4rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.8);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 38px;
        left: -100%;
        width: auto;
        min-width: 200px;
        max-width: none;
        height: calc(100vh - 38px);
        background: rgba(35, 41, 70, 0.95);
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.2rem 1.5rem;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: left 0.3s ease;
        white-space: nowrap;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 0;
    }

    .nav-links.active {
        left: 0;
        animation: slideIn 0.3s ease forwards;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: left;
        color: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(52, 152, 219, 0.1);
        color: #3498db;
        transform: translateX(5px);
    }
}

@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}

@media (max-width: 480px) {
    .topbar-contact {
        gap: 1rem;
        padding-right: 0.5rem;
    }

    .topbar-link {
        padding: 0.4rem;
    }

    .topbar-link i {
        font-size: 1.3rem;
    }
}

/* Animations for main sections */
.reservation, .gallery-section, .contact {
    animation: fadeInSection 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInSection {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.balloon-anim {
    animation: balloonFloat 2.8s ease-in-out infinite alternate, balloonGlow 2.2s ease-in-out infinite alternate;
}
@keyframes balloonFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes balloonGlow {
    0% { filter: drop-shadow(0 0 0px #fff) drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }
    100% { filter: drop-shadow(0 0 12px #fff) drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }
}

/* Topbar-contact düzenlemesi */
.topbar-contact {
    width: 100%;
    background: #232946;
    border-bottom: none;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    color: #ffffff;
    z-index: 1100;
    position: fixed;
    top: 0;
    left: 0;
    height: 38px; /* Topbar yüksekliğini belirledik */
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    /* Topbar ikonlarındaki yuvarlak arka planı kaldırıyoruz */
    background: none;
    padding: 0;
    border-radius: 0;
}

.topbar-link:hover {
    color: #3498db;
    transform: scale(1.1);
}

.topbar-link i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #3498db;
    transition: all 0.3s ease;
    /* Topbar ikonlarındaki yuvarlak arka plan ve padding kaldırıldı */
    background: none;
    padding: 0;
    border-radius: 0;
}

.topbar-link:hover i {
    transform: scale(1.1);
}

.topbar-text {
    display: inline-block;
}

@media (max-width: 768px) {
    .topbar-contact {
        padding: 0.3rem 0;
        gap: 1.5rem;
        justify-content: flex-end;
        padding-right: 1rem;
    }

    .topbar-text {
        display: none;
    }

    .topbar-link {
        padding: 0.5rem;
    }

    .topbar-link i {
        font-size: 1.2rem;
        margin: 0;
    }

    /* Mobil görünümde yazı rengini düzeltme */
    .contact-form input,
    .contact-form textarea {
        color: #000000 !important;
        background-color: #ffffff !important;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #666666 !important;
    }

    .form-box input,
    .form-box textarea {
        color: #000000 !important;
        background-color: #ffffff !important;
    }

    .form-box input::placeholder,
    .form-box textarea::placeholder {
        color: #666666 !important;
    }
}

@media (max-width: 480px) {
    .topbar-contact {
        gap: 1rem;
        padding-right: 0.5rem;
    }

    .topbar-link {
        padding: 0.4rem;
    }

    .topbar-link i {
        font-size: 1.1rem;
    }
}

/* Modern Dil Seçici Butonu */
.language-selector {
    position: relative;
    display: inline-block;
    min-width: 90px;
    margin-left: 1rem;
}

.language-selector select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #232946;
    color: #fff;
    border: 1.5px solid #3498db;
    border-radius: 999px;
    padding: 0.45rem 2.2rem 0.45rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    outline: none;
}

.language-selector select:focus {
    border-color: #ffd700;
    background: #34495e;
}

.language-selector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.2rem;
    width: 0.8em;
    height: 0.8em;
    pointer-events: none;
    background: url('data:image/svg+xml;utf8,<svg fill="white" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat center center/contain;
    transform: translateY(-50%);
}

.language-selector select option {
    background: #232946;
    color: #fff;
    font-size: 1rem;
}

/* Mobilde daha küçük ve tam genişlik */
@media (max-width: 600px) {
    .language-selector {
        min-width: 70px;
        margin-left: 0.5rem;
    }
    .language-selector select {
        font-size: 0.95rem;
        padding: 0.35rem 2rem 0.35rem 1rem;
    }
}

/* Fiyat Bilgisi Stilleri */
.price-estimate {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.price-estimate h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-details p {
    display: flex;
    justify-content: space-between;
    color: #4a5568;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-details .total-price {
    font-weight: 600;
    color: #2d3748;
    font-size: 1.1rem;
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

/* Form İyileştirmeleri */
.form-box.full-width {
    grid-column: 1 / -1;
}

.form-box textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.8rem;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    background: #f3f6fa;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-box textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb33;
    outline: none;
}

.form-box input[type="tel"] {
    font-family: monospace;
}

/* Form Animasyonları */
.form-box {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-box:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Rezervasyon sosyal medya ikonları */
.reservation-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    /* animation: fadeInSocial 1.2s cubic-bezier(0.23, 1, 0.32, 1); */ /* Animasyonu kaldırabiliriz, isteğe bağlı */
    border-bottom: none;
    width: 100%;
}

.reservation-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f3f6fa;
    border-radius: 50%;
    color: #3498db; /* İkon rengi */
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    /* opacity: 1; */ /* İkonlar zaten görünür olmalı, animasyonla çakışıyor olabilir */
    /* transform: scale(1); */ /* İkon boyutu zaten 1.5rem */
    /* animation: fadeInIcon 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards; */ /* Animasyonu kaldırabiliriz, isteğe bağlı */
    border-bottom: none;
    margin: 0 0.5rem; /* İkonlar arasına boşluk */
}

.reservation-social-links a i {
    font-size: 1.5rem; /* İkon boyutu */
    color: inherit; /* Parent elementten rengi alsın */
    transition: all 0.3s ease;
}

.reservation-social-links a:hover i {
    color: #ffffff; /* Hover rengi */
}

@media (max-width: 768px) {
    .reservation-social-links {
        gap: 1rem;
        margin-top: 1.5rem;
        justify-content: center;
    }
    
    .reservation-social-links a {
        width: 40px; /* Mobil boyut */
        height: 40px; /* Mobil boyut */
        font-size: 1.2rem; /* Mobil ikon boyutu */
        margin: 0 0.4rem; /* Mobil ikonlar arasına boşluk */
    }

    .reservation-social-links a i {
        font-size: 1.2rem; /* Mobil ikon boyutu */
    }
}

/* Modern Icon Styles */
.fas, .far, .fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
    line-height: 1;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 1.5rem;
    color: #170675;
    margin-right: 1rem;
    transition: all 0.3s ease;
    background: rgba(23, 6, 117, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    background: rgba(23, 6, 117, 0.15);
}

.social-links a i {
        font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
}

.social-links a:hover i {
    transform: scale(1.1) translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover i {
    transform: scale(1.1);
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin-left: 0.5rem;
}

.status-icon i {
    font-size: 1.4rem;
}

.status-icon.pending {
    background: rgba(23, 6, 117, 0.1);
}

.status-icon.pending i {
    color: #170675;
}

.status-icon.available {
    background: rgba(46, 204, 113, 0.1);
}

.status-icon.available i {
    color: #2ecc71;
}

.status-icon.unavailable {
    background: rgba(231, 76, 60, 0.1);
}

.status-icon.unavailable i {
    color: #e74c3c;
}

/* Hover efektleri */
.status-icon:hover {
    transform: scale(1.1);
}

.status-icon.pending:hover {
    background: rgba(23, 6, 117, 0.15);
}

.status-icon.available:hover {
    background: rgba(46, 204, 113, 0.15);
}

.status-icon.unavailable:hover {
    background: rgba(231, 76, 60, 0.15);
}