/* ============================================================
   ALANYA OTEL ARŞI - ANA CSS DOSYASI
   Renkler: #123039 (Ana) | #F8A105 (Vurgu) | #111 (Yazı) | #fff (Beyaz)
   ============================================================ */

/* --- CSS CUSTOM PROPERTIES (DESIGN TOKENS) --- */
:root {
    --clr-primary: #123039;
    --clr-primary-dark: #0b2028;
    --clr-primary-light: #1a4557;
    --clr-accent: #F8A105;
    --clr-accent-hover: #d98d04;
    --clr-accent-light: #fff3d4;
    --clr-white: #ffffff;
    --clr-black: #111111;
    --clr-bg: #f5f7f8;
    --clr-bg-2: #edf1f3;
    --clr-text: #111111;
    --clr-text-muted: #556169;
    --clr-border: #dde3e6;
    --clr-success: #22c55e;
    --clr-wa: #25D366;

    --shadow-sm: 0 1px 4px rgba(18, 48, 57, .08);
    --shadow-md: 0 4px 18px rgba(18, 48, 57, .13);
    --shadow-lg: 0 8px 36px rgba(18, 48, 57, .17);
    --shadow-xl: 0 16px 52px rgba(18, 48, 57, .21);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --font-main: 'Poppins', sans-serif;
    --header-h: 72px;
    --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

.p {
    font-size: 16px !important;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.best-price-badge {
    position: absolute;
    top: 12px;
    right: 56px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse-red 2s infinite;
}

.price-guarantee-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-accent-light);
    color: var(--clr-primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--clr-accent);
}

.best-price-badge.inline {
    position: static;
    display: inline-flex;
    margin: 0 0 8px 0;
    box-shadow: var(--shadow-sm);
    animation: pulse-red-sm 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-red-sm {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text);
    background: var(--clr-bg);
    overflow-x: hidden;
}

p {
    font-size: 16px;
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .8rem;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .8rem;
}

h5 {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .6rem;
}

h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .6rem;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* --- UTILITY --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--clr-white);
}

.section-pad {
    padding: 80px 0;
}

.section-pad-sm {
    padding: 48px 0;
}

/* --- TYPOGRAPHY --- */
.section-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--clr-primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-top: 10px;
}

.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 14px rgba(18, 48, 57, .28);
}

.btn-primary:hover {
    background: var(--clr-primary-light);
    box-shadow: 0 6px 22px rgba(18, 48, 57, .35);
}

.btn-accent {
    background: var(--clr-accent);
    color: var(--clr-black);
    box-shadow: 0 4px 14px rgba(248, 161, 5, .35);
}

.btn-accent:hover {
    background: var(--clr-accent-hover);
    box-shadow: 0 6px 22px rgba(248, 161, 5, .45);
}

