/* Chillax Hotel and Spa - Ultra Premium Main Styles */

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-champagne));
    border-radius: 2px;
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}
:root {
    --primary-color: #1a1614;
    --secondary-color: #C9A227;
    --accent-color: #E8DDD3;
    --warm-cream: #FAF6F1;
    --warm-ivory: #F5EDE4;
    --warm-beige: #D4C5B5;
    --warm-taupe: #8B7D6B;
    --lavender: #9B8A7A;
    --lavender-light: #E8DDD3;
    --lavender-dark: #7A6E5D;
    --gold-light: #E8C968;
    --gold-dark: #B8860B;
    --gold-champagne: #F4E8C8;
    --light-color: #FDFBF8;
    --dark-color: #12100E;
    --text-color: #2C2520;
    --text-light: #FAF6F1;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 20px 60px rgba(201, 168, 76, 0.18);
    --shadow-lavender: 0 20px 60px rgba(155, 138, 122, 0.15);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
    background: var(--light-color);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(155, 138, 122, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

h1 {
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.navbar {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
}

.nav-brand h1 {
    font-size: 1.9rem;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    border-radius: 50%;
    transition: var(--transition);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-light));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

.btn-admin {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    color: var(--dark-color) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.btn-admin:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    width: 25px;
    height: 20px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(5, 5, 5, 0.85) 0%, rgba(10, 10, 10, 0.75) 50%, rgba(181, 126, 220, 0.15) 100%),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(247, 231, 206, 0.15) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

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

.section-subtitle {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 18px;
    opacity: 0.85;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-map iframe {
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(181, 126, 220, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 30px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 25%, var(--secondary-color) 50%, var(--gold-light) 75%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
    letter-spacing: -1px;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 20px 55px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    margin: 0 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--secondary-color) 100%);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-color: rgba(181, 126, 220, 0.5);
    color: var(--lavender-light);
    box-shadow: 0 8px 30px rgba(181, 126, 220, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-dark) 100%);
    border-color: var(--lavender);
    color: var(--white);
    box-shadow: 0 15px 45px rgba(181, 126, 220, 0.4);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(230, 230, 250, 0.3) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--lavender-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--lavender), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(181, 126, 220, 0.08) 100%);
    margin-bottom: 25px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(181, 126, 220, 0.15) 100%);
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 25px;
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--dark-color);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(181, 126, 220, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery .section-title h2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
}

.gallery .section-title p {
    color: rgba(230, 230, 250, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 320px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    cursor: pointer;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.9) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 25px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    transform: translateY(30px);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

/* =============================================
   PRICING / EXPERIENCE CARDS — Luxury Hotel
   ============================================= */
.pricing {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(201,162,39,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(184,134,11,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.02) 0%, transparent 70%),
        linear-gradient(180deg, var(--warm-cream) 0%, var(--warm-ivory) 50%, var(--warm-cream) 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Experience Card ---- */
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border: 2px solid rgba(201, 162, 39, 0.10);
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.45s ease,
                border-color 0.45s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.30);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10),
                0 8px 24px rgba(201, 162, 39, 0.08);
}

/* Featured card */
.pricing-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.14);
}

.pricing-card.featured:hover {
    box-shadow: 0 30px 70px rgba(201, 162, 39, 0.20),
                0 10px 30px rgba(201, 162, 39, 0.10);
}

/* ---- Hero Image ---- */
.pricing-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e0d6 0%, #d4c5b5 100%);
}

.pricing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.pricing-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
}

/* ---- Badge ---- */
.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45); }
    50% { box-shadow: 0 10px 32px rgba(201, 162, 39, 0.65); }
}

