:root {
    --primary-purple: #9441e3;
    --primary-gold: #b9a16a;
    --secondary-purple: #7c2dc7;
    --light-purple: #f5efff;
    --dark-text: #2d2d2d;
    --light-text: #666;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Prevent double-tap zoom on touch devices */
a, button, input, select, textarea {
    touch-action: manipulation;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    transition: padding 0.3s ease;
}

.logo-container {
    flex: 1;
}

.logo {
    width: 80px;
    transition: transform 0.3s ease;
}

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

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

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

.book-now-btn {
    flex: 1;
    text-align: right;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(148, 65, 227, 0.3);
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(148, 65, 227, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(148, 65, 227, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8ff 0%, #f5efff 100%);
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    z-index: 2;
    position: relative;
}

/* Decorative sparkles for mobile */
.hero-text::before {
    content: '✨';
    position: absolute;
    top: -15px;
    right: 20%;
    font-size: 24px;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}

.hero-text::after {
    content: '👑';
    position: absolute;
    bottom: 20%;
    right: 0;
    font-size: 28px;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite 1.5s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-10px) rotate(15deg);
    }
}

@media (min-width: 769px) {
    .hero-text::before,
    .hero-text::after {
        display: none;
    }
}

.hero-label {
    display: inline-block;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(148, 65, 227, 0.1);
    border-radius: 30px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 35px;
    max-width: 500px;
}

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

/* Trust badges - hidden on desktop, shown on mobile */
.hero-trust-badges {
    display: none;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(148, 65, 227, 0.15);
}

@media (max-width: 768px) {
    .hero-trust-badges {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--light-text);
    text-align: center;
}

.trust-badge-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.trust-badge-number {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 18px;
}

.trust-badge-label {
    font-size: 11px;
    color: var(--light-text);
}

.btn-secondary {
    background: white;
    color: var(--primary-purple);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-purple);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.hero-image-container {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-image: url('../images/splash-new.jpg');
    background-size: cover;
    background-position: center;
}

/* Crown decoration */
.crown-decoration {
    position: absolute;
    top: -30px;
    right: 50px;
    width: 80px;
    opacity: 0.1;
    z-index: 1;
}

/* Tagline Section */
.tagline-section {
    padding: 80px 40px;
    text-align: center;
    background: white;
}

.tagline-section p {
    font-size: 16px;
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.tagline-section h2 {
    font-size: 42px;
    color: var(--dark-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

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

.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(148, 65, 227, 0.2);
}

.service-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
    gap: 8px;
    padding: 8px 0;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}

.service-link:hover {
    gap: 15px;
}

.service-link:active {
    opacity: 0.7;
}

.service-link::after {
    content: '→';
    font-size: 18px;
}

/* Gift Vouchers Feature */
.gift-vouchers-feature {
    max-width: 1400px;
    margin: 40px auto 60px;
    padding: 0 40px;
}

.gift-card {
    background: linear-gradient(135deg, var(--light-purple) 0%, #fff 100%);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(148, 65, 227, 0.15);
}

.gift-content h3 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.gift-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 30px;
}

.gift-image {
    text-align: center;
}

.gift-image img {
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: white;
    padding: 80px 40px 40px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    width: 160px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

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

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: white;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-info strong {
    color: white;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b1522 0%, #1a1f3a 50%, #2d1b3d 100%);
    z-index: 2000;
    display: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(148, 65, 227, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

.mobile-overlay::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(185, 161, 106, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 12s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.05); }
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-overlay-content {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    z-index: 2001;
    transition: all 0.3s ease;
}

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

.mobile-nav {
    list-style: none;
}

.mobile-nav li {
    margin: 12px 0;
    animation: slideInRight 0.5s ease-out backwards;
}

.mobile-nav li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav li:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav li:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav li:nth-child(6) { animation-delay: 0.35s; }
.mobile-nav li:nth-child(7) { animation-delay: 0.4s; }

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

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    padding: 12px 30px;
    display: inline-block;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    letter-spacing: 1px;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-gold));
    transition: width 0.3s ease;
}

.mobile-nav a:hover::after,
.mobile-nav a:active::after {
    width: 80%;
}

.mobile-nav a:active {
    transform: scale(0.95);
}

.mobile-crown {
    width: 100px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(148, 65, 227, 0.5));
    animation: crownFloat 3s ease-in-out infinite;
}

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

.mobile-book-btn {
    margin-top: 40px;
    animation: slideInRight 0.5s ease-out 0.45s backwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-image-container {
        height: 450px;
    }
    
    .gift-card {
        grid-template-columns: 1fr;
        padding: 50px 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 14px 20px;
        max-width: 100%;
    }
    
    .logo-container {
        flex: 0 0 auto;
    }
    
    .logo {
        width: 55px;
    }
    
    .book-now-btn {
        flex: 0 0 auto;
    }
    
    .book-now-btn .btn-primary {
        padding: 10px 18px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .mobile-menu-btn {
        margin-left: 12px;
    }
    
    .hero {
        margin-top: 60px;
        min-height: 0;
        padding: 0;
    }
    
    .hero-content {
        padding: 45px 20px 45px;
        gap: 35px;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
    }
    
    .hero-label {
        font-size: 12px;
        padding: 8px 20px;
        margin-bottom: 18px;
        background: rgba(148, 65, 227, 0.12);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 12px rgba(148, 65, 227, 0.15);
        animation: fadeInDown 0.6s ease-out;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 1.25;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(148, 65, 227, 0.08);
        animation: fadeInUp 0.8s ease-out;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
        animation: fadeInUp 1s ease-out;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }
    
    .hero-buttons .btn-primary {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        font-size: 15px;
        box-shadow: 0 8px 20px rgba(148, 65, 227, 0.35);
        position: relative;
        overflow: hidden;
        animation: ctaPulse 2.5s ease-in-out infinite;
    }
    
    @keyframes ctaPulse {
        0%, 100% {
            box-shadow: 0 8px 20px rgba(148, 65, 227, 0.35);
        }
        50% {
            box-shadow: 0 10px 30px rgba(148, 65, 227, 0.5);
        }
    }
    
    .hero-buttons .btn-primary::before {
        content: '📅';
        margin-right: 8px;
    }
    
    .hero-buttons .btn-primary:active {
        transform: scale(0.98);
        animation: none;
    }
    
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 28px;
        background: transparent;
        border: 2px solid rgba(148, 65, 227, 0.4);
        font-size: 14px;
    }
    
    .hero-buttons .btn-secondary:active {
        transform: scale(0.98);
    }
    
    .hero-image-container {
        height: 380px;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(148, 65, 227, 0.2);
        animation: fadeInUp 1.2s ease-out;
        position: relative;
    }
    
    .hero-image-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(to top, rgba(148, 65, 227, 0.1), transparent);
        pointer-events: none;
    }
    
    .tagline-section {
        padding: 50px 20px;
    }
    
    .tagline-section p {
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .tagline-section h2 {
        font-size: 26px;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .services-section {
        padding: 40px 20px 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        border-radius: 20px;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-content h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .service-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service-link {
        font-size: 13px;
    }
    
    .gift-vouchers-feature {
        margin: 30px auto 50px;
        padding: 0 20px;
    }
    
    .gift-card {
        padding: 30px 20px;
        gap: 25px;
        border-radius: 20px;
    }
    
    .gift-content h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .gift-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .gift-content .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .gift-image img {
        max-width: 100%;
        height: 280px;
        border-radius: 18px;
    }
    
    .footer {
        padding: 50px 20px 25px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-brand img {
        width: 140px;
    }
    
    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        font-size: 14px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 30px;
        font-size: 13px;
    }
    
    .mobile-overlay-content {
        padding: 80px 20px 60px;
    }
    
    .mobile-close {
        top: 25px;
        right: 25px;
        width: 48px;
        height: 48px;
        font-size: 32px;
    }
    
    .mobile-nav li {
        margin: 10px 0;
    }
    
    .mobile-nav a {
        font-size: 24px;
        padding: 10px 25px;
    }
    
    .mobile-crown {
        width: 85px;
        margin-bottom: 35px;
    }
    
    .mobile-book-btn {
        margin-top: 35px;
        width: 100%;
        padding: 0 20px;
    }
    
    .mobile-book-btn .btn-primary {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }
    
    .logo {
        width: 50px;
    }
    
    .book-now-btn .btn-primary {
        padding: 8px 14px;
        font-size: 10px;
    }
    
    .mobile-menu-btn {
        margin-left: 8px;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }
    
    .hero {
        margin-top: 55px;
    }
    
    .hero-content {
        padding: 40px 18px 40px;
        gap: 30px;
    }
    
    .hero-label {
        font-size: 11px;
        padding: 7px 18px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.65;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-buttons .btn-primary {
        padding: 15px 28px;
        font-size: 14px;
    }
    
    .hero-buttons .btn-secondary {
        padding: 13px 24px;
        font-size: 13px;
    }
    
    .hero-image-container {
        height: 320px;
        border-radius: 20px;
    }
    
    .tagline-section {
        padding: 40px 15px;
    }
    
    .tagline-section p {
        font-size: 12px;
    }
    
    .tagline-section h2 {
        font-size: 22px;
    }
    
    .services-section {
        padding: 30px 15px 40px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content h3 {
        font-size: 24px;
    }
    
    .service-content p {
        font-size: 13px;
    }
    
    .gift-vouchers-feature {
        margin: 30px auto 40px;
        padding: 0 15px;
    }
    
    .gift-card {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .gift-content h3 {
        font-size: 24px;
    }
    
    .gift-content p {
        font-size: 13px;
    }
    
    .gift-content .btn-primary {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .gift-image img {
        height: 240px;
        border-radius: 15px;
    }
    
    .footer {
        padding: 40px 15px 20px;
        margin-top: 50px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand img {
        width: 120px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .social-links img {
        width: 18px;
        height: 18px;
    }
    
    .mobile-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .mobile-nav a {
        font-size: 22px;
        padding: 10px 20px;
    }
    
    .mobile-crown {
        width: 75px;
        margin-bottom: 30px;
    }
    
    .mobile-book-btn .btn-primary {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Landscape Mobile Fix */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        margin-top: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .mobile-overlay-content {
        padding: 40px 20px;
        min-height: 100vh;
    }
    
    .mobile-crown {
        width: 70px;
        margin-bottom: 25px;
    }
    
    .mobile-nav li {
        margin: 8px 0;
    }
    
    .mobile-nav a {
        font-size: 20px;
        padding: 8px 20px;
    }
    
    .mobile-book-btn {
        margin-top: 25px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Loading state */
.loading {
    opacity: 0;
}

/* ========== PIXEL PARLOUR TEASER STYLES ========== */

/* Announcement Banner */
.pixel-announcement-banner {
    background: linear-gradient(135deg, #0b1522 0%, #1a1f3a 100%);
    padding: 18px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(160, 92, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pixel-announcement-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(160, 92, 255, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.pixel-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.pixel-icon {
    font-size: 32px;
    animation: bounce 2s ease-in-out infinite;
}

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

.pixel-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pixel-text strong {
    color: #FFD700;
    font-weight: 700;
    margin-right: 8px;
}

.pixel-banner-btn {
    background: linear-gradient(135deg, #FF6B9D 0%, #A05CFF 50%, #3AB4FF 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(160, 92, 255, 0.4);
    white-space: nowrap;
}

.pixel-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 92, 255, 0.6);
}

/* Pixel Parlour Service Card */
.pixel-parlour-card {
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #FF6B9D, #A05CFF, #3AB4FF) border-box;
}

.pixel-parlour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(160, 92, 255, 0.3);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B9D 0%, #A05CFF 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(160, 92, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pixel-parlour-bg {
    background: linear-gradient(135deg, #0b1522 0%, #1a1f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pixel-overlay {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pixel-emoji {
    font-size: 60px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(160, 92, 255, 0.6));
}

.pixel-emoji:nth-child(2) {
    animation-delay: 0.5s;
}

.pixel-emoji:nth-child(3) {
    animation-delay: 1s;
}

.pixel-link {
    color: #A05CFF !important;
}

.pixel-link:hover {
    color: #FF6B9D !important;
}

/* Pixel Parlour Spotlight Section */
.pixel-spotlight {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
    margin-top: -20px;
}

.pixel-spotlight-card {
    background: linear-gradient(135deg, #0b1522 0%, #1a1f3a 100%);
    border-radius: 30px;
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(160, 92, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.pixel-spotlight-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(160, 92, 255, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float 10s ease-in-out infinite;
}

.pixel-spotlight-card::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(58, 180, 255, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 12s ease-in-out infinite reverse;
}

.pixel-spotlight-content {
    position: relative;
    z-index: 2;
}

.pixel-spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(160, 92, 255, 0.3);
    border-radius: 50px;
    padding: 12px 30px;
    margin-bottom: 30px;
}

.badge-pulse {
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
}

.badge-text {
    color: #FFD700;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pixel-spotlight-content h2 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pixel-spotlight-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C06BFF 50%, #3AB4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(192, 107, 255, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(58, 180, 255, 0.8)); }
}

.pixel-spotlight-tagline {
    font-size: 20px;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.pixel-spotlight-content > p {
    color: #d0d5ff;
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pixel-spotlight-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pixel-feature-item {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(160, 92, 255, 0.3);
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.pixel-feature-item:hover {
    background: rgba(160, 92, 255, 0.2);
    border-color: rgba(160, 92, 255, 0.6);
    transform: translateY(-5px);
}

.pixel-feature-icon {
    font-size: 28px;
}

.pixel-cta {
    margin-top: 20px;
    background: linear-gradient(135deg, #FF6B9D 0%, #A05CFF 50%, #3AB4FF 100%);
    box-shadow: 0 8px 25px rgba(160, 92, 255, 0.4);
}

.pixel-cta:hover {
    box-shadow: 0 12px 35px rgba(160, 92, 255, 0.6);
}

/* Responsive - Pixel Parlour */
@media (max-width: 1024px) {
    .pixel-spotlight-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .pixel-announcement-banner {
        padding: 15px 20px;
    }
    
    .pixel-banner-content {
        gap: 12px;
    }
    
    .pixel-icon {
        font-size: 24px;
    }
    
    .pixel-text {
        font-size: 14px;
        text-align: center;
        flex: 1;
    }
    
    .pixel-banner-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .coming-soon-badge {
        top: 15px;
        right: 15px;
        padding: 6px 14px;
        font-size: 10px;
    }
    
    .pixel-overlay {
        gap: 20px;
    }
    
    .pixel-emoji {
        font-size: 40px;
    }
    
    .pixel-spotlight {
        margin: 30px auto;
        padding: 0 20px;
    }
    
    .pixel-spotlight-card {
        padding: 35px 30px;
    }
    
    .pixel-spotlight-badge {
        padding: 10px 20px;
        gap: 10px;
    }
    
    .badge-pulse {
        font-size: 20px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .pixel-spotlight-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .pixel-spotlight-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .pixel-spotlight-tagline {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .pixel-spotlight-content > p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .pixel-spotlight-features {
        flex-direction: column;
        gap: 12px;
        margin: 30px auto;
        max-width: 300px;
    }
    
    .pixel-feature-item {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .pixel-feature-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .pixel-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pixel-text {
        font-size: 13px;
    }
    
    .pixel-banner-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .coming-soon-badge {
        top: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 9px;
    }
    
    .pixel-spotlight-card {
        padding: 30px 20px;
    }
    
    .pixel-spotlight-title {
        font-size: 26px;
    }
    
    .pixel-spotlight-tagline {
        font-size: 14px;
    }
    
    .pixel-spotlight-content > p {
        font-size: 14px;
    }
    
    .pixel-feature-item {
        padding: 10px 20px;
        font-size: 13px;
    }
}