.btn-outline {
    background: transparent;
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.btn-outline:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.btn-white {
    background: var(--clr-white);
    color: var(--clr-primary);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.btn-white:hover {
    background: var(--clr-bg);
}

.btn-wa {
    background: var(--clr-wa);
    color: var(--clr-white);
}

.btn-wa:hover {
    background: #1da851;
}

.btn-lg {
    padding: 8px 20px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-xl {
    padding: 8px 20px;
    font-size: 18px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--clr-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.1rem;
}

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

.logo-main {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-primary);
}

.logo-sub {
    font-size: .65rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.logo-white .logo-main {
    color: var(--clr-white);
}

.logo-white .logo-sub {
    color: rgba(255, 255, 255, .65);
}

/* Logo image */
.logo-img {
    height: 72px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
}

.logo-img-wrap {
    display: flex;
    align-items: center;
}

.logo-white .logo-img {
    filter: brightness(0) invert(1);
}

/* Main Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    color: var(--clr-text);
    transition: color var(--transition), background var(--transition);
    border: none;
    background: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-primary);
    background: var(--clr-bg-2);
}

.dropdown-arrow {
    font-size: .65rem;
    transition: transform var(--transition);
}

.nav-item.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 290px;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--clr-border);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 100;
    padding: 8px;
}

.dropdown-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    transition: background var(--transition);
    color: var(--clr-text);
}

.dropdown-item:hover {
    background: var(--clr-bg-2);
}

.dropdown-item i {
    color: var(--clr-primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.dropdown-item-name {
    display: block;
    font-weight: 500;
}

.dropdown-item-location {
    display: block;
    font-size: .75rem;
    color: var(--clr-text-muted);
    margin-top: 1px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-phone-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--clr-primary);
    padding: 8px 0;
    transition: all var(--transition);
    position: relative;
}

.btn-phone-header:hover {
    color: var(--clr-accent);
}

.btn-phone-header i {
    color: var(--clr-accent);
    font-size: 1.1rem;
}

.btn-phone-header span {
    display: none;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity var(--transition);
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - var(--header-h));
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-inner {
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 500;
    color: var(--clr-text);
    transition: background var(--transition);
    border: none;
    background: none;
    width: 100%;
}

.mobile-nav-link:hover {
    background: var(--clr-bg-2);
}

.mobile-nav-link i {
    color: var(--clr-primary);
    width: 18px;
    text-align: center;
}

.mobile-phone-link {
    color: var(--clr-primary);
    font-weight: 500;
    margin-top: 8px;
    border-top: 1px solid var(--clr-border);
    padding-top: 12px;
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
}

.mobile-group-toggle {
    justify-content: space-between;
}

.mobile-hotels-list {
    display: none;
    flex-direction: column;
    padding-left: 28px;
    border-left: 2px solid var(--clr-border);
    margin-left: 14px;
}

.mobile-hotels-list.open {
    display: flex;
}

.mobile-sub-link {
    padding: 8px 12px;
    font-size: .875rem;
    color: var(--clr-text-muted);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.mobile-sub-link:hover {
    color: var(--clr-primary);
    background: var(--clr-bg-2);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 580px;
    max-height: 860px;
    overflow: hidden;
    background: var(--clr-primary);
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(18, 48, 57, .25) 0%,
            rgba(18, 48, 57, .1) 35%,
            rgba(18, 48, 57, .75) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.4, 0, .2, 1);
    background-size: cover;
    background-position: center center;
    image-rendering: -webkit-optimize-contrast;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 120px;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(248, 161, 5, .2);
    border: 1px solid rgba(248, 161, 5, .5);
    backdrop-filter: blur(8px);
    color: #ffe08a;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 18px;
}

.hero-badge i {
    color: var(--clr-accent);
}

.hero-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--clr-white);
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 16px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.hero-title span {
    color: var(--clr-accent);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Hero Nav */
.hero-dots {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 20;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .35);
    border: none;
    transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
    background: var(--clr-accent);
    transform: scale(1.3);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .18);
    border: 1.5px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(6px);
    color: var(--clr-white);
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.hero-arrow:hover {
    background: rgba(248, 161, 5, .5);
    border-color: var(--clr-accent);
}

.hero-arrow-prev {
    left: 14px;
}

.hero-arrow-next {
    right: 14px;
}

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-bar-wrapper {
    position: relative;
    z-index: 50;
    margin-top: -44px;
    padding: 0 0 16px;
}

.booking-bar {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 22px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-end;
    border: 1px solid var(--clr-border);
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 150px;
}

.booking-submit-field {
    flex: 0 0 auto;
    min-width: auto;
}

.booking-label {
    font-size: .73rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.booking-label i {
    color: var(--clr-primary);
}

.booking-input,
.booking-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-size: .9rem;
    font-family: var(--font-main);
    color: var(--clr-text);
    background: var(--clr-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.booking-input:focus,
.booking-select:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(248, 161, 5, .18);
}

.booking-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23123039' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.booking-submit-btn {
    height: 44px;
    border-radius: var(--radius-md);
    padding: 10px 28px;
}

/* Guest Counter */
.guest-counter-wrapper {
    position: relative;
}

.guest-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-size: .9rem;
    color: var(--clr-text);
    background: var(--clr-white);
    font-family: var(--font-main);
    transition: border-color var(--transition);
}

.guest-summary:hover {
    border-color: var(--clr-accent);
}

.guest-summary i {
    font-size: .65rem;
    color: var(--clr-text-muted);
}

.guest-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--clr-border);
    padding: 16px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guest-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.guest-info {
    display: flex;
    flex-direction: column;
}

.guest-type {
    font-weight: 500;
    font-size: .9rem;
    color: var(--clr-text);
}

.guest-age {
    font-size: .75rem;
    color: var(--clr-text-muted);
}

.counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-primary);
    transition: border-color var(--transition), background var(--transition);
    background: none;
}

