/* ==========================================================================
   NG AFYON - Premium Thermal Hotel Design System
   Ultra Modern 2024/2025 Design - Inspired by Aceternity, Shadcn, Magic UI
   ========================================================================== */

/* CSS Variables - Luxury Thermal Theme */
:root {
    /* Brand Colors - Warm Termal Palette */
    --primary: #1e3a5f;
    --primary-light: #2d5a87;
    --primary-dark: #0f1f33;
    --secondary: #c9a962;
    --secondary-light: #e0c78a;
    --secondary-dark: #a68b4b;
    
    /* Thermal Colors */
    --thermal-blue: #4fa3d1;
    --thermal-teal: #2dd4bf;
    --thermal-warm: #f59e0b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #4fa3d1 100%);
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e0c78a 50%, #f4e4bc 100%);
    --gradient-thermal: linear-gradient(135deg, #2dd4bf 0%, #4fa3d1 50%, #1e3a5f 100%);
    --gradient-dark: linear-gradient(135deg, #0f1f33 0%, #1e3a5f 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(77, 163, 209, 0.3) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(45, 212, 191, 0.2) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(201, 169, 98, 0.2) 0px, transparent 50%);
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafbfc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Shadows - Layered & Soft */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(201, 169, 98, 0.3);
    --shadow-glow-blue: 0 0 40px rgba(77, 163, 209, 0.3);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 150ms var(--ease-out);
    --transition-base: 300ms var(--ease-out);
    --transition-slow: 500ms var(--ease-out);
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

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 {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) 0;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.header.scrolled .header-inner {
    padding: var(--space-3) 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.header.scrolled .logo-main {
    color: var(--primary-dark);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
}

.nav-link {
    display: block;
    padding: var(--space-2) var(--space-4);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.header.scrolled .nav-link {
    color: var(--gray-700);
}

.header.scrolled .nav-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-cta {
    background: var(--secondary);
    color: var(--primary-dark) !important;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--secondary-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.header.scrolled .mobile-toggle span {
    background: var(--gray-800);
}

/* ==========================================================================
   HERO SECTION - CINEMATIC
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(15, 31, 51, 0.4) 0%, 
        rgba(15, 31, 51, 0.6) 50%,
        rgba(15, 31, 51, 0.8) 100%);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: var(--space-20) var(--space-6);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary-light);
    margin-bottom: var(--space-8);
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-4);
    letter-spacing: 0.05em;
}

.hero-title span {
    display: block;
    font-weight: 700;
    color: var(--secondary);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.btn-dark:hover {
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-3px);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: 1.05rem;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   FEATURE CARDS - BENTO STYLE
   ========================================================================== */

.features-section {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-title span {
    background: var(--gradient-thermal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-6);
}

.bento-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.bento-card:hover {
    transform: translateY(-8px);
}

/* Card Sizes */
.bento-hero {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 500px;
}

.bento-tall {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 500px;
}

.bento-wide {
    grid-column: span 6;
    min-height: 280px;
}

.bento-square {
    grid-column: span 4;
    min-height: 280px;
}

.bento-small {
    grid-column: span 3;
    min-height: 200px;
}

/* Card with Image Background */
.bento-card.has-image {
    background: var(--gray-900);
}

.bento-card .card-bg {
    position: absolute;
    inset: 0;
}

.bento-card .card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.bento-card:hover .card-bg img {
    transform: scale(1.08);
}

.bento-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 31, 51, 0.9) 100%);
}

.bento-card .card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-8);
    color: var(--white);
}

.bento-card .card-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-light);
    margin-bottom: var(--space-3);
    width: fit-content;
}

.bento-card .card-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

.bento-card .card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Glass Card */
.bento-card.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
}

.bento-card.glass .card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--space-4);
}

.bento-card.glass .card-title {
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.bento-card.glass .card-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Gradient Card */
.bento-card.gradient {
    background: var(--gradient-primary);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-card.gradient .card-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.bento-card.gradient .card-title {
    color: var(--white);
    font-size: 1.25rem;
}

.bento-card.gradient .card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ==========================================================================
   ROOMS SECTION
   ========================================================================== */

.rooms-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.room-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.room-card.featured {
    grid-row: span 2;
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-card.featured .room-image {
    height: 400px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.room-badge.premium {
    background: var(--gradient-gold);
}

.room-badge.new {
    background: var(--thermal-teal);
    color: var(--white);
}

.room-info {
    padding: var(--space-6);
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

.room-subtitle {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
}

.room-specs {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.room-spec {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.85rem;
    color: var(--gray-600);
}

.room-spec svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
}

.room-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.room-link:hover {
    gap: var(--space-3);
    color: var(--secondary-dark);
}

/* ==========================================================================
   SPA SECTION - IMMERSIVE
   ========================================================================== */

.spa-section {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--primary-dark);
    overflow: hidden;
}

.spa-bg-pattern {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

.spa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.spa-content {
    color: var(--white);
}

.spa-content .section-badge {
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.4);
    color: var(--secondary);
}

.spa-content .section-title {
    color: var(--white);
    margin-bottom: var(--space-6);
}

.spa-content .section-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: var(--space-8);
}

.spa-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.spa-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spa-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.spa-feature-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.spa-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.spa-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.spa-image:first-child {
    grid-row: span 2;
}

.spa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   RESTAURANT SECTION
   ========================================================================== */

.restaurant-section {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.restaurant-image-stack {
    position: relative;
    height: 600px;
}

.restaurant-img {
    position: absolute;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.restaurant-img:nth-child(1) {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.restaurant-img:nth-child(2) {
    width: 60%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.restaurant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-floating {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-5) var(--space-8);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 3;
    text-align: center;
}

.restaurant-floating-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-1);
}

.restaurant-floating-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.restaurant-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.restaurant-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.restaurant-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.restaurant-item-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
    min-width: 50px;
}

.restaurant-item-content h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-1);
}

.restaurant-item-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(45, 212, 191, 0.15) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-title span {
    color: var(--secondary);
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-10);
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
    background: var(--secondary);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    margin-top: var(--space-12);
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--gray-900);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: var(--space-4);
}