/* ---- Card Content ---- */
.pricing-card-content {
    padding: 36px 40px 44px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-category {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.pricing-rating .stars {
    color: var(--secondary-color);
    font-size: 1.15rem;
    letter-spacing: 3px;
    line-height: 1;
}

.pricing-rating .rating-text {
    font-size: 0.88rem;
    color: var(--lavender-dark);
    font-weight: 500;
}

/* ---- Price ---- */
.price-container {
    margin-bottom: 20px;
    padding: 20px 0;
}

.price-prefix {
    display: block;
    font-size: 0.78rem;
    color: var(--lavender-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-weight: 500;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1.1;
    white-space: nowrap;
}

.price.price-sm {
    font-size: 1.9rem;
}

.price-period {
    font-size: 0.95rem;
    color: var(--lavender-dark);
    font-weight: 400;
    -webkit-text-fill-color: var(--lavender-dark);
}

/* ---- Description ---- */
.pricing-desc {
    font-size: 1.02rem;
    color: var(--text-color);
    line-height: 1.75;
    margin-bottom: 24px;
    opacity: 0.8;
}

/* ---- Features (no borders, whitespace dividers) ---- */
.pricing-card-content .features {
    list-style: none;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
}

.pricing-card-content .features li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.pricing-card-content .features li svg,
.pricing-card-content .features li i {
    color: var(--secondary-color);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ---- Trust Cues ---- */
.pricing-trust-cues {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    font-size: 0.84rem;
    color: #16a34a;
    font-weight: 500;
    flex-wrap: wrap;
}

.pricing-trust-cues svg {
    width: 14px;
    height: 14px;
    margin-right: 3px;
    flex-shrink: 0;
}

/* ---- CTA Button ---- */
.pricing-btn {
    width: 100%;
    margin: auto 0 0;
    text-align: center;
    display: block;
    padding: 18px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--secondary-color);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.12);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease,
                color 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(201, 162, 39, 0.28);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    color: var(--white) !important;
    border-color: var(--gold-dark);
}

/* Primary Book Now CTA Button inside Navbar */
.nav-book-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.83rem !important;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.4);
    opacity: 0.95;
}

.navbar.scrolled .nav-book-btn {
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.2);
}


/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(230, 230, 250, 0.2) 50%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 45px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(181, 126, 220, 0.15);
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 5rem;
    color: var(--lavender);
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lavender);
    border-color: rgba(181, 126, 220, 0.3);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

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

.testimonial-author h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.rating {
    color: var(--secondary-color);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--dark-color);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(181, 126, 220, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-title h2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
}

.contact .section-title p {
    color: rgba(230, 230, 250, 0.8);
}

.contact-form {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 55px;
    border-radius: 28px;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-champagne, #D4AF37));
    transition: width 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.form-group:focus-within::after {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.required-star {
    color: var(--secondary-color);
    font-weight: 700;
    margin-left: 3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(250, 250, 250, 0.8);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
    background: var(--white);
}

.form-group textarea {
    height: 170px;
    resize: vertical;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(155, 138, 122, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text p {
    color: rgba(250, 246, 241, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.newsletter-input-group input::placeholder {
    color: rgba(250, 246, 241, 0.4);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input-group .btn {
    margin: 0;
    white-space: nowrap;
}

.newsletter-note {
    color: rgba(250, 246, 241, 0.4);
    font-size: 0.8rem;
    margin-left: 24px;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--white) 100%);
    position: relative;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: left;
    transition: var(--transition);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 1rem;
}

/* Booking Section */
.booking {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 50%, var(--lavender-dark) 100%);
    color: var(--white);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(181, 126, 220, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.booking .section-title h2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
}

.booking .section-title p {
    color: rgba(230, 230, 250, 0.9);
}

.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 55px;
    border-radius: 28px;
    color: var(--text-color);
    box-shadow: var(--shadow-gold);
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.booking-form h3 {
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.9rem;
    font-weight: 600;
}

.booking-form .form-group label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 90px 0 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), var(--lavender), var(--secondary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section p {
    margin-bottom: 18px;
    color: rgba(230, 230, 250, 0.85);
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: rgba(230, 230, 250, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(230, 230, 250, 0.85);
    font-size: 0.95rem;
    line-height: 1.9;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    color: rgba(230, 230, 250, 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 35px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: rgba(230, 230, 250, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    }
    50% {
        box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
    }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.float {
    animation: float 4s ease-in-out infinite;
}

.glow {
    animation: glow 3s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Sticky Book Now CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 990;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
    white-space: nowrap;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--secondary-color) 100%);
}

@media (min-width: 768px) and (max-width: 1199px) {
    .sticky-cta {
        bottom: 24px;
        right: 24px;
        padding: 12px 22px;
        font-size: 0.82rem;
    }
}

@media (max-width: 767px) {
    .sticky-cta {
        display: none !important; /* On mobile, booking is accessible in nav/sections; contact bar takes precedence */
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 985;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: calc(74px + env(safe-area-inset-bottom, 0px)) !important;
        left: 16px !important;
        z-index: 985 !important;
    }
}

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    animation: lightboxZoom 0.4s ease-out;
}

@keyframes lightboxZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 16px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--secondary-color);
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

/* Page Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-champagne, #D4AF37));
    width: 0%;
    z-index: 10001;
    transition: width 0.15s ease;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

/* Stagger Animations */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-item.in-view {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0s) forwards;
}

@media (prefers-reduced-motion: reduce) {
    .stagger-item {
        opacity: 1;
        transform: none;
    }
    .stagger-item.in-view {
        animation: none;
    }
}

/* Loading Skeleton */
.skeleton-card {
    background: linear-gradient(90deg, #f5f0e8 0%, #faf7f2 50%, #f5f0e8 100%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: 12px;
}

.skeleton-card--gallery { height: 280px; }
.skeleton-card--testimonial { height: 250px; }
.skeleton-card--pricing { height: 300px; }

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .skeleton-card {
        animation: none;
    }
}

/* Interactive Star Rating Selector */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}
.star-rating input {
    display: none;
}
.star-rating label {
    font-size: 2.2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.1s ease;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--secondary-color);
}
.star-rating label:active {
    transform: scale(0.9);
}

/* ========== Currency Switcher ========== */
.currency-switcher {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 9px 22px; /* Increased padding */
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}


.currency-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.currency-btn .chevron {
    transition: transform 0.25s ease;
}

.currency-switcher.open .chevron {
    transform: rotate(180deg);
}

/* Scrolled navbar: dark text */
.navbar.scrolled .currency-btn {
    background: rgba(181, 126, 220, 0.12);
    border-color: rgba(181, 126, 220, 0.3);
    color: var(--primary-color);
}

.navbar.scrolled .currency-btn:hover {
    background: rgba(181, 126, 220, 0.22);
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(181, 126, 220, 0.15);
    min-width: 200px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 9999;
}

.currency-switcher.open .currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.18s ease;
    border-bottom: 1px solid #f5f3ff;
    gap: 12px;
}

.currency-option:last-child { border-bottom: none; }

.currency-option:hover { background: #f9f6ff; }

.currency-option.active {
    background: linear-gradient(135deg, #f3e8ff, #ede9fe);
}

.currency-option .cur-code {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: #6d28d9;
    min-width: 38px;
}

.currency-option .cur-name {
    font-size: 0.83rem;
    color: #64748b;
    flex: 1;
}

.currency-option .cur-symbol {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e1b4b;
    background: #f3f0ff;
    padding: 2px 8px;
    border-radius: 6px;
}

.currency-option.active .cur-symbol {
    background: #7c3aed;
    color: #fff;
}

/* Price display with currency transition */
.price [data-price] {
    transition: opacity 0.2s ease;
}

.price.converting {
    opacity: 0.4;
}

/* Required star */
.required-star { color: #e11d48; }

/* Off-screen Anti-Bot Honeypot Field */
.form-field-hp {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* ==========================================================================
   Shared Show/Hide Password Toggle Styles
   ========================================================================== */
.password-toggle-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.password-toggle-wrapper input[type="password"],
.password-toggle-wrapper input[type="text"].password-input,
.password-toggle-wrapper input.password-input {
    width: 100%;
    box-sizing: border-box;
    padding-right: 48px !important;
}

.password-toggle-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 44px;
    min-width: 44px;
    height: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    border-radius: 0 8px 8px 0;
    transition: color 0.15s ease, background-color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.password-toggle-btn:hover {
    color: #0f172a;
    background-color: rgba(15, 23, 42, 0.04);
}

.password-toggle-btn:active {
    background-color: rgba(15, 23, 42, 0.08);
}

.password-toggle-btn:focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: -2px;
    color: #4f46e5;
}

.password-toggle-btn i {
    font-size: 1rem;
    pointer-events: none;
}