.counter-btn:hover {
    border-color: var(--clr-accent);
    background: var(--clr-accent-light);
}

.counter-val {
    font-weight: 500;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.booking-min-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff8e1;
    border: 1px solid var(--clr-accent);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: .85rem;
    color: #6b4700;
    margin-top: 8px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--clr-primary);
    padding: 18px 0;
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-white);
}

.trust-item-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--clr-accent);
}

.trust-item-text {
    display: flex;
    flex-direction: column;
}

.trust-item-label {
    font-size: .72rem;
    opacity: .65;
}

.trust-item-value {
    font-weight: 500;
    font-size: .9rem;
}

/* ============================================================
   HOTEL CARDS
   ============================================================ */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.hotel-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.hotel-card-img-wrap {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: var(--clr-bg-2);
}

.hotel-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.hotel-card:hover .hotel-card-img {
    transform: scale(1.06);
}

.hotel-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--clr-white);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--clr-accent);
    box-shadow: var(--shadow-sm);
}

.hotel-card-badge i {
    font-size: .65rem;
}

.hotel-card-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--clr-text-muted);
    transition: color var(--transition), background var(--transition);
    border: none;
}

.hotel-card-favorite:hover {
    color: #e74c3c;
    background: var(--clr-white);
}

.hotel-card-body {
    padding: 20px;
}

.hotel-card-location {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-card-location i {
    color: var(--clr-accent);
}

.hotel-card-name {
    font-size: 19px;
    font-weight: 500;
    color: var(--clr-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.hotel-card-name a {
    color: inherit;
}

.hotel-card-name a:hover {
    color: var(--clr-primary);
}

.hotel-card-desc {
    font-size: .875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.hotel-feature-tag {
    background: var(--clr-bg-2);
    color: var(--clr-primary);
    font-size: .72rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid var(--clr-border);
}

.hotel-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--clr-border);
    padding-top: 14px;
}

.hotel-card-price {
    display: flex;
    flex-direction: column;
}

.hotel-price-from {
    font-size: .72rem;
    color: var(--clr-text-muted);
}

.hotel-price-value {
    font-size: 21px;
    font-weight: 500;
    color: var(--clr-primary);
}

.hotel-price-value span {
    font-size: .75rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.hotel-card-actions {
    display: flex;
    gap: 10px;
}

.price-msg-box {
    background: var(--clr-bg-2);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px dashed var(--clr-border);
    margin: 20px 0;
}


/* ============================================================
   SEO CONTENT
   ============================================================ */
.seo-section {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

.seo-section p {
    font-size: .95rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-section p:last-child {
    margin-bottom: 0;
}

.seo-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.seo-section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-text);
    margin-top: 24px;
    margin-bottom: 10px;
}

/* ============================================================
   HOTEL DETAIL PAGE
   ============================================================ */
.hotel-detail-hero {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: var(--clr-primary);
    margin-top: 0;
}

.hotel-detail-hero .hero-content {
    justify-content: center;
    padding-bottom: 0;
}

.hotel-detail-hero .hero-content .container {
    align-items: center;
    text-align: center;
}

.hotel-detail-hero .hero-title {
    max-width: 800px;
}

.hotel-detail-hero .hero-actions {
    justify-content: center;
}

/* Main Slider */
.hotel-main-slider {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--clr-bg-2);
}

.hotel-main-slider .slider-track {
    display: flex;
    height: 100%;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.hotel-main-slider .slide-item {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.hotel-main-slider .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-sm);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    border: none;
    transition: background var(--transition), transform var(--transition);
}

.slider-btn:hover {
    background: var(--clr-white);
    transform: translateY(-50%) scale(1.07);
}

.slider-btn-prev {
    left: 8px;
}

.slider-btn-next {
    right: 8px;
}

.slider-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.slider-thumb {
    flex: 1;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: .55;
    transition: opacity var(--transition);
    border: 2.5px solid transparent;
}

.slider-thumb.active {
    opacity: 1;
    border-color: var(--clr-accent);
}

.slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detail Layout */
.hotel-detail-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
    margin-top: 0;
    /* Eskiden eksili değerdi, iptal ettik ki boşluk tam otursun */
    position: relative;
    z-index: 10;
}

.hotel-detail-name {
    font-size: 24px;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 12px;
}

.hotel-stars {
    display: flex;
    gap: 3px;
    color: var(--clr-accent);
    font-size: .9rem;
    margin-bottom: 12px;
}

.hotel-location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.hotel-detail-desc {
    font-size: .95rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.hotel-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.hotel-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--clr-text);
}