.footer-logo-main {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-desc {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

.footer-column h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-5);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: var(--space-2);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* ==========================================================================
   WHATSAPP BUTTON
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   PAGE HERO - INNER PAGES
   ========================================================================== */

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 51, 0.5) 0%, rgba(15, 31, 51, 0.8) 100%);
    z-index: -1;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-4);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .bento-hero { grid-column: span 12; }
    .bento-tall { grid-column: span 6; }
    .bento-wide { grid-column: span 6; }
    .bento-square { grid-column: span 6; }
    .bento-small { grid-column: span 6; }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px var(--space-6) var(--space-6);
        gap: var(--space-2);
        transition: var(--transition-base);
        box-shadow: var(--shadow-2xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--gray-700);
        padding: var(--space-3) var(--space-4);
        width: 100%;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
    }
    
    .bento-hero {
        grid-column: span 12;
    }
    
    .bento-tall {
        grid-column: span 12;
        min-height: 350px;
    }
    
    .bento-wide {
        grid-column: span 12;
    }
    
    .bento-square { 
        grid-column: span 6; 
    }
    
    .bento-small { 
        grid-column: span 6;
        min-height: 180px;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spa-grid,
    .restaurant-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .spa-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }
    
    .spa-image:first-child {
        grid-row: span 1;
    }
    
    .spa-image {
        height: 250px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .local-flavors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: var(--space-16) var(--space-4);
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .bento-hero {
        grid-column: span 2;
        min-height: 300px;
    }
    
    .bento-tall {
        grid-column: span 2;
        min-height: 280px;
    }
    
    .bento-wide {
        grid-column: span 2;
        min-height: 220px;
    }
    
    .bento-square {
        grid-column: span 1;
        min-height: 200px;
    }
    
    .bento-small {
        grid-column: span 1;
        min-height: 160px;
    }
    
    .bento-card.glass {
        padding: var(--space-5);
    }
    
    .bento-card.glass .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: var(--space-3);
    }
    
    .bento-card.glass .card-title {
        font-size: 1.1rem;
    }
    
    .bento-card.gradient .card-number {
        font-size: 2.5rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .room-card.featured {
        grid-row: span 1;
    }
    
    .room-card.featured .room-image {
        height: 280px;
    }
    
    .spa-images {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .spa-image {
        height: 200px;
    }
    
    .spa-image:first-child {
        grid-row: span 1;
        height: 250px;
    }
    
    .restaurant-image-stack {
        height: 350px;
    }
    
    .restaurant-img:nth-child(1) {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .restaurant-img:nth-child(2) {
        display: none;
    }
    
    .restaurant-floating {
        bottom: 10%;
        padding: var(--space-4) var(--space-6);
    }
    
    .restaurant-floating-value {
        font-size: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .event-card {
        padding: var(--space-6);
    }
    
    .local-flavors-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .cta-trust {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Restaurant Full Card Mobile */
    .restaurant-card-full {
        grid-template-columns: 1fr;
    }
    
    .restaurant-image {
        min-height: 250px;
    }
    
    .restaurant-content {
        padding: var(--space-6);
    }
    
    .restaurant-details {
        flex-direction: column;
        gap: var(--space-2);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .btn-large {
        padding: var(--space-4) var(--space-6);
        font-size: 0.95rem;
    }
    
    .section-header {
        padding: 0 var(--space-2);
        margin-bottom: var(--space-10);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .spa-features {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-hero,
    .bento-tall,
    .bento-wide,
    .bento-square,
    .bento-small {
        grid-column: span 1;
    }
    
    .bento-small {
        min-height: 140px;
    }
    
    .bento-card .card-content {
        padding: var(--space-5);
    }
    
    .bento-card .card-title {
        font-size: 1.2rem;
    }
    
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .cta-content {
        padding: 0 var(--space-2);
    }
    
    .cta-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .cta-desc {
        font-size: 1rem;
    }
    
    /* Form responsive */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    /* Room specs mobile */
    .room-specs {
        flex-direction: column;
        gap: var(--space-2);
    }
}
