/* ========================================
   DÜŞLER SOKAĞI BUTIK HOTEL - MAIN STYLES
   ======================================== */

/* CSS Variables */
:root {
    --gold: #d8af72;
    --gold-dark: #c49b5e;
    --black: #151515;
    --white: #ffffff;
    --gray-1: #3c3c3c;
    --gray-2: #888888;
    --gray-3: #c0c0c0;
    --gray-4: #f8f8f8;
    --red: #dc3545;
    --green: #28a745;
    
    --font-display: 'Forum', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    
    --container-width: 1320px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-1);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

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

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-title span {
    color: var(--gold);
}

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
    background-color: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition-normal);
}

.top-bar-link:hover {
    opacity: 1;
    color: var(--gold);
}

.top-bar-link i {
    color: var(--gold);
    font-size: 0.875rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    opacity: 0.6;
    font-weight: 500;
}

.lang-link.active,
.lang-link:hover {
    opacity: 1;
    color: var(--gold);
}

.lang-separator {
    opacity: 0.4;
}

/* ========================================
   MAIN HEADER
   ======================================== */

.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    max-height: 100%;
}

.logo img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-1);
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Reservation Button */
.btn-reservation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--gold);
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-reservation:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition-normal);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 24px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-nav-menu a {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-1);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-4);
}

.mobile-nav-menu a:hover {
    color: var(--gold);
}

.btn-mobile-reservation {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: var(--gold);
    color: var(--black);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(21, 21, 21, 0.8) 0%, rgba(21, 21, 21, 0.4) 50%, rgba(21, 21, 21, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(216, 175, 114, 0.2);
    backdrop-filter: blur(4px);
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--white);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Booking Form */
.hero-booking {
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 32px;
    margin-top: 40px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--gold);
}

.form-control {
    padding: 14px 16px;
    border: 1px solid var(--gray-3);
    background-color: var(--white);
    color: var(--gray-1);
    font-size: 0.9375rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216, 175, 114, 0.1);
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--gray-2);
    font-size: 1.125rem;
}

.bg-light {
    background-color: var(--gray-4);
}

.bg-dark {
    background-color: var(--black);
    color: var(--white);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--white);
}

.bg-dark .section-label {
    color: var(--gold);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-main-image {
    position: relative;
    z-index: 1;
}

.about-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-secondary-image {
    position: absolute;
    z-index: 2;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-secondary-image:nth-child(2) {
    top: -30px;
    right: -30px;
    width: 200px;
}

.about-secondary-image:nth-child(3) {
    bottom: -30px;
    right: 30px;
    width: 180px;
}

.about-secondary-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 60px;
    left: -20px;
    background-color: var(--gold);
    color: var(--black);
    padding: 24px;
    z-index: 3;
    text-align: center;
}

.about-badge-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.875rem;
    margin-top: 4px;
}

.about-content p {
    color: var(--gray-1);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

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

.about-feature i {
    color: var(--gold);
    font-size: 0.5rem;
}

/* ========================================
   ROOMS SECTION
   ======================================== */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.room-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background-color: var(--gold);
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 500;
}

.room-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.room-price-amount {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

.room-price-per {
    font-size: 0.875rem;
    color: var(--gray-2);
}

.room-content {
    padding: 24px;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.room-description {
    color: var(--gray-2);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--gray-2);
}

.room-feature i {
    color: var(--gold);
    font-size: 0.875rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(216, 175, 114, 0.05);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: rgba(216, 175, 114, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 175, 114, 0.3);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background-color: var(--gold);
    border-color: var(--gold);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon i {
    color: var(--black);
}

.feature-title {
    position: relative;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-title {
    color: var(--gold);
}

.feature-text {
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.feature-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: rgba(255, 255, 255, 0.1);
    border-style: solid;
    transition: var(--transition-normal);
}

.feature-corner.top-right {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.feature-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.feature-card:hover .feature-corner {
    border-color: var(--gold);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid var(--gray-3);
    color: var(--gray-1);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(21, 21, 21, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.gallery-border {
    position: absolute;
    inset: 16px;
    border: 1px solid var(--gold);
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-border {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(21, 21, 21, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    opacity: 0.8;
    transition: var(--transition-normal);
}

.lightbox-close:hover {
    opacity: 1;
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2.5rem;
    opacity: 0.6;
    transition: var(--transition-normal);
    padding: 20px;
}

.lightbox-nav:hover {
    opacity: 1;
    color: var(--gold);
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
}

.lightbox-category {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lightbox-title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 8px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonial-card {
    position: relative;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-quote-icon {
    position: absolute;
    top: -24px;
    left: 40px;
    width: 48px;
    height: 48px;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote-icon i {
    font-size: 1.25rem;
    color: var(--black);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.testimonial-name {
    font-weight: 600;
    color: var(--black);
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--gray-2);
}

.testimonial-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.testimonial-nav-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-3);
    transition: var(--transition-normal);
}

.testimonial-dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

.testimonial-corner {
    position: absolute;
    width: 64px;
    height: 64px;
    border-color: rgba(216, 175, 114, 0.3);
    border-style: solid;
}

.testimonial-corner.top-right {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0;
}

.testimonial-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-width: 0 0 2px 2px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 48px;
}

.contact-form-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.contact-info-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(216, 175, 114, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--gold);
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--gold);
    transition: var(--transition-normal);
}

.contact-info-item:hover .contact-info-icon i {
    color: var(--black);
}

.contact-info-title {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.contact-info-text {
    color: var(--gray-2);
}

.contact-map {
    margin-top: 24px;
    height: 280px;
    background-color: var(--gray-3);
}

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

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
    background-color: var(--black);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
    border-top: 1px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 24px;
}

.footer-logo-main {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.footer-logo-sub {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 4px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-posts li {
    margin-bottom: 16px;
}

.footer-posts a {
    display: flex;
    flex-direction: column;
}

.footer-posts .post-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: var(--transition-normal);
}

.footer-posts a:hover .post-title {
    color: var(--gold);
}

.footer-posts .post-date {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--black);
    color: var(--white);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu,
    .btn-reservation {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        order: -1;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-row: span 1;
    }
    
    .testimonial-card {
        padding: 40px;
    }
    
    .testimonial-text {
        font-size: 1.25rem;
    }
    
    .testimonial-nav {
        position: static;
        margin-top: 24px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar-left .top-bar-link span {
        display: none;
    }

    .hero-section {
        min-height: auto;
        align-items: flex-start;
        padding: 32px 0 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 24px 0;
    }

    .hero-title {
        font-size: clamp(2.1rem, 11vw, 3rem);
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        letter-spacing: 0.18em;
        margin-bottom: 16px;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-booking {
        margin-top: 20px;
        padding: 20px 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .about-secondary-image {
        display: none;
    }
    
    .about-badge {
        left: 16px;
        bottom: 16px;
    }

    .logo img {
        height: 48px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 20px;
    }

    .hero-label {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 10vw, 2.4rem);
        margin-bottom: 10px;
    }

    .hero-text {
        margin-bottom: 18px;
    }

    .hero-booking {
        padding: 16px 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .gallery-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slideIn {
    animation: slideIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