.hotel-feature-item i {
    color: var(--clr-accent);
    width: 18px;
    text-align: center;
}

.hotel-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Hotel Detail Additional Blocks */
.monthly-prices-wrap {
    margin-top: 24px;
}

.monthly-prices-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.monthly-prices-title i {
    color: var(--clr-accent);
}

.monthly-prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.monthly-price-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.monthly-price-card.current {
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-sm);
}

.mp-month {
    font-size: .7rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    text-transform: uppercase;
}

.monthly-price-card.current .mp-month {
    color: var(--clr-accent);
}

.mp-price {
    font-size: .95rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-top: 4px;
}

.quick-price-box {
    background: var(--clr-bg-2);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-top: 24px;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.qpb-label {
    font-size: .75rem;
    color: var(--clr-text-muted);
    margin-bottom: 2px;
}

.qpb-price {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--clr-primary);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.qpb-price span {
    font-size: .8rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.qpb-btn {
    padding: 10px 20px;
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-section {
    background: var(--clr-bg-2);
}

.room-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: box-shadow var(--transition);
    margin-bottom: 28px;
}

.room-card:hover {
    box-shadow: var(--shadow-md);
}

.room-card:last-child {
    margin-bottom: 0;
}

.room-card-slider {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.room-card-slider .slider-track {
    display: flex;
    height: 100%;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.room-card-slider .slide-item {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.room-card-slider .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-name {
    font-size: 21px;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 16px;
}

.room-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: var(--clr-text-muted);
}

.room-feature i {
    color: var(--clr-success);
    font-size: .8rem;
}

.room-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ============================================================
   PROPERTY BLOCKS
   ============================================================ */
.property-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.property-block:last-child {
    margin-bottom: 0;
}

.property-block.reverse {
    direction: rtl;
}

.property-block.reverse>* {
    direction: ltr;
}

.property-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.property-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--clr-accent-light);
    color: var(--clr-primary);
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.property-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--clr-text);
}

.property-desc {
    font-size: .95rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: zoom-in;
    background: var(--clr-bg-2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 48, 57, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    color: var(--clr-white);
    font-size: 1.8rem;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(18, 48, 57, .42);
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .95);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.lightbox.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-img {
    max-width: min(90vw, 1200px);
    max-height: 88vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .1);
    color: var(--clr-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .22);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .1);
    color: var(--clr-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: background var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, .22);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .5);
    color: var(--clr-white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: .85rem;
}

/* ============================================================
   STICKY BOTTOM CTA BAR
   ============================================================ */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

@media (min-width: 769px) {
    .sticky-cta-bar {
        transform: translateY(100%);
    }
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    font-size: .73rem;
    font-weight: 500;
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: filter var(--transition);
    border: none;
}

.sticky-cta-btn:hover {
    filter: brightness(1.1);
}

.sticky-cta-btn i {
    font-size: 1.15rem;
}

.sticky-cta-book {
    background: var(--clr-primary);
}

.sticky-cta-wa {
    background: var(--clr-wa);
}

.sticky-cta-phone {
    background: var(--clr-accent);
    color: var(--clr-black);
}

body {
    padding-bottom: 64px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 800;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    background: var(--clr-wa);
    color: var(--clr-white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .42);
    animation: wa-pulse 2.5s infinite;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 26px rgba(37, 211, 102, .55);
    animation: none;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(37, 211, 102, .42);
    }

    50% {
        box-shadow: 0 4px 26px rgba(37, 211, 102, .65), 0 0 0 9px rgba(37, 211, 102, .1);
    }
}

.wa-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-black);
    color: var(--clr-white);
    font-size: .78rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -8%;
    width: 520px;
    height: 520px;
    border-radius: var(--radius-full);
    background: rgba(248, 161, 5, .06);
}

.cta-content {
    text-align: center;
    color: var(--clr-white);
    position: relative;
}

.cta-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.05rem;
    opacity: .8;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: 64px 0 0;
    border-top: 5px solid var(--clr-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 48px;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--clr-accent);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--clr-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all .3s ease;
}

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

