/* =====================================================
   ADEN GARDEN OTEL - Ana Stylesheet
   ===================================================== */

/* ===== CSS DEĞİŞKENLERİ ===== */
:root {
    --primary: #5a7247;
    --primary-dark: #3d5230;
    --primary-light: #7a9965;
    --secondary: #c9a96e;
    --secondary-dark: #a68a4f;
    --accent: #8b6914;
    --bg-light: #f8f5f0;
    --bg-cream: #faf8f4;
    --bg-dark: #2c3e2d;
    --text-dark: #2d2d2d;
    --text-body: #555555;
    --text-light: #888888;
    --white: #ffffff;
    --border: #e8e4de;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
}

/* ===== RESET & GENEL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--bg-dark);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-bar-left span {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-left i {
    color: var(--secondary);
    margin-right: 5px;
}

.top-bar-right a {
    margin-left: 15px;
    font-size: 15px;
}

/* ===== HEADER / NAVBAR ===== */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
    z-index: -1;
    transition: var(--transition);
    opacity: 1;
}

.header-area.scrolled::before {
    opacity: 0;
}

.header-area .navbar {
    padding: 15px 0;
    background: transparent;
    transition: var(--transition);
}

.header-area.scrolled .navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.header-area.scrolled .top-bar {
    margin-top: -50px;
}

/* Logo */
.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 65px;
    transition: var(--transition);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.header-area.scrolled .navbar-brand img {
    height: 50px;
    filter: none;
}

.logo-dark {
    display: none;
}

.header-area.scrolled .logo-light {
    display: none;
}

.header-area.scrolled .logo-dark {
    display: inline-block;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.header-area.scrolled .navbar-nav .nav-link {
    text-shadow: none;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

.header-area.scrolled .navbar-nav .nav-link {
    color: var(--text-dark);
}

.header-area.scrolled .navbar-nav .nav-link:hover,
.header-area.scrolled .navbar-nav .nav-link.active {
    color: var(--primary);
}

.header-area.scrolled .navbar-nav .nav-link::after {
    background: var(--primary);
}

/* Nav CTA Button */
.btn-nav-call {
    background: var(--secondary);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    margin-left: 15px;
    border: none;
}

.btn-nav-call:hover {
    background: var(--secondary-dark);
    color: var(--white);
}

.btn-nav-call i {
    margin-right: 5px;
}

/* Hamburger */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
}

.header-area.scrolled .navbar-toggler {
    border-color: var(--primary);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-area.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2890, 114, 71, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SLIDER ===== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-section .swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-content .subtitle {
    display: inline-block;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.hero-content h1 {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 800px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-content .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
}

.hero-content .btn-hero:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-section .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 30px;
    border-radius: 6px;
}

/* ===== HAKKINDA BÖLÜMÜ (Ana Sayfa) ===== */
.about-section {
    background: var(--white);
}

.about-section .about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-section .about-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-section .about-img .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.about-section .about-img .experience-badge .number {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
    display: block;
    line-height: 1;
}

.about-section .about-img .experience-badge .text {
    font-size: 13px;
    margin-top: 5px;
}

.about-section .about-text .subtitle {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.about-section .about-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-section .about-text p {
    margin-bottom: 25px;
}

.about-section .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.about-section .about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section .about-features .feature-item i {
    color: var(--primary);
    font-size: 18px;
    width: 35px;
    height: 35px;
    background: rgba(90, 114, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-section .about-features .feature-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

/* ===== ODALAR BÖLÜMÜ ===== */
.rooms-section {
    background: var(--bg-light);
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card .room-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-card .room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img img {
    transform: scale(1.08);
}

.room-card .room-img .room-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.room-card .room-body {
    padding: 25px;
}

.room-card .room-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.room-card .room-body h3 a {
    color: var(--text-dark);
}

.room-card .room-body h3 a:hover {
    color: var(--primary);
}

.room-card .room-body p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.room-card .room-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.room-card .room-services span {
    font-size: 12px;
    color: var(--text-body);
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 20px;
}

.room-card .room-services span i {
    color: var(--primary);
    margin-right: 4px;
}

.room-card .btn-room {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.room-card .btn-room:hover {
    color: var(--secondary);
    gap: 12px;
}

/* ===== ÖZELLİKLER BÖLÜMÜ ===== */
.features-section {
    background: var(--white);
}

.feature-box {
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    background: rgba(90, 114, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-box:hover .icon {
    background: var(--primary);
    color: var(--white);
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== İSTATİSTİKLER ===== */
.stats-section {
    background: linear-gradient(rgba(44, 62, 45, 0.92), rgba(44, 62, 45, 0.92)),
                url('../img/stats-bg.jpg') center/cover fixed;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 15px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.stat-item i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 15px;
    opacity: 0.8;
}

/* ===== GALERİ ÖNİZLEME ===== */
.gallery-section {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(90, 114, 71, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: var(--white);
    font-size: 24px;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:first-child img {
    height: 100%;
}

/* ===== YORUMLAR ===== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--bg-cream);
    padding: 35px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.testimonial-card .stars {
    color: #f5b301;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-card .quote {
    font-size: 15px;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    font-size: 24px;
    display: block;
    margin-bottom: 15px;
    font-style: normal;
    opacity: 0.3;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.testimonial-card .title {
    font-size: 13px;
    color: var(--text-light);
}

.testimonials-section .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.testimonials-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
}

.testimonials-section .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 25px;
    border-radius: 5px;
}

/* ===== CTA BÖLÜMÜ ===== */
.cta-section {
    background: linear-gradient(rgba(90, 114, 71, 0.9), rgba(90, 114, 71, 0.9)),
                url('../img/cta-bg.jpg') center/cover fixed;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: var(--transition);
}

.btn-cta-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-cta-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-cta-phone {
    background: var(--white);
    color: var(--primary);
    margin-left: 15px;
}

.btn-cta-phone:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer-area {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--secondary);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-hours {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-hours li i {
    color: var(--secondary);
    margin-right: 8px;
    width: 20px;
}

.btn-footer-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-footer-cta:hover {
    background: var(--secondary-dark);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== PAGE BANNER (Alt Sayfalar İçin) ===== */
.page-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44,62,45,0.6), rgba(44,62,45,0.8));
}

.page-banner .content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-banner .breadcrumb {
    justify-content: center;
    margin: 0;
}

.page-banner .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.page-banner .breadcrumb-item a {
    color: var(--secondary);
}

.page-banner .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: '/';
}

/* ===== GENEL BUTONLAR ===== */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== ODA DETAY SAYFASI ===== */
.room-detail-section {
    padding-top: 40px;
}

.room-detail-slider .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}

.room-detail-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.room-detail-info .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.room-detail-info .services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.room-detail-info .services-list .service-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.room-detail-info .services-list .service-tag i {
    color: var(--primary);
}

.room-detail-info .checkin-out {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.room-detail-info .checkin-out .item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.room-detail-info .checkin-out .item h5 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.room-detail-info .checkin-out .item .time {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* ===== HAKKIMIZDA SAYFASI ===== */
.about-page-section {
    background: var(--white);
}

.about-page-section .content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-page-section .content p {
    margin-bottom: 15px;
    line-height: 1.9;
}

/* ===== GALERİ SAYFASI ===== */
.gallery-page-section {
    background: var(--bg-light);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filters .filter-btn {
    background: var(--white);
    color: var(--text-body);
    border: 1px solid var(--border);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-masonry .gallery-item img {
    height: 300px;
}

/* ===== MENÜ SAYFASI ===== */
.menu-section {
    background: var(--bg-light);
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category .category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.menu-category .category-header i {
    font-size: 28px;
    color: var(--primary);
}

.menu-category .category-header h3 {
    font-size: 28px;
    margin: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--border);
}

.menu-item .item-info h5 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 3px;
}

.menu-item .item-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.menu-item .item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    white-space: nowrap;
}

/* ===== İLETİŞİM SAYFASI ===== */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 15px;
}

.contact-info-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: var(--text-body);
}

.contact-form .form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(90, 114, 71, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 60px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== RESPONSİVE ===== */
@media (max-width: 991.98px) {
    section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-nav .nav-link {
        color: var(--text-dark) !important;
        padding: 10px 15px !important;
        text-shadow: none !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-brand img {
        height: 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .cta-section .btn-cta {
        margin-bottom: 10px;
    }

    .btn-cta-phone {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .about-section .about-img img {
        height: 300px;
    }

    .about-section .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-masonry .gallery-item img {
        height: 250px;
    }

    .page-banner {
        height: 300px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .room-detail-slider .swiper-slide img {
        height: 300px;
    }

    .room-detail-info .checkin-out {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .footer-top {
        padding: 50px 0 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:first-child {
        grid-column: span 1;
    }
}
