/**
 * Travel With Julz - Main Stylesheet
 * Version: 2.13.5
 * Last Updated: 2026-02-24
 * Design Reference: React/Tailwind original
 */

/* Fonts loaded in header.php for better performance */

/* ================================
   CSS Variables
   ================================ */
:root {
    /* Slate colors */
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;

    /* Legacy color aliases (for PHP templates) */
    --primary-dark: #0f172a;
    --secondary-dark: #1e293b;
    --border-dark: #334155;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --accent-purple: #6c63ff;
    --accent-pink: #ec4899;
    --accent-cyan: #22d3ee;
    --accent-gold: #facc15;

    /* Accent colors */
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --fuchsia-500: #d946ef;
    --fuchsia-600: #c026d3;
    --fuchsia-900: #701a75;
    --yellow-100: #fef9c3;
    --yellow-300: #fde047;
    --yellow-400: #facc15;
    --yellow-900: #713f12;
    --blue-950: #172554;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;

    /* Typography - Using Montserrat Extra Bold for display */
    --font-display: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', 'Inter', sans-serif;
    --font-body: 'Rubik', 'Inter', sans-serif;

    /* Spacing */
    --header-height: 80px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Gradients */
    --gradient-purple-pink: linear-gradient(135deg, #a855f7, #ec4899);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ================================
   Reset & Base
   ================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--slate-900);
    color: var(--slate-200);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Icon Size Utilities */
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; }
.h-7 { height: 1.75rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }

/* Background gradient effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 80rem;
    height: 80rem;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    right: 0;
    width: 60rem;
    height: 60rem;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.2) 0%, transparent 70%);
    transform: translate(50%, 50%);
    pointer-events: none;
    z-index: -1;
}

/* RTL */
[dir="rtl"] {
    text-align: right;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--pink-500);
    color: white;
    border-radius: 0.5rem;
    z-index: 9999;
}

.skip-link:focus {
    top: 1rem;
}

/* ================================
   Typography
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: white;
}

h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--slate-300);
    margin-bottom: 1rem;
}

a {
    color: var(--pink-400);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--pink-500);
}

/* ================================
   Layout
   ================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* ================================
   Header
   ================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-800);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .header-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .header-container { padding: 0 2rem; }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    min-width: 0;
    flex: 1;
}

.logo-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
    z-index: -1;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--slate-400);
    white-space: nowrap;
    max-width: 300px;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        margin-left: 2rem;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--slate-300);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-link svg {
    width: 1rem;
    height: 1rem;
}

/* ================================
   Language Dropdown
   ================================ */
.lang-dropdown {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .lang-dropdown {
        display: block;
    }
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 0.75rem;
}

.lang-dropdown-btn:hover {
    color: var(--pink-400);
}

.lang-dropdown-btn svg {
    flex-shrink: 0;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 140px;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    color: var(--slate-300);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--slate-700);
    color: white;
}

.lang-option.active {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink-400);
}

.lang-option-code {
    font-weight: 600;
    font-size: 0.875rem;
}

.lang-option-name {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.lang-option:hover .lang-option-name {
    color: var(--slate-300);
}

.lang-option.active .lang-option-name {
    color: var(--pink-300);
}

/* Mobile Language Buttons */
.mobile-lang-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    color: var(--slate-300);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-lang-btn:hover {
    background: var(--slate-700);
    color: white;
}

.mobile-lang-btn.active {
    background: linear-gradient(135deg, var(--fuchsia-500), var(--pink-500));
    border-color: transparent;
    color: white;
}

/* ================================
   Mobile Language Dropdown
   ================================ */
.mobile-lang-dropdown {
    position: relative;
    padding: 0 1.5rem 1rem;
}

.mobile-lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    color: var(--slate-300);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-lang-dropdown-btn:hover {
    background: var(--slate-700);
    border-color: var(--slate-600);
    color: white;
}

.mobile-lang-dropdown.open .mobile-lang-dropdown-btn {
    border-color: var(--pink-500);
}

.mobile-lang-current {
    flex: 1;
    text-align: start;
}

.mobile-lang-chevron {
    transition: transform 0.2s ease;
}

.mobile-lang-dropdown.open .mobile-lang-chevron {
    transform: rotate(180deg);
}

.mobile-lang-dropdown-menu {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 200;
}

.mobile-lang-dropdown.open .mobile-lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--slate-300);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: var(--transition);
}

.mobile-lang-option:hover {
    background: var(--slate-700);
    color: white;
}

.mobile-lang-option.active {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink-400);
}

.mobile-lang-option-code {
    font-weight: 600;
    min-width: 28px;
}

.mobile-lang-option-name {
    flex: 1;
    font-size: 0.875rem;
    color: var(--slate-400);
}

.mobile-lang-option:hover .mobile-lang-option-name {
    color: var(--slate-300);
}

.mobile-lang-option.active .mobile-lang-option-name {
    color: var(--pink-300);
}

.mobile-lang-check {
    color: var(--pink-400);
}

/* Header CTA */
.header-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, var(--fuchsia-500), var(--pink-600));
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    text-decoration: none;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
    color: white;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--slate-900);
    border-left: 1px solid var(--slate-800);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 101;
    display: flex;
    flex-direction: column;
}

[dir="rtl"] .mobile-nav {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid var(--slate-800);
    transform: translateX(-100%);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--slate-800);
}

.mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: var(--slate-400);
    cursor: pointer;
}

.mobile-nav-close:hover {
    color: var(--pink-400);
}

.mobile-nav-list {
    flex: 1;
    padding: 1rem;
    list-style: none;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--slate-300);
    font-weight: 500;
    border-radius: 0.5rem;
    transition: var(--transition);
    margin-bottom: 0.25rem;
    text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--slate-800);
    color: white;
}

.mobile-nav-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--slate-800);
}

.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.mobile-whatsapp-btn:hover {
    background: #128C7E;
    color: white;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-950) 0%, var(--fuchsia-900) 50%, var(--yellow-900) 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* Floating elements */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.3), rgba(249, 115, 22, 0.3));
    border-radius: 50%;
    filter: blur(40px);
    animation: float1 6s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 8rem;
    left: 4rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 50%;
    filter: blur(40px);
    animation: float2 8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(30px); }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
    padding-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

.hero-title-highlight {
    display: block;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--yellow-400);
}

.hero-slogan {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 300;
    color: var(--yellow-100);
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-slogan-bold {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 700;
    color: var(--yellow-300);
    margin-bottom: 3rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: var(--gray-100);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: clamp(1.75rem, 5vw, 2rem);
    font-weight: 700;
    color: var(--yellow-400);
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-300);
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(to right, var(--fuchsia-500), var(--pink-600));
    color: white;
    box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--fuchsia-600), #be185d);
    box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.4);
    color: white;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary {
    background: var(--slate-800);
    color: var(--slate-200);
    border: 1px solid var(--slate-700);
}

.btn-secondary:hover {
    border-color: var(--pink-500);
    color: var(--pink-400);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

.btn-lg {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* ================================
   Sections
   ================================ */
.section {
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink-400);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-title-highlight {
    color: var(--pink-400);
}

.section-description {
    color: var(--slate-400);
    font-size: 1.125rem;
}

/* Section with dark background */
.section-dark {
    background: var(--slate-800);
    background: linear-gradient(180deg, var(--slate-800) 0%, var(--slate-900) 100%);
}

/* ================================
   Services Section
   ================================ */
.services-section {
    background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-800) 50%, var(--slate-900) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-card:nth-child(5) {
        grid-column: 2;
    }
}

.service-card {
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--slate-800);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    transition: opacity 0.3s;
    filter: blur(20px);
}

.service-card:hover .service-card-bg {
    opacity: 0.2;
}

.service-card[data-gradient="purple-pink"] .service-card-bg {
    background: linear-gradient(135deg, #a855f7, var(--pink-500));
}

.service-card[data-gradient="cyan-blue"] .service-card-bg {
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
}

.service-card[data-gradient="orange-red"] .service-card-bg {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.service-card[data-gradient="emerald-teal"] .service-card-bg {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.service-card[data-gradient="blue-indigo"] .service-card-bg {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.service-card-content {
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 1;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.gradient-purple-pink {
    background: linear-gradient(135deg, #a855f7, var(--pink-500));
}

.gradient-cyan-blue {
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
}

.gradient-orange-red {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.gradient-emerald-teal {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.gradient-blue-indigo {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.service-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--pink-400);
}

.service-description {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink-400);
    flex-shrink: 0;
}

.btn-service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--slate-800);
    color: var(--slate-200);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-service:hover {
    background: var(--slate-700);
    border-color: var(--pink-500);
    color: white;
}

.btn-service svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.btn-service:hover svg {
    transform: translateX(-4px);
}

/* LTR: Flip arrow to point right and animate right */
html[dir="ltr"] .btn-service svg,
html[dir="ltr"] .btn-secondary svg {
    transform: scaleX(-1);
}

html[dir="ltr"] .btn-service:hover svg,
html[dir="ltr"] .btn-secondary:hover svg {
    transform: scaleX(-1) translateX(-4px);
}

/* ================================
   Cards Grid
   ================================ */
.items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .items-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }
}

@media (min-width: 1280px) {
    .items-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
    }
}

/* ================================
   Cards
   ================================ */
.card {
    display: flex;
    flex-direction: column;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--slate-800);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

a.card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(236, 72, 153, 0.1);
}

.card-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--fuchsia-500), var(--pink-500));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

[dir="rtl"] .card-badge {
    right: auto;
    left: 1rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.card-description {
    flex: 1;
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-meta-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--pink-400);
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.card-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22d3ee;
}

.card-price-unit {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.card-features {
    list-style: none;
    margin-bottom: 1rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
}

.card-features li svg {
    width: 1rem;
    height: 1rem;
    color: var(--pink-400);
    flex-shrink: 0;
}

/* ================================
   Page Header
   ================================ */
.page-header {
    padding: 3rem 1rem 3rem;
    background: linear-gradient(180deg, var(--slate-800) 0%, var(--slate-900) 100%);
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    color: var(--slate-400);
}

.breadcrumb a {
    color: var(--slate-400);
}

.breadcrumb a:hover {
    color: var(--pink-400);
}

/* ================================
   Filters
   ================================ */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    background: var(--slate-800);
    color: var(--slate-300);
    border: 1px solid var(--slate-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--pink-500);
    color: var(--pink-400);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--fuchsia-500), var(--pink-500));
    color: white;
    border-color: transparent;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid var(--slate-800);
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-container {
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 640px) {
    .footer-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .footer-container { padding: 0 2rem; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Footer brand spans full width on mobile */
.footer-brand {
    grid-column: 1 / -1;
}

/* Footer links and services side by side on mobile */
.footer-links,
.footer-services {
    grid-column: auto;
}

/* Footer contact spans full width on mobile */
.footer-contact {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand,
    .footer-links,
    .footer-services,
    .footer-contact {
        grid-column: auto;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.footer-tagline {
    color: var(--pink-400);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--slate-300);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-services a {
    color: var(--slate-300);
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--pink-400);
    transform: translateX(-4px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate-300);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item svg {
    color: var(--pink-400);
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    color: var(--slate-400);
    transition: var(--transition);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.social-link:hover {
    border-color: var(--pink-500);
    color: var(--pink-400);
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid var(--slate-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--pink-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--pink-300);
    text-decoration: underline;
}

/* Credit Tooltip */
.footer-credit {
    position: relative;
    display: inline-block;
}

.credit-trigger {
    color: var(--pink-400);
    cursor: pointer;
    transition: color 0.2s ease;
}

.credit-trigger:hover {
    color: var(--pink-300);
    text-decoration: underline;
}

.credit-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 240px;
    z-index: 100;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.credit-tooltip.active {
    display: flex;
}

.tooltip-title {
    color: var(--slate-300);
    font-weight: 500;
    font-size: 0.8rem;
}

.tooltip-email-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tooltip-email {
    color: var(--pink-400);
    font-size: 0.85rem;
    font-family: monospace;
}

.tooltip-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--slate-400);
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    transition: color 0.2s ease;
    border-radius: 0.25rem;
}

.tooltip-copy:hover {
    color: var(--pink-400);
}

.tooltip-copy.copied {
    color: var(--green-400);
}

/* ================================
   Testimonials Section - Carousel
   ================================ */
.testimonials-section {
    background: var(--slate-900);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 100%;
    padding: 0 0 3rem;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--slate-800);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0.6;
    transform: scale(0.95);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--pink-500);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.15);
}

.testimonial-card:hover {
    border-color: var(--slate-600);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--yellow-400);
    filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.4));
}

.testimonial-text {
    color: var(--slate-300);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.75rem;
    min-height: 80px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-info {
    text-align: right;
}

.testimonial-name {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-location {
    display: block;
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.testimonial-avatar {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--slate-700);
    color: var(--slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--pink-500);
    color: var(--pink-400);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.carousel-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--slate-700);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--slate-500);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--pink-500), var(--fuchsia-500));
    width: 1.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

/* Avatar Colors */
.avatar-yellow {
    background: linear-gradient(135deg, var(--yellow-400), #f59e0b);
}

.avatar-cyan {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.avatar-pink {
    background: linear-gradient(135deg, var(--pink-500), var(--fuchsia-500));
}

.avatar-purple {
    background: linear-gradient(135deg, var(--purple-500), var(--violet-600));
}

.avatar-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.avatar-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

/* ================================
   Floating WhatsApp
   ================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
}

@media (max-width: 767px) {
    .whatsapp-float {
        display: flex;
    }
}

[dir="rtl"] .whatsapp-float {
    left: auto;
    right: 1.5rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
    color: white;
}

.whatsapp-float svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* ================================
   Contact Form
   ================================ */
.contact-form {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--slate-800);
    border-radius: 1rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: var(--slate-900);
    color: white;
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--pink-500);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--slate-500);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-select {
    appearance: none;
    cursor: pointer;
}

/* ================================
   Utilities
   ================================ */
.text-center { text-align: center; }
.text-pink { color: var(--pink-400); }
.text-cyan { color: #22d3ee; }
.text-yellow { color: var(--yellow-400); }
.text-gray { color: var(--slate-400); }
.text-white { color: white; }

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* ================================
   Empty State
   ================================ */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-state-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: var(--slate-600);
}

.empty-state-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: var(--slate-400);
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    background: linear-gradient(135deg, var(--fuchsia-500), var(--pink-600));
    padding: 4rem 1rem;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section .btn {
    background: white;
    color: var(--fuchsia-600);
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--fuchsia-600);
}

/* ================================
   Search Bar & Filter Tabs (Pages)
   ================================ */
.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--slate-500);
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--slate-800);
    color: white;
    border: 1px solid var(--slate-700);
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--pink-500);
}

.search-input::placeholder {
    color: var(--slate-500);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-tab {
    padding: 0.5rem 1.25rem;
    background: var(--slate-800);
    color: var(--slate-300);
    border: 1px solid var(--slate-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    border-color: var(--pink-500);
    color: var(--pink-400);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--fuchsia-500), var(--pink-500));
    color: white;
    border-color: transparent;
}

/* ================================
   Clubs Page
   ================================ */
.clubs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .clubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clubs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.club-card {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.club-card:hover {
    border-color: var(--pink-500);
    transform: translateY(-4px);
}

.club-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.club-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.club-card:hover .club-card-image img {
    transform: scale(1.05);
}

.club-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--slate-900);
    color: var(--pink-400);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.club-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.club-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.club-card-description {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(0.875rem * 1.5 * 3);
}

.club-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}

.club-card-location svg {
    color: var(--pink-400);
}

.club-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    min-height: 2rem;
}

.club-tag {
    padding: 0.25rem 0.5rem;
    background: var(--slate-700);
    color: var(--slate-300);
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.club-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-700);
    margin-top: auto;
}

.club-card-price {
    text-align: left;
}

.club-card-price .price-label,
.boat-card-price .price-label,
.villa-card-price .price-label,
.hotel-card-price .price-from,
.hotel-card-price .price-unit {
    color: var(--slate-500);
    font-size: 0.75rem;
}

.club-card-price .price-value,
.boat-card-price .price-value,
.villa-card-price .price-value,
.hotel-card-price .price-value {
    color: var(--pink-400);
    font-size: 1.125rem;
    font-weight: 700;
}

/* ================================
   Parties Page (Events)
   ================================ */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .event-card {
        grid-template-columns: 140px 1fr 200px;
    }
}

.event-card:hover {
    border-color: var(--pink-500);
}

.event-card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--slate-900);
}

@media (max-width: 767px) {
    .event-card-price {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }
}

.event-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-400);
}

.event-price-label {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.event-price-vip {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-top: 0.5rem;
}

.event-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--slate-400);
    font-size: 0.8125rem;
}

.event-meta-item svg {
    color: var(--pink-400);
}

.event-card-description {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.event-availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.availability-count {
    font-size: 1rem;
    font-weight: 700;
    color: #22d3ee;
}

.availability-label {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.event-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

@media (min-width: 768px) {
    .event-card-image {
        aspect-ratio: auto;
    }
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--pink-500);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* ================================
   Boats Page
   ================================ */
.boats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .boats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.boat-card {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.boat-card:hover {
    border-color: var(--pink-500);
    transform: translateY(-4px);
}

.boat-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.boat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.boat-card:hover .boat-card-image img {
    transform: scale(1.05);
}

.boat-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--slate-900);
    color: var(--pink-400);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.boat-card-featured {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--pink-500);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.boat-card-content {
    padding: 1.25rem;
}

.boat-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.boat-card-description {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.boat-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.boat-detail {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--slate-400);
    font-size: 0.8125rem;
}

.boat-detail svg {
    color: var(--pink-400);
}

.boat-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.boat-tag {
    padding: 0.25rem 0.5rem;
    background: var(--slate-700);
    color: var(--slate-300);
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.boat-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-700);
}

.boat-card-price {
    text-align: left;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .included-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }
}

.included-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-300);
    font-size: 0.875rem;
}

.included-item svg {
    color: #22d3ee;
}

/* ================================
   Villas Page
   ================================ */
.villas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .villas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.villa-card {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.villa-card:hover {
    border-color: var(--pink-500);
    transform: translateY(-4px);
}

.villa-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.villa-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.villa-card:hover .villa-card-image img {
    transform: scale(1.05);
}

.villa-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--pink-500);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.villa-card-rating {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--yellow-400);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 0.25rem;
}

.villa-card-content {
    padding: 1.25rem;
}

.villa-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.villa-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}

.villa-card-location svg {
    color: var(--pink-400);
}

.villa-card-description {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.villa-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--slate-900);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.villa-spec {
    text-align: center;
}

.villa-spec .spec-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #22d3ee;
}

.villa-spec .spec-label {
    font-size: 0.6875rem;
    color: var(--slate-500);
}

.villa-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.villa-tag {
    padding: 0.25rem 0.5rem;
    background: var(--slate-700);
    color: var(--slate-300);
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.villa-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-700);
}

.villa-card-price {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.why-villa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .why-villa-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-villa-item {
    text-align: center;
}

.why-villa-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--fuchsia-500), var(--pink-500));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.why-villa-item h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.why-villa-item p {
    color: var(--slate-400);
    font-size: 0.875rem;
}

/* ================================
   Hotels Page
   ================================ */
.hotels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hotels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hotel-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hotel-card {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hotel-card:hover {
    border-color: var(--pink-500);
    transform: translateY(-4px);
}

.hotel-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-card-image img {
    transform: scale(1.05);
}

.hotel-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--pink-500);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.hotel-card-category {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--slate-900);
    color: var(--slate-300);
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.hotel-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card-header {
    margin-bottom: 0.5rem;
}

.hotel-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.hotel-stars {
    display: flex;
    gap: 2px;
    color: var(--yellow-400);
}

.hotel-stars svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0;
}

.hotel-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

.hotel-card-location svg {
    color: var(--pink-400);
}

.hotel-card-ratings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    direction: ltr;
}

.hotel-stars-rating .hotel-stars {
    display: flex;
    gap: 2px;
    color: var(--yellow-400);
}

.hotel-stars-rating .hotel-stars svg {
    width: 14px !important;
    height: 14px !important;
}

.agoda-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    order: 1;
    direction: ltr;
}

.hotel-stars-rating {
    order: 2;
}

.agoda-rating .agoda-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    font-weight: 500;
}

.agoda-rating .rating-value {
    font-weight: 600;
    color: white;
}

.agoda-rating .rating-count {
    color: white;
    font-size: 0.975rem;
    margin-inline-start: 0.35rem;
}

.hotel-card-distance {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink-400);
    font-size: 0.75rem;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.hotel-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hotel-tag {
    padding: 0.25rem 0.5rem;
    background: var(--slate-700);
    color: var(--slate-300);
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-700);
    margin-top: auto;
}

.hotel-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.hotel-card-actions {
    flex-shrink: 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: right;
}

@media (min-width: 768px) {
    .tips-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tip-card {
    background: var(--slate-900);
    border: 1px solid var(--slate-700);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.tip-card h4 {
    color: var(--pink-400);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ================================
   Contact Page
   ================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1050px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1.3fr 1fr;
        align-items: start;
    }
}

.contact-form-container,
.contact-info-container {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.875rem;
    padding: 1.25rem 1.5rem;
}

.contact-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-section-desc {
    color: var(--slate-400);
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-info-list {
    margin-bottom: 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--slate-900);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item:hover {
    border-color: var(--slate-600);
}

.contact-info-primary {
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.05);
}

.contact-info-primary:hover {
    border-color: rgba(37, 211, 102, 0.5);
}

.contact-info-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.contact-info-icon.whatsapp {
    background: #25D366;
}

.contact-info-icon.email {
    background: var(--pink-500);
}

.contact-info-icon.location {
    background: var(--accent-purple);
}

.contact-info-content {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.contact-info-value {
    color: white;
    font-weight: 500;
}

.contact-info-note {
    font-size: 0.75rem;
    color: #25D366;
    margin-top: 0.25rem;
}

.contact-social {
    margin-bottom: 2rem;
}

.contact-social-title,
.contact-availability-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-links .social-link {
    width: 2.5rem;
    height: 2.5rem;
}

.contact-social-links .social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: white;
}

.contact-social-links .social-link.facebook {
    background: #1877F2;
    border-color: transparent;
    color: white;
}

.contact-social-links .social-link.tiktok {
    background: #000000;
    border-color: #333;
    color: white;
}

.availability-list {
    background: var(--slate-900);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    padding: 1rem;
}

.availability-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--slate-300);
}

.availability-item:not(:last-child) {
    border-bottom: 1px solid var(--slate-700);
}

.availability-item.highlight span:last-child {
    color: var(--pink-400);
}

/* ================================
   FAQ Section
   ================================ */
.faq-list {
    text-align: right;
    margin-top: 2rem;
}

.faq-item {
    background: var(--slate-900);
    border: 1px solid var(--slate-700);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: white;
    list-style: none;
    transition: var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--pink-400);
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    color: var(--slate-400);
    line-height: 1.6;
}

/* ================================
   Parties Page - Reference Layout
   ================================ */
/* Month Group Headers */
.party-month-group {
    margin-bottom: 2.5rem;
}

.party-month-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.party-month-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.party-month-header svg {
    color: var(--accent-pink);
}

.party-events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

a.party-event-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.party-event-card {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .party-event-card {
        grid-template-columns: 230px 1fr 160px;
    }
    .party-event-image { order: 1; }
    .party-event-info { order: 2; }
    .party-event-price { order: 3; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .party-event-card {
        grid-template-columns: 173px 1fr 140px;
    }
    .party-event-image { order: 1; }
    .party-event-info { order: 2; }
    .party-event-price { order: 3; }
}

.party-event-card:hover {
    border-color: var(--slate-600);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Price Column */
.party-event-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--slate-900);
    border-right: 1px solid var(--slate-700);
}

@media (max-width: 767px) {
    .party-event-price {
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        border-right: none;
        border-top: 1px solid var(--slate-700);
        order: 2;
    }
    .party-event-image {
        order: 1;
    }
    .party-event-info {
        order: 3;
    }
}

.party-price-amount {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, var(--pink-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .party-price-amount {
        font-size: 1.5rem;
    }
}

.party-price-per {
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Info Column */
.party-event-info {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .party-event-info {
        padding: 1.5rem;
    }
}

.party-event-title {
    font-family: var(--font-body);
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.party-event-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.party-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--slate-400);
    font-size: 0.9375rem;
}

.party-meta-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--pink-400);
}

.party-event-desc {
    color: var(--slate-400);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.party-desc-toggle {
    color: var(--pink-400) !important;
    cursor: pointer;
    font-size: inherit;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    display: inline;
    font-weight: 600;
}

.party-desc-toggle:hover {
    color: var(--pink-300) !important;
    text-decoration: underline;
}

.party-event-spots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.party-event-spots svg {
    width: 1rem;
    height: 1rem;
    color: var(--slate-500);
}

.party-event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--pink-500), #f97316);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
    max-width: fit-content;
}

.party-event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    color: white;
}

.party-event-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.party-hotels-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.875rem 2rem;
    background: rgba(99, 102, 241, 0.15);
    color: var(--indigo-400, #818cf8);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.party-hotels-link:hover {
    background: rgba(99, 102, 241, 0.25);
    color: #a5b4fc;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.party-hotels-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Party actions flex wrapper (parties page - inline layout) */
.party-event-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Home page - hotels link as simple text link */
.party-hotels-link--home {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: var(--indigo-400, #818cf8);
    font-size: 0.85rem;
    font-weight: 500;
}

.party-hotels-link--home:hover {
    background: none;
    border: none;
    box-shadow: none;
    transform: none;
    text-decoration: underline;
    color: #a5b4fc;
}

.party-hotels-link--home svg {
    width: 1rem;
    height: 1rem;
}

/* Image Column */
.party-event-image {
    position: relative;
    min-height: 128px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .party-event-image {
        min-height: 256px;
    }
}

@media (max-width: 767px) {
    .party-event-image {
        aspect-ratio: 16/9;
    }
}

.party-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.party-event-card:hover .party-event-image img {
    transform: scale(1.05);
}

.party-event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

/* ================================
   SEO Content Block
   ================================ */
.seo-content-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.seo-content-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white, #fff);
    margin-bottom: 1rem;
}

.seo-content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-400, #94a3b8);
    max-width: 800px;
    margin: 0 auto;
}