.footer-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-top: 14px;
    margin-bottom: 20px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    font-size: .72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
}

.trust-badge i {
    color: var(--clr-accent);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: .875rem;
    transition: color var(--transition);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s ease;
}

.social-link:hover {
    background: var(--clr-accent);
    color: var(--clr-primary);
    transform: translateY(-4px);
}

.footer-bottom {
    background: transparent;
    padding: 25px 0;
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered since developer credit is removed */
    flex-wrap: wrap;
    gap: 20px;
}

.developer-credit a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: color var(--transition);
}

.developer-credit a:hover {
    color: var(--clr-white);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--clr-text);
}

.contact-form-group {
    margin-bottom: 18px;
}

.contact-label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 7px;
    color: var(--clr-text);
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-size: .9rem;
    font-family: var(--font-main);
    color: var(--clr-text);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(248, 161, 5, .18);
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--clr-bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: .75rem;
    color: var(--clr-text-muted);
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: .95rem;
    font-weight: 500;
    color: var(--clr-text);
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
    padding: 60px 0 48px;
    text-align: center;
    color: var(--clr-white);
}

.page-hero h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.05rem;
    opacity: .8;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 20px;
    justify-content: center;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .65);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--clr-accent);
}

.breadcrumb-sep {
    opacity: .45;
}

.breadcrumb-current {
    color: var(--clr-white);
}

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

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

.animate-in.delay-1 {
    transition-delay: .1s;
}

.animate-in.delay-2 {
    transition-delay: .2s;
}

.animate-in.delay-3 {
    transition-delay: .3s;
}

.animate-in.delay-4 {
    transition-delay: .4s;
}

.animate-in.delay-5 {
    transition-delay: .5s;
}

/* ============================================================
   FLATPICKR ÖZELLEŞTIRME
   ============================================================ */
.flatpickr-calendar {
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-xl) !important;
    border: 1px solid var(--clr-border) !important;
    font-family: var(--font-main) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--clr-primary) !important;
    border-color: var(--clr-primary) !important;
    color: var(--clr-white) !important;
}

.flatpickr-day:hover {
    background: var(--clr-accent-light) !important;
    border-color: var(--clr-accent) !important;
}

.flatpickr-day.inRange {
    background: var(--clr-accent-light) !important;
    border-color: var(--clr-accent-light) !important;
    color: var(--clr-text) !important;
}

.flatpickr-months .flatpickr-month {
    background: var(--clr-primary) !important;
    color: var(--clr-white) !important;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
}

.flatpickr-current-month,
.flatpickr-monthDropdown-months,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: var(--clr-white) !important;
    fill: var(--clr-white) !important;
}

