/* ===========================
   HILLSIDE BEACH CLUB - CSS
   Color Palette: Ocean & Nature
   Primary: #0B3D2E (Deep Forest Green)
   Secondary: #1A6B5A (Teal Green)
   Accent: #D4A853 (Golden Sand)
   Light: #F5F1EB (Warm Ivory)
   Dark: #0a1628 (Deep Navy)
   Ocean: #1B7B8A (Ocean Teal)
   =========================== */

:root {
    --primary: #0B3D2E;
    --primary-light: #145A43;
    --secondary: #1A6B5A;
    --accent: #D4A853;
    --accent-hover: #C4963F;
    --light: #F5F1EB;
    --dark: #0a1628;
    --ocean: #1B7B8A;
    --ocean-light: #2A9DAE;
    --sand: #E8DCC8;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ==================
   GLOBAL RESET
   ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================
   PRELOADER
   ================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 168, 83, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: 3px;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse-text {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ==================
   TOP BAR
   ================== */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar a {
    color: rgba(255,255,255,0.7);
}

.top-bar a:hover {
    color: var(--accent);
}

.whatsapp-top {
    color: #25D366 !important;
}

.social-icons-top a {
    margin-left: 10px;
    font-size: 0.85rem;
}

/* ==================
   NAVBAR
   ================== */
#mainNavbar {
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1000;
    top: 0;
    background: transparent;
}

#mainNavbar.scrolled {
    background: rgba(10, 22, 40, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.brand-sub {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 3px;
    margin-top: 2px;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
}

.nav-link:hover {
    color: var(--accent) !important;
}

.btn-rezervasyon {
    background: var(--accent) !important;
    color: var(--dark) !important;
    border-radius: 30px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    animation: pulse-btn 3s ease-in-out infinite;
}

.btn-rezervasyon::after {
    display: none !important;
}

.btn-rezervasyon:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(212, 168, 83, 0.2); }
}

/* ==================
   WHATSAPP FLOAT
   ================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    color: #fff;
    transform: scale(1.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-110%) translateY(-50%);
}

.whatsapp-tooltip {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateX(-100%) translateY(-50%);
    background: var(--dark);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ==================
   HERO SECTION
   ================== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.4) 0%,
        rgba(10, 22, 40, 0.3) 50%,
        rgba(10, 22, 40, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
}

.hero-btn {
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin: 5px;
}

.hero-btn-primary {
    background: var(--accent);
    color: var(--dark);
    border: 2px solid var(--accent);
}

.hero-btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.hero-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.hero-btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================
   SECTION COMMONS
   ================== */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-script);
    color: var(--accent);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.section-title-light {
    color: var(--white);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--ocean));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================
   ABOUT SECTION
   ================== */
.about-section {
    background: var(--white);
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-image-main img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent);
    color: var(--dark);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
}

.about-feature-item:hover {
    background: var(--sand);
    transform: translateX(5px);
}

.about-feature-item i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 20px;
}

.about-feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==================
   STATS SECTION
   ================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================
   ROOMS SECTION
   ================== */
.rooms-section {
    background: var(--light);
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.room-body {
    padding: 25px;
}

.room-body h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.room-body p {
    color: var(--gray-600);
    font-size: 0.92rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.room-features span {
    background: var(--light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-features span i {
    color: var(--accent);
    font-size: 0.7rem;
}

.room-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.room-btn:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateX(5px);
}

/* ==================
   FACILITIES SECTION
   ================== */
.facilities-section {
    background: var(--white);
    position: relative;
}

.facility-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--ocean));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.facility-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 1.6rem;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--dark);
    transform: rotateY(180deg);
}

.facility-card h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.facility-card p {
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ==================
   GALLERY SECTION
   ================== */
.gallery-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.gallery-section .section-desc {
    color: rgba(255,255,255,0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 260px;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
    height: 535px;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==================
   ACTIVITIES SECTION
   ================== */
.activities-section {
    background: var(--light);
}

.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 350px;
    transition: var(--transition);
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
    color: var(--white);
    transition: var(--transition);
}

.activity-card:hover .activity-overlay {
    padding-bottom: 40px;
}

.activity-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.activity-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ==================
   CONTACT SECTION
   ================== */
.contact-section {
    background: var(--white);
    position: relative;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--accent);
}

.contact-item-text h5 {
    font-size: 1rem;
    margin-bottom: 3px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-item-text p,
.contact-item-text a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

.contact-item-text a:hover {
    color: var(--accent);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.form-floating {
    margin-bottom: 15px;
}

.form-floating .form-control,
.form-floating .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 15px;
    transition: var(--transition);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.btn-submit {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--accent-hover);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
}

/* ==================
   MAP SECTION
   ================== */
.map-section {
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: saturate(0.8);
    transition: filter 0.4s ease;
}

.map-section iframe:hover {
    filter: saturate(1);
}

/* ==================
   BREADCRUMB
   ================== */
.breadcrumb-section {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.6), rgba(10, 22, 40, 0.8));
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding-top: 60px;
}

.breadcrumb-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.breadcrumb-content .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-content .breadcrumb-item a {
    color: var(--accent);
}

.breadcrumb-content .breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ==================
   FOOTER
   ================== */
.footer-section {
    position: relative;
}

.footer-wave {
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-main {
    background: var(--dark);
    padding: 60px 0 40px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand span {
    font-family: var(--font-script);
    color: var(--accent);
    font-size: 1rem;
    display: block;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-widget p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    min-width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-newsletter .input-group {
    border-radius: 30px;
    overflow: hidden;
}

.footer-newsletter .form-control {
    background: rgba(255,255,255,0.08);
    border: none;
    color: var(--white);
    padding: 12px 20px;
    font-size: 0.85rem;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-newsletter .btn {
    background: var(--accent);
    color: var(--dark);
    padding: 12px 20px;
    border: none;
}

.footer-newsletter .btn:hover {
    background: var(--accent-hover);
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.badge-item {
    background: rgba(255,255,255,0.08);
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.75rem;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ==================
   BACK TO TOP
   ================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

/* ==================
   PARALLAX
   ================== */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.75);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.parallax-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ==================
   RESERVATION PAGE
   ================== */
.rezervasyon-section {
    padding: 80px 0 100px;
    background: var(--light);
}

.rezervasyon-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.rezervasyon-form-card h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.rezervasyon-form-card .form-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group .form-control,
.form-group .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group .form-control:focus,
.form-group .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.dynamic-fields-container {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 10px;
}

.dynamic-fields-container .form-control {
    margin-bottom: 10px;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.privacy-check input {
    margin-top: 4px;
}

.privacy-check label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.privacy-check a {
    color: var(--accent);
}

/* ==================
   TYPING EFFECT
   ================== */
.typed-cursor {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: inherit;
    color: var(--accent);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.3rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .section-padding { padding: 70px 0; }
    .about-content { padding-left: 0; margin-top: 30px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.tall { height: 350px; grid-row: span 1; }
    #mainNavbar { background: rgba(10, 22, 40, 0.95) !important; }
    .top-bar { display: none !important; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .hero-section { min-height: 600px; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gallery-item { height: 200px; }
    .gallery-item.wide { grid-column: span 1; }
    .breadcrumb-content h1 { font-size: 2rem; }
    .footer-main { padding: 40px 0 20px; }
    .rezervasyon-form-card { padding: 25px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-btn { padding: 12px 25px; font-size: 0.85rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.2rem; }
}
