/* --- Variables --- */
:root {
    --bg-color: #050505; /* Deep black */
    --surface-color: rgba(255, 255, 255, 0.03); /* subtle card bg */
    --surface-border: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa; /* zinc-400 */
    
    --accent-gold: #fbbf24;
    --accent-primary: #e11d48; /* Pinkish red for CTAs */
    --accent-primary-hover: #be123c;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utilities --- */
.glass {
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
    /* Adding a subtle hint of color for the gradient to make it pop like hsquare */
    background: linear-gradient(135deg, #fff 0%, #fbbf24 50%, #e11d48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.overline {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.w-full {
    width: 100%;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--accent-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px 0 rgba(225, 29, 72, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- Navigation --- */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: var(--bg-color);
    border-bottom: 1px solid var(--surface-border);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        background: var(--surface-color);
        padding: 0.5rem 1.5rem;
        border-radius: var(--radius-pill);
        border: 1px solid var(--surface-border);
    }
    
    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-secondary);
    }
    
    .nav-links a:hover, .nav-links a.active {
        color: var(--text-primary);
    }
}

.desktop-btn {
    display: none;
}
@media (min-width: 768px) {
    .desktop-btn { display: inline-flex; }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}
@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: -1; /* Behind navbar */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-secondary);
}

.mobile-link:hover {
    color: var(--text-primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
}

.hero-bg img,
.hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, var(--bg-color) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.2s;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 700px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- Stats Section --- */
.stats-section {
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--surface-border);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-container { grid-template-columns: repeat(4, 1fr); }
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Generic Section --- */
.services-section, .packages-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
    padding: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.icon-wrapper {
    width: 50px; height: 50px;
    background: rgba(225, 29, 72, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Packages Sticky Stack --- */
.packages-carousel {
    display: flex;
    flex-direction: column;
    gap: 6rem; /* Spacing between cards when not stacked */
    padding-bottom: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    position: sticky;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-color); /* Need solid background to cover cards behind */
    border: 1px solid var(--surface-border);
    box-shadow: 0 -20px 40px rgba(0,0,0,0.5); /* Strong shadow to separate layers */
    transition: transform 0.3s ease;
}

/* Stagger the top positions so they form a visible stack */
.package-card:nth-child(1) {
    top: 100px; 
    z-index: 1;
}

.package-card:nth-child(2) {
    top: 120px; 
    z-index: 2;
}

.package-card:nth-child(3) {
    top: 140px; 
    z-index: 3;
}

.package-img {
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: #000;
}

.package-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.5;
}

.package-card:hover .package-img img {
    transform: scale(1.05);
}

.package-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
}

.package-header {
    margin-bottom: 1rem;
}

.package-type {
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.package-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    margin-bottom: 1rem;
}

.package-price .price {
    font-size: 1.25rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.package-price .unit {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.package-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: none; /* Hide on default, could show on hover or in wider screens */
}

@media (min-width: 1024px) {
    .package-desc { display: block; }
}

.package-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.package-link i {
    width: 16px; height: 16px;
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.package-link:hover i {
    transform: translateX(4px);
}


/* --- Footer --- */
.footer {
    border-top: 1px solid var(--surface-border);
    padding: 6rem 2rem 2rem;
    background: #000;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1.5fr;
    }
}

.footer-brand h2 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
}

.social-links a:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-list i {
    color: var(--accent-gold);
}

.footer-form-wrapper {
    padding: 2rem;
}

.footer-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.footer-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-color);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent-primary);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--surface-border);
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.modal-header .price {
    color: var(--accent-gold);
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.menu-items-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.menu-items-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.menu-items-list i {
    color: var(--accent-primary);
    width: 16px; height: 16px;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--surface-border);
}
/* --- Google Reviews Section --- */
.reviews-section {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.review-card {
    position: sticky;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface-border);
    box-shadow: 0 -20px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card:nth-child(1) { top: 120px; z-index: 1; }
.review-card:nth-child(2) { top: 150px; z-index: 2; }
.review-card:nth-child(3) { top: 180px; z-index: 3; }

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 1.2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.star-filled {
    fill: #fbbc05;
    color: #fbbc05;
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    align-self: flex-end;
}

@media (max-width: 768px) {
    .review-card {
        padding: 1.5rem;
    }
    
    .review-card:nth-child(1) { top: 80px; }
    .review-card:nth-child(2) { top: 100px; }
    .review-card:nth-child(3) { top: 120px; }
}