.flatpickr-weekday {
    color: var(--clr-primary) !important;
    font-weight: 500 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hotel-detail-layout {
        grid-template-columns: 1fr;
    }

    .property-block {
        grid-template-columns: 1fr;
    }

    .property-block.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    /* Typography Scaling for Mobile */
    body {
        font-size: 15px;
    }

    p {
        font-size: 15px;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    h2 {
        font-size: 19px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 17px;
    }

    .section-title {
        font-size: 21px;
        margin-bottom: 6px;
    }

    .section-subtitle {
        font-size: .95rem;
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hotel-detail-name {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .hotel-detail-desc {
        font-size: .95rem;
    }

    .qpb-price {
        font-size: 1.4rem;
    }

    .room-name {
        font-size: 19px;
    }

    .property-title {
        font-size: 19px;
    }

    .cta-title {
        font-size: 21px;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .footer-col h3 {
        font-size: 1.05rem;
        margin-bottom: 16px;
        padding-bottom: 8px;
    }

    /* End Typography Scaling */

    .main-nav {
        display: none;
    }

    .btn-phone-header span {
        display: none !important;
    }

    .header-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .booking-bar {
        flex-direction: column;
        padding: 16px 18px;
    }

    .booking-field {
        min-width: 100%;
    }

    .booking-submit-field {
        width: 100%;
    }

    .booking-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .booking-bar-wrapper {
        margin-top: 0;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-bottom: 16px;
    }

    .hotel-detail-layout {
        gap: 32px;
    }

    .room-card {
        grid-template-columns: 1fr;
    }

    .room-card-slider {
        min-height: 220px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .trust-bar-inner {
        gap: 20px;
    }

    .seo-section {
        padding: 28px 20px;
    }

    .section-pad {
        padding: 48px 0;
    }

    .hotel-detail-hero {
        height: 420px;
    }
}

@media (max-width: 480px) {

    /* Deeper typography checks for extremely small screens */
    h1 {
        font-size: 19px;
    }

    .hero-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 19px;
    }

    .hotel-detail-name {
        font-size: 19px;
    }

    .room-name {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 74px;
        right: 14px;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .hotel-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-card-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .btn-phone-header {
        display: none !important;
    }

    /* Hotel detail mobile specific fixes */
    .hotel-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hotel-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .monthly-prices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .quick-price-box {
        padding: 16px 18px;
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .quick-price-box .qpb-btn {
        width: 100%;
        justify-content: center;
    }

    .hotel-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1280px) {
    .btn-phone-header span {
        display: inline;
    }
}

/* ============================================================
   MODAL (Virtual Tour)
   ============================================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(18, 48, 57, 0.85);
    backdrop-filter: blur(8px);
}

.modal.open {
    display: flex;
}

.modal-content {
    background: #000;
    width: 100%;
    max-width: 1100px;
    height: 80vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-close:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    transform: rotate(90deg);
}

.btn-vt-room {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-bg-2);
    color: var(--clr-primary);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--clr-border);
}

.btn-vt-room:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-vt-room i {
    color: var(--clr-accent);
}

.btn-vt-room:hover i {
    color: var(--clr-white);
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   STICKY CTA BAR (MOBILE)
   ============================================================ */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    background: var(--clr-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--clr-border);
}

.sticky-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    gap: 5px;
    color: var(--clr-text);
    transition: all 0.3s ease;
    text-decoration: none;
    border-right: 1px solid var(--clr-border);
}

.sticky-cta-btn:last-child {
    border-right: none;
}

.sticky-cta-btn i {
    font-size: 1.2rem;
}

.sticky-cta-wa {
    color: #25D366;
}

.sticky-cta-book {
    background: var(--clr-accent);
    color: var(--clr-primary);
}

.sticky-cta-phone {
    color: var(--clr-primary);
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: grid;
    }

    /* Adjust page padding so footer isn't hidden by the bar */
    body {
        padding-bottom: 70px;
    }

    .whatsapp-float {
        bottom: 85px;
        /* Move up to not overlap with sticky bar */
    }
}

/* ============================================================
   UIVERSE RESERVATION BUTTON
   ============================================================ */
.btn-uiverse {
  font-family: inherit;
  font-size: 18px;
  background: #F8A105;
  color: white;
  padding: 0.8em 1.2em;
  padding-left: 0.9em;
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  line-height: 1;
}

.btn-uiverse span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
  color: white;
  font-weight: 600;
}

.btn-uiverse .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.btn-uiverse:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.btn-uiverse:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.btn-uiverse:hover span {
  transform: translateX(7em);
}

.btn-uiverse:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from { transform: translateY(0.1em); }
  to { transform: translateY(-0.1em); }
}

/* Hotel Detail Hero Darkness */
.hotel-detail-hero .hero-slide::after {
    background: linear-gradient(to bottom, rgba(18, 48, 57, 0.6) 0%, rgba(18, 48, 57, 0.3) 40%, rgba(18, 48, 57, 0.9) 100%) !important;
    opacity: 0.6 !important;
    pointer-events: none;
}

/* ============================================================
   UIVERSE VIRTUAL TOUR BUTTON
   ============================================================ */
.btn-vt-uiverse {
  font-family: inherit;
  font-size: 18px;
  background: rgba(18, 48, 57, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.8em 1.2em;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  line-height: 1;
}

.btn-vt-uiverse span {
  display: block;
  margin-left: 0.5em;
  transition: all 0.3s ease-in-out;
  color: white;
  font-weight: 600;
}

.btn-vt-uiverse .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.btn-vt-uiverse:hover .svg-wrapper {
  animation: float-vt 0.8s ease-in-out infinite alternate;
}

.btn-vt-uiverse:hover svg {
  transform: scale(1.2);
}

.btn-vt-uiverse:hover span {
  transform: translateX(7em);
}

.btn-vt-uiverse:active {
  transform: scale(0.95);
}

@keyframes float-vt {
  from { transform: translateY(0.1em); }
  to { transform: translateY(-0.1em); }
}