/* --- VARIABLES & BASE STYLES --- */
:root {
    --color-dark: #0a0a0a;
    --color-gray: #1a1a1a;
    --color-light-gray: #2a2a2a;
    --color-yellow: #fbbf24;
    --color-text: #f9fafb;
    --color-text-muted: #9ca3af;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-green: #25d366;
    --color-accent: #f59e0b;
    --color-blue: #3b82f6;
    --radius: 0.75rem;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray) 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--gradient-dark);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.primary-color {
    color: var(--color-yellow);
}

/* --- UTILITY & REUSABLE CLASSES --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Mobil cihazlarda öğeleri gizlemek için utility class */
@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }
}

.section {
    padding: 5rem 0;
}

.section.bg-gray {
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-dark) 100%);
    position: relative;
}

.section.bg-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-black);
    box-shadow: var(--shadow-medium);
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: rgba(251, 191, 36, 0.1);
    color: var(--color-yellow);
    border: 2px solid var(--color-yellow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.full-width {
    width: 100% !important;
}


.mt-30 {
    margin-top: 222px;
}

/* --- HEADER --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

#header.sticky {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo .icon {
    color: var(--color-yellow);
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.3));
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--color-yellow);
}

.mobile-menu-btn {
    background: none;
    border: 1px solid var(--color-light-gray);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--color-gray);
    padding: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--color-text);
    text-decoration: none;
    padding: 0.75rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.mobile-nav a:hover {
    color: var(--color-yellow);
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%),
        url("upload/slider/slider (1).jpg") no-repeat center center / cover;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.hero-content p {
    font-size: 1.375rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* --- SLIDER SECTION --- */
.slider-section {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-heavy);
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.3) 0%, transparent 50%, rgba(251, 191, 36, 0.1) 100%);
    pointer-events: none;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.8);
    color: var(--color-yellow);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(251, 191, 36, 0.9);
    color: var(--color-black);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dot.active {
    background: var(--color-yellow);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

/* --- GALLERY SECTION --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.7) 0%, transparent 50%, rgba(251, 191, 36, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.8);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-yellow);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow-heavy);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(251, 191, 36, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-yellow);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--color-yellow);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --- MAP SECTION --- */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-heavy);
    margin-top: 2rem;
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-track .testimonial-card {
    min-width: 100%;
    background: rgba(26, 26, 26, 0.9);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    text-align: center;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars span {
    color: var(--color-yellow);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.testimonials-track .testimonial-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonials-track .testimonial-content p::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 3rem;
    color: var(--color-yellow);
    font-family: serif;
    opacity: 0.3;
}

.testimonials-track .testimonial-content p::after {
    content: '"';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 3rem;
    color: var(--color-yellow);
    font-family: serif;
    opacity: 0.3;
}

.testimonials-track .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-yellow);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.testimonials-track .testimonial-author h4 {
    color: var(--color-yellow);
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonials-track .testimonial-author span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(251, 191, 36, 0.2);
    color: var(--color-yellow);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.testimonial-nav-btn:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    border-color: var(--color-yellow);
    transform: scale(1.1);
}

/* --- BOOKING FORM IMPROVEMENTS --- */
.booking-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.9);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(20px);
    position: relative;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    border-radius: var(--radius);
    pointer-events: none;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid rgba(251, 191, 36, 0.2);
    color: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

/* --- FORM MESSAGE STYLES --- */
.form-message {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* --- BRANCHES IMPROVEMENTS --- */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.branch-card {
    background: rgba(26, 26, 26, 0.9);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(251, 191, 36, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 1;
}

.branch-card>* {
    position: relative;
    z-index: 2;
}

/* --- ABOUT IMPROVEMENTS --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius);
    margin: 0 auto;
    display: block;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.1;
}

/* --- FOOTER IMPROVEMENTS --- */
.footer {
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-dark) 100%);
    padding-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--color-yellow);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    background: rgba(10, 10, 10, 0.5);
}

/* --- SOCIAL LINKS --- */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.1);
    color: var(--color-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 191, 36, 0.2);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

/* --- FLOATING BUTTONS --- */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--color-green) 0%, #20b358 100%);
    padding: 4px;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20b358 0%, var(--color-green) 100%);
}

.back-to-top-btn {
    background: var(--gradient-primary);
    color: var(--color-black);
    display: none;
}

.back-to-top-btn.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-gray);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-branch-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.branch-details p {
    margin-bottom: 0.8rem;
    color: var(--color-light);
    line-height: 1.6;
}

.branch-details strong {
    color: var(--color-white);
    font-weight: 600;
}

.branch-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* --- BOOKING SECTION YENİ DÜZEN --- */
.booking-section-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-img {
    width: 100%;
    max-width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    position: relative;
    filter: brightness(0.4) contrast(1.1);
}

.booking-img:hover {
    transform: scale(1.05);
    filter: brightness(1) contrast(1);
}

@media (min-width: 768px) {
    .modal-branch-info {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .modal-content {
        max-width: 800px;
    }
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 768px) {
    .booking-section-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-images {
        order: 2;
    }

    .booking-form-container {
        order: 1;
    }

    .booking-img {
        max-width: 250px;
        height: 280px;
        filter: brightness(0.4) contrast(1.1);
    }

    .booking-img:hover {
        filter: brightness(1) contrast(1);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .floating-buttons {
        bottom: 1rem;
        padding: 0 1rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: -50px;
    }

    .lightbox-next {
        right: -50px;
    }

    .booking-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (min-width: 1024px) {

    .mobile-menu-btn,
    .mobile-nav {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }

    .section-title h2 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .hero-content h1 {
        font-size: 5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}