@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Local fonts - Grift for headlines, JUST Sans for UI */
@font-face {
    font-family: 'Grift';
    src: url('grift-geometric-typeface/grift-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Grift';
    src: url('grift-geometric-typeface/grift-black.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JUST Sans';
    src: url('just_sans/JUST Sans Regular.woff2') format('woff2'),
         url('just_sans/JUST Sans Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JUST Sans';
    src: url('just_sans/JUST Sans ExBold.woff2') format('woff2'),
         url('just_sans/JUST Sans ExBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --primary-rose: #E91E63;
    --primary-burgundy: #C2185B;
    --primary-purple: #9C27B0;
    --accent-pink: #EC4899;
    --accent-deep-pink: #E91E63;
    --accent-rose-gold: #F8BBD0;
    --primary-bg: #F5E6F0;
    --secondary-bg: #FCE4EC;
    --tertiary-bg: #FFF0F5;
    --text-dark: #4A148C;
    --text-medium: #7B1FA2;
    --text-light: #E91E63;
    --text-gray: #AD1457;
    --gradient-primary: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 50%, #F5E6F0 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    --gradient-rose: linear-gradient(135deg, #E91E63 0%, #C2185B 50%, #AD1457 100%);
    --gradient-hero: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 30%, #F8BBD0 60%, #F5E6F0 100%);
    --gradient-sensual: linear-gradient(135deg, #E91E63 0%, #9C27B0 50%, #C2185B 100%);
    --shadow-premium: 0 20px 60px rgba(233, 30, 99, 0.2);
    --shadow-card: 0 10px 30px rgba(233, 30, 99, 0.15);
    --shadow-hover: 0 15px 40px rgba(233, 30, 99, 0.3);
}

html {
    scroll-behavior: smooth;
}

/* Bold headlines - titles, hero, headings */
h1, h2, h3, .section-title, .hero-pill, .image-slider-title {
    font-weight: 700 !important;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--primary-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (min-width: 1400px) {
    .container {
        padding: 0 80px;
    }
}

/* Header Styles */
header {
    background: rgba(255, 240, 245, 0.95);
    backdrop-filter: blur(20px);
    color: var(--text-dark);
    padding: 0.9rem 0;
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1.5px solid rgba(233, 30, 99, 0.25);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (max-width: 968px) {
    header .container {
        padding: 0 20px;
    }
}

header h1 {
    font-family: 'Grift', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-shadow: 0 0 30px rgba(233, 30, 99, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(233, 30, 99, 0.4));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.6));
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--primary-rose);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Poppins', sans-serif;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-rose);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-rose);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

.nav-cta-wrapper {
    margin-left: 0.5rem;
}

.nav-cta {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.45);
    background: linear-gradient(135deg, #FF4081, #D81B60);
}

.nav-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .hamburger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 320px;
        height: calc(100vh - 60px);
        background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(255, 240, 245, 0.96));
        backdrop-filter: blur(25px);
        box-shadow: -5px 0 30px rgba(233, 30, 99, 0.2);
        border-left: 2px solid rgba(233, 30, 99, 0.3);
        transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 2rem 0;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 1.2rem 2rem;
        width: 100%;
        font-size: 1rem;
        color: var(--text-dark);
        transition: all 0.3s ease;
    }
    
    .main-nav a:hover {
        background: rgba(233, 30, 99, 0.1);
        color: var(--primary-rose);
        transform: translateX(5px);
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .nav-cta-wrapper {
        margin-left: 0;
        margin-top: 1rem;
        padding: 1rem 2rem;
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 998;
        backdrop-filter: blur(2px);
    }
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: var(--text-dark);
    padding: 8rem 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(156, 39, 176, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

/* soft curved bottom glow */
.hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -80px;
    transform: translateX(-50%);
    width: 140%;
    height: 160px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 240, 245, 0.9), transparent 65%);
    opacity: 0.9;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    max-width: 620px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(233, 30, 99, 0.35);
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 18px rgba(233, 30, 99, 0.15);
}

.hero h2 {
    font-family: 'Grift', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 40px rgba(233, 30, 99, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-family: 'Poppins', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-card {
    flex: 1;
    max-width: 360px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(252, 228, 236, 0.96));
    border-radius: 26px;
    padding: 1.8rem 1.8rem 1.6rem;
    box-shadow: 0 22px 55px rgba(233, 30, 99, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    animation: fadeInUp 1.1s ease-out 0.4s both;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 100% 0%, rgba(233, 30, 99, 0.4), transparent 70%);
    opacity: 0.7;
    filter: blur(16px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}

.hero-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.3);
    font-size: 0.8rem;
    color: #2e7d32;
    font-weight: 600;
}

.hero-card-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.28);
}

.hero-card-rating {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-rose);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.28);
}

.hero-card-body {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.3rem;
    position: relative;
    z-index: 1;
}

.hero-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 0%, #fff, #F8BBD0);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 28px rgba(233, 30, 99, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.hero-card-emoji {
    font-size: 2.6rem;
}

.hero-card-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.hero-card-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.hero-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(233, 30, 99, 0.28);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-gray);
    font-weight: 600;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.2rem;
}

.hero-stat {
    min-width: 140px;
}

.hero-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-rose);
}

.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.2);
}

.btn-primary {
    background: var(--gradient-rose);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-rose);
    border: 2px solid var(--primary-rose);
}

.btn-secondary:hover {
    background: var(--primary-rose);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
}

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

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--tertiary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-rose);
    opacity: 0.5;
}

.section-title {
    font-family: 'Grift', 'Playfair Display', serif;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-rose);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(255, 240, 245, 0.85));
    border-radius: 28px;
    padding: 2.7rem 2.5rem;
    text-align: center;
    transition: all 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 18px 40px rgba(233, 30, 99, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 10% 0%, rgba(233, 30, 99, 0.22), transparent 60%);
    opacity: 0.6;
    filter: blur(24px);
    transition: all 0.6s ease;
    z-index: 0;
}

.feature-card:hover::before {
    transform: translate3d(10px, 10px, 0) scale(1.05);
    opacity: 0.9;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at 100% 100%, rgba(156, 39, 176, 0.25), transparent 60%);
    opacity: 0.7;
    filter: blur(26px);
    transition: all 0.6s ease;
    z-index: 0;
}

.feature-card:hover::after {
    transform: translate3d(-10px, -10px, 0) scale(1.08);
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: var(--shadow-hover);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(255, 240, 245, 0.96));
}

.feature-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 1.7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    position: relative;
    z-index: 1;
    background: radial-gradient(circle at 30% 0%, #fff, #F8BBD0);
    box-shadow:
        0 10px 25px rgba(233, 30, 99, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    transform: translateY(0) scale(1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 16px 35px rgba(233, 30, 99, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-pink);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-rose);
    transform: scale(1.05);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--text-medium);
}

/* Variant accents for icons */
.feature-icon-primary {
    background: radial-gradient(circle at 30% 0%, #fff, #F8BBD0);
}

.feature-icon-secure {
    background: radial-gradient(circle at 30% 0%, #fff, #FFCDD2);
}

.feature-icon-location {
    background: radial-gradient(circle at 30% 0%, #fff, #F3E5F5);
}

.feature-icon-star {
    background: radial-gradient(circle at 30% 0%, #fff, #FFF9C4);
}

.feature-icon-clock {
    background: radial-gradient(circle at 30% 0%, #fff, #E1F5FE);
}

.feature-icon-diamond {
    background: radial-gradient(circle at 30% 0%, #fff, #E0F7FA);
}

/* Premium Packages Section */
.premium-packages-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--tertiary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.premium-packages-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.15), transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.package-card {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(233, 30, 99, 0.25);
    box-shadow: 
        0 15px 40px rgba(233, 30, 99, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.package-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 10% 0%, rgba(233, 30, 99, 0.2), transparent 60%);
    opacity: 0;
    filter: blur(35px);
    transition: opacity 0.6s ease;
    z-index: 0;
}

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

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-rose);
    box-shadow: 
        0 25px 60px rgba(233, 30, 99, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.package-card.featured {
    border: 3px solid var(--primary-rose);
    box-shadow: 
        0 20px 50px rgba(233, 30, 99, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.9),
        inset 0 0 30px rgba(233, 30, 99, 0.1);
}

.package-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(233, 30, 99, 0.15);
    color: var(--primary-rose);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.package-badge.featured {
    background: var(--gradient-rose);
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.package-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(233, 30, 99, 0.3));
}

.package-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.package-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.package-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-footer {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.package-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-rose);
    border: 2px solid var(--primary-rose);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.package-btn:hover {
    background: var(--gradient-rose);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.package-btn.featured-btn {
    background: var(--gradient-rose);
    color: white;
}

.package-btn.featured-btn:hover {
    background: linear-gradient(135deg, #FF4081, #D81B60);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.5);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.12), transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(233, 30, 99, 0.2);
    box-shadow: 
        0 12px 35px rgba(233, 30, 99, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    color: rgba(233, 30, 99, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-rose);
    box-shadow: 
        0 20px 50px rgba(233, 30, 99, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-rose);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.testimonial-location {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

/* VIP Membership Section */
.vip-membership-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--tertiary-bg) 50%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.vip-membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.12), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(156, 39, 176, 0.12), transparent 50%);
    pointer-events: none;
}

.vip-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vip-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-rose);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    font-family: 'Poppins', sans-serif;
}

.vip-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.vip-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.vip-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 3px solid var(--primary-rose);
    transition: all 0.3s ease;
}

.vip-benefits li:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.15);
}

.vip-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.vip-benefits li div {
    flex: 1;
}

.vip-benefits li strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.vip-benefits li span {
    display: block;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.vip-cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-rose);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.35);
    font-family: 'Poppins', sans-serif;
}

.vip-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.45);
    background: linear-gradient(135deg, #FF4081, #D81B60);
}

.vip-visual {
    position: relative;
}

.vip-card-preview {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(252, 228, 236, 0.96));
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 
        0 25px 60px rgba(233, 30, 99, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.vip-card-preview::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.3), transparent 70%);
    filter: blur(40px);
    opacity: 0.7;
}

.vip-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.vip-card-icon {
    font-size: 2.5rem;
}

.vip-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-rose);
    font-weight: 700;
}

.vip-card-body {
    position: relative;
    z-index: 1;
}

.vip-card-feature {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Booking Process Section */
.booking-process-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
    position: relative;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-rose);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 
        0 10px 30px rgba(233, 30, 99, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(233, 30, 99, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-icon {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 15px 40px rgba(233, 30, 99, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    border-color: var(--primary-rose);
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.process-connector {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(233, 30, 99, 0.3), rgba(233, 30, 99, 0.1));
    margin-top: 40px;
    position: relative;
}

.process-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: -10px;
    color: var(--primary-rose);
    font-size: 1.5rem;
}

/* Safety & Privacy Section */
.safety-privacy-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--tertiary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.safety-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    border-radius: 50%;
    width: 250px;
    height: 250px;
    justify-content: center;
    box-shadow: 
        0 20px 50px rgba(233, 30, 99, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
}

.safety-badge:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(233, 30, 99, 0.35),
        0 0 0 2px rgba(255, 255, 255, 1);
}

.safety-icon {
    font-size: 4rem;
    filter: drop-shadow(0 5px 15px rgba(233, 30, 99, 0.3));
}

.safety-badge span:last-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-rose);
    font-weight: 700;
}

.safety-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.safety-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.safety-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 4px solid var(--primary-rose);
    transition: all 0.3s ease;
}

.safety-feature:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.15);
}

.safety-check {
    width: 30px;
    height: 30px;
    background: var(--gradient-rose);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.safety-feature span:last-child {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--tertiary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(233, 30, 99, 0.2);
    box-shadow: 
        0 10px 30px rgba(233, 30, 99, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 10% 0%, rgba(233, 30, 99, 0.15), transparent 60%);
    opacity: 0;
    filter: blur(30px);
    transition: opacity 0.5s ease;
    z-index: 0;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary-rose);
    box-shadow: 
        0 18px 45px rgba(233, 30, 99, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    padding-left: 2.5rem;
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
}

/* Cities Section */
.cities-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.cities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-rose);
    opacity: 0.5;
}

.cities-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 100% 0%, rgba(233, 30, 99, 0.15), transparent 70%);
    opacity: 0.6;
    filter: blur(60px);
    pointer-events: none;
}

.cities-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.2rem;
    z-index: 1;
}

.cities-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-rose);
    border-radius: 2px;
}

.cities-section .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.city-card {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    border: 2px solid rgba(233, 30, 99, 0.25);
    border-radius: 24px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(233, 30, 99, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.7);
}

.city-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 10% 0%, rgba(233, 30, 99, 0.2), transparent 60%);
    opacity: 0;
    filter: blur(30px);
    transition: all 0.6s ease;
    z-index: 0;
}

.city-card::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -15%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 100% 100%, rgba(156, 39, 176, 0.18), transparent 60%);
    opacity: 0;
    filter: blur(28px);
    transition: all 0.6s ease;
    z-index: 0;
}

.city-card:hover::before {
    opacity: 1;
    transform: translate3d(10px, 10px, 0) scale(1.05);
}

.city-card:hover::after {
    opacity: 1;
    transform: translate3d(-10px, -10px, 0) scale(1.08);
}

.city-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(233, 30, 99, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    border-color: var(--primary-rose);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 1), rgba(255, 240, 245, 0.98));
}

.city-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-pink);
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.city-card:hover h3 {
    transform: scale(1.08) translateY(-2px);
    text-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    color: var(--primary-rose);
}

.city-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}

.city-card:hover p {
    color: var(--text-medium);
    transform: translateY(-2px);
}

/* About and Contact Sections */
.about-section,
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--tertiary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
}

.about-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-rose);
    opacity: 0.5;
}

.about-section h2,
.contact-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.about-content,
.contact-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.about-content p,
.contact-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.1);
}

.contact-method:hover {
    background: var(--gradient-rose);
    color: white;
    border-color: var(--primary-rose);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: rgba(255, 240, 245, 0.95);
    color: var(--text-dark);
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 2px solid rgba(233, 30, 99, 0.3);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-rose);
}

footer p {
    color: var(--text-gray);
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

/* Location Page Styles */
.location-page {
    padding: 5rem 0;
    background: var(--primary-bg);
    min-height: 80vh;
    position: relative;
}

.location-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(156, 39, 176, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.location-page h1 {
    font-family: 'Grift', 'Playfair Display', serif;
    font-weight: 800;
    color: var(--primary-rose);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.location-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: var(--gradient-rose);
    border-radius: 2px;
}

.location-page .content {
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(252, 228, 236, 0.92));
    border-radius: 32px;
    border: 2px solid rgba(233, 30, 99, 0.25);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 70px rgba(233, 30, 99, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.location-page .content::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 100% 0%, rgba(233, 30, 99, 0.25), transparent 70%);
    opacity: 0.7;
    filter: blur(50px);
    border-radius: 32px;
    pointer-events: none;
    z-index: 0;
}

.location-page .content::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 0% 100%, rgba(156, 39, 176, 0.2), transparent 70%);
    opacity: 0.6;
    filter: blur(45px);
    border-radius: 32px;
    pointer-events: none;
    z-index: 0;
}

.location-page .content > * {
    position: relative;
    z-index: 1;
}

.location-page .content h2 {
    font-family: 'Grift', 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent-pink);
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 1.4rem 1.8rem;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    border-left: 5px solid var(--primary-rose);
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(233, 30, 99, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.location-page .content h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-rose);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    z-index: 0;
}

.location-page .content h2:hover::before {
    transform: scaleY(1);
}

.location-page .content h2:first-of-type {
    margin-top: 0;
}

.location-page .content h2:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.25);
}

.location-page .content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-pink);
    margin-top: 2.8rem;
    margin-bottom: 1.4rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.8rem 1.2rem;
    padding-left: 3rem;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border-left: 3px solid rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
}

.location-page .content h3::before {
    content: '💎';
    position: absolute;
    left: 1rem;
    font-size: 1.3rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.location-page .content h3:hover {
    background: rgba(255, 255, 255, 0.7);
    border-left-color: var(--primary-rose);
    transform: translateX(5px);
}

.location-page .content h3:hover::before {
    transform: scale(1.2) rotate(10deg);
}

.location-page .content p {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 2.2;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: justify;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border-left: 3px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.location-page .content p:hover {
    background: rgba(255, 255, 255, 0.8);
    border-left-color: var(--primary-rose);
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.1);
}

/* Content Images Styling */
.content-image-wrapper {
    text-align: center;
    margin: 3.5rem 0;
    position: relative;
    padding: 1.5rem;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), rgba(255, 240, 245, 0.6));
    border-radius: 24px;
    border: 2px solid rgba(233, 30, 99, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(233, 30, 99, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.content-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 100% 0%, rgba(233, 30, 99, 0.2), transparent 70%);
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.6s ease;
    z-index: 0;
}

.content-image-wrapper:hover::before {
    opacity: 1;
}

.content-image-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 99, 0.4);
    box-shadow: 
        0 20px 50px rgba(233, 30, 99, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), rgba(255, 240, 245, 0.75));
}

.content-image {
    width: 100%;
    max-width: 650px;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    margin: 0 auto;
    box-shadow: 
        0 12px 35px rgba(233, 30, 99, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    z-index: 1;
}

.content-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(156, 39, 176, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    pointer-events: none;
}

.content-image-wrapper:hover .content-image {
    transform: scale(1.03);
    box-shadow: 
        0 18px 45px rgba(233, 30, 99, 0.3),
        0 0 0 1px rgba(255, 255, 255, 1);
}

.content-image-wrapper:hover .content-image::after {
    opacity: 1;
}

.location-page .content p:last-child {
    margin-bottom: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(233, 30, 99, 0.35);
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
}

.back-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-rose);
    opacity: 0.15;
    transition: left 0.4s ease;
    z-index: 0;
}

.back-link:hover::before {
    left: 0;
}

.back-link:hover {
    border-color: var(--primary-rose);
    transform: translateX(-8px) translateY(-2px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
    color: var(--primary-rose);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 1), rgba(255, 240, 245, 0.98));
}

.back-link span,
.back-link::after {
    position: relative;
    z-index: 1;
}

/* Scroll Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.city-card {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    header h1 {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.8rem;
    }

    .hero {
        padding: 4.5rem 0 3.5rem;
    }

    .hero-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-card {
        max-width: 100%;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .cities-section h2 {
        font-size: 2.2rem;
    }
    
    .city-card {
        padding: 1.8rem 1.5rem;
    }
    
    .city-card h3 {
        font-size: 1.3rem;
    }

    .cities-section h2,
    .about-section h2,
    .contact-section h2,
    .section-title {
        font-size: 2rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .location-page h1 {
        font-size: 2rem;
    }

    .location-page .content {
        padding: 2rem 1.5rem;
    }

    .location-page .content h2 {
        font-size: 1.5rem;
    }

    .location-page .content p {
        font-size: 1rem;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-rose);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-rose);
}

/* Selection */
::selection {
    background: var(--primary-rose);
    color: white;
}

/* ===== PREMIUM FIXED CONTACT BAR ===== */
.bottom-contact-bar {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 520px;
  z-index: 9999;

  display: flex;
  overflow: hidden;

  border-radius: 18px;
  backdrop-filter: blur(12px);
  background: rgba(255, 240, 245, 0.9);
  box-shadow: 0 12px 35px rgba(233, 30, 99, 0.25);
  border: 2px solid rgba(233, 30, 99, 0.3);

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* COMMON BUTTON */
.bottom-contact-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  height: 56px;

  color: #fff;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.bottom-contact-bar a span {
  font-size: 19px;
}

/* CALL */
.bottom-call {
  background: linear-gradient(135deg, #E91E63, #C2185B);
}

/* WHATSAPP */
.bottom-whatsapp {
  background: linear-gradient(135deg, #1ebc59, #25d366);
}

/* HOVER EFFECT */
.bottom-contact-bar a:hover {
  transform: scale(1.05);
  z-index: 2;
}

/* RIPPLE EFFECT */
.bottom-contact-bar a::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255,255,255,0.15);
  top: 100%;
  left: -10%;
  transform: rotate(10deg);
  transition: all 0.5s ease;
}

.bottom-contact-bar a:hover::after {
  top: -10%;
}

/* MOBILE SAFE */
@media (max-width: 480px) {
  .bottom-contact-bar {
    bottom: 10px;
    border-radius: 16px;
  }
}

/* ===== PREMIUM IMAGE SLIDER ===== */
.image-slider-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--tertiary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.image-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-rose);
    opacity: 0.5;
}

.image-slider-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

@media (min-width: 1400px) {
    .image-slider-container {
        padding: 0 80px;
    }
}

.image-slider-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.image-slider-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-rose);
    border-radius: 2px;
}

.image-slider-section .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.8rem 2rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.1);
}

.premium-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(233, 30, 99, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(233, 30, 99, 0.4);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(252, 228, 236, 0.96));
    backdrop-filter: blur(20px);
}

.premium-slider::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 100% 0%, rgba(233, 30, 99, 0.3), transparent 70%);
    opacity: 0.6;
    filter: blur(40px);
    z-index: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    z-index: 1;
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) saturate(1.05);
}

.slider-slide:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(233, 30, 99, 0.8) 0%, transparent 100%);
    padding: 2rem;
    color: white;
    z-index: 2;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    border: 2px solid rgba(233, 30, 99, 0.5);
    color: var(--accent-pink);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 10;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(233, 30, 99, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.slider-nav:hover {
    background: radial-gradient(circle at 30% 0%, rgba(233, 30, 99, 0.25), rgba(194, 24, 91, 0.2));
    border-color: var(--primary-rose);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 12px 35px rgba(233, 30, 99, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    color: var(--primary-rose);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 2rem 0;
    position: relative;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.3);
    border: 2px solid rgba(233, 30, 99, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-rose);
    border-color: var(--primary-rose);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.6);
}

.slider-dot:hover {
    background: rgba(233, 30, 99, 0.7);
    transform: scale(1.2);
}

/* Auto-play indicator */
.slider-auto-play {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(233, 30, 99, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--accent-pink);
    font-size: 0.85rem;
    z-index: 10;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slider-auto-play span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-rose);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slider-wrapper {
        height: 450px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .image-slider-title {
        font-size: 2.2rem;
    }
    
    .image-slider-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .premium-slider {
        border-radius: 24px;
    }
    
    .slider-auto-play {
        bottom: 15px;
        right: 15px;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .location-page .content {
        padding: 2.5rem 1.8rem;
    }
    
    .location-page h1 {
        font-size: 2.5rem;
    }
    
    .location-page .content h2 {
        font-size: 1.8rem;
        padding: 1rem 1.2rem;
    }
    
    .location-page .content h3 {
        font-size: 1.4rem;
    }
    
    .location-page .content p {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .content-image-wrapper {
        margin: 2.5rem 0;
        padding: 1rem;
    }
    
    .content-image {
        height: 300px;
        max-width: 100%;
    }
    
    .location-page .content h2 {
        font-size: 1.8rem;
        padding: 1rem 1.2rem;
    }
    
    .location-page .content h3 {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
        padding-left: 2.5rem;
    }
    
    /* Premium Sections Responsive */
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vip-text h2 {
        font-size: 2.2rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-connector {
        display: none;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .safety-badge {
        width: 200px;
        height: 200px;
        padding: 2rem;
    }
    
    .safety-text h2 {
        font-size: 2.2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        height: 380px;
    }
    
    .image-slider-section {
        padding: 3.5rem 0;
    }
    
    .image-slider-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .premium-slider {
        border-radius: 20px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .location-page .content {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    
    .location-page h1 {
        font-size: 2rem;
    }
}

/* ===== FLOATING GIRL & KISS ICONS ===== */
.floating-icons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2.4rem;
    opacity: 0.18;
    pointer-events: none;
    filter: drop-shadow(0 6px 10px rgba(233, 30, 99, 0.4));
    animation: floatAround 26s linear infinite;
    transform-origin: center;
}

/* Different starting positions using CSS variable index */
.floating-icon:nth-child(1) { top: 5%; left: 10%; animation-duration: 24s; }
.floating-icon:nth-child(2) { top: 60%; left: 5%; animation-duration: 30s; }
.floating-icon:nth-child(3) { top: 20%; left: 80%; animation-duration: 32s; }
.floating-icon:nth-child(4) { top: 75%; left: 70%; animation-duration: 28s; }
.floating-icon:nth-child(5) { top: 40%; left: 45%; animation-duration: 26s; }
.floating-icon:nth-child(6) { top: 10%; left: 55%; animation-duration: 34s; }

.girl-icon {
    text-shadow:
        0 0 0 rgba(0,0,0,0),
        0 10px 18px rgba(233, 30, 99, 0.45);
}

.kiss-icon {
    opacity: 0.22;
}

@keyframes floatAround {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate3d(30px, -40px, 0) scale(1.05) rotate(8deg);
    }
    50% {
        transform: translate3d(-20px, -80px, 0) scale(0.95) rotate(-6deg);
    }
    75% {
        transform: translate3d(10px, -40px, 0) scale(1.08) rotate(10deg);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
}

/* ===== EXCLUSIVE SHINY "BOOK HOT CALL GIRLS" BUTTON ===== */
.btn-book-hot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'JUST Sans', 'Grift', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 25%, #9C27B0 50%, #E91E63 75%, #C2185B 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    box-shadow: 
        0 4px 15px rgba(233, 30, 99, 0.5),
        0 0 30px rgba(233, 30, 99, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    animation: shinyGradient 3s ease-in-out infinite;
}
.btn-book-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}
.btn-book-hot:hover {
    transform: scale(1.08);
    box-shadow: 
        0 8px 25px rgba(233, 30, 99, 0.6),
        0 0 50px rgba(233, 30, 99, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-book-hot:hover::before {
    left: 100%;
}
.btn-book-hot:active {
    transform: scale(1.02);
}
@keyframes shinyGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.btn-book-hot-wrap {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
}
.btn-book-hot-wrap.position-left { text-align: left; }
.btn-book-hot-wrap.position-right { text-align: right; }

/* ===== PROMO BANNERS / POSTERS ===== */
.promo-banner {
    margin: 3rem 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.25), 0 0 0 1px rgba(233, 30, 99, 0.15);
    position: relative;
    display: block;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.promo-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(233, 30, 99, 0.35), 0 0 0 2px rgba(233, 30, 99, 0.3);
}
.promo-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.promo-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: #fff;
}
.promo-banner-overlay h3 {
    font-family: 'Grift', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.promo-banner-overlay p {
    font-size: 0.95rem;
    opacity: 0.95;
}
.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.banners-grid .promo-banner img {
    height: 260px;
}
