/* ==========================================================================
   Base & Design System
   ========================================================================== */
:root {
    /* Colors - Dark Premium Plum Theme based on swatch */
    --bg-color: #311824;             /* Deep rich plum/wine base */
    --bg-surface: #422030;           /* Slightly lighter plum for cards */
    --bg-surface-light: #52283c;     /* Hover states */
    
    --text-main: #fcfcfc;            /* Off white */
    --text-muted: #d4bcc7;           /* Muted pinkish gray for text */
    
    /* Primary Accents */
    --accent-gold: #f3d4a0;          /* Premium soft gold */
    --accent-gold-hover: #e0b471;
    --accent-copper: #c77b58;        /* Warm copper tone for depth */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Spacing */
    --section-pad_y: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0em;
    color: var(--text-main);
}

.heading-xl { font-size: clamp(3rem, 6vw, 5rem); }
.heading-lg { font-size: clamp(2.5rem, 5vw, 4rem); }
.heading-md { font-size: clamp(2rem, 4vw, 3rem); }

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

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

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.section {
    padding: var(--section-pad_y) 0;
}

.section-header {
    margin-bottom: 3rem; /* Increased proper spacing */
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 650px;
    margin-top: 15px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Highlight Text (Gold Accent) */
.text-accent {
    color: var(--accent-gold);
    font-style: italic;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(206, 157, 83, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(206, 157, 83, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-copper) 100%);
}

.btn-outline {
    background: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: rgba(206, 157, 83, 0.1);
    color: var(--accent-gold-hover);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05); /* Subtle glass line */
}

/* Class added via JS on scroll */
.navbar.scrolled {
    background: rgba(11, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom-color: rgba(255,255,255,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

.logo-img {
    max-height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 2000;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-links a:not(.btn) {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-muted);
}

.mobile-links a:hover {
    color: #fff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Space for navbar */
}

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

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

.hero-slider, .hero-slider .swiper-wrapper, .hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darkened overlay for maximum text legibility */
    background: linear-gradient(to bottom, rgba(20, 10, 15, 0.85) 0%, rgba(20, 10, 15, 0.7) 50%, var(--bg-color) 100%);
    z-index: 5;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    /* Adding text shadow gives extra contrast against any light spots in images */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-wrapper img {
    border-radius: 8px;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-surface-light);
    padding: 30px;
    border-radius: 50%;
    border: 1px solid rgba(206, 157, 83, 0.3);
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ==========================================================================
   Categories (Explore)
   ========================================================================== */
.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.bg-surface {
    background-color: var(--bg-surface);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
    font-style: italic;
}

/* ==========================================================================
   Packages Grid
   ========================================================================== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.package-card {
    background: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.05);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(206, 157, 83, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.pkg-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.pkg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.pkg-content {
    padding: 30px;
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.price-start {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pkg-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.pkg-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step-item {
    padding: 30px 20px;
    background: var(--bg-color);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.02);
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.step-item h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-romantic-quote {
    margin-bottom: 60px;
}

.pre-footer-cta {
    /* background: var(--bg-surface); */
    padding: 60px 40px;
    border-radius: 12px;
    /* border: 1px solid rgba(255,255,255,0.05); */
    /* box-shadow: 0 10px 40px rgba(0,0,0,0.5); */
    position: relative;
    overflow: hidden;
}

/* Subtle glow behind the CTA */
.pre-footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: var(--accent-gold);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
}

.pre-footer-cta > * {
    position: relative;
    z-index: 2;
}

.quote-left {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.5;
}

.quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 15px 0;
    color: var(--text-main);
}

.elegant-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 0 auto;
}

.romantic-heading {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.heart-icon {
    color: #e24b4b; /* Subtle romantic red */
    animation: pulse 2s infinite;
}

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

.bg-surface-light {
    background-color: var(--bg-surface-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-gold);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: -2px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.2);
    border: none;
    color: var(--text-main);
    outline: none;
}

.newsletter-form button {
    background: var(--accent-gold);
    color: var(--bg-color);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--text-main);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-color);
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition-smooth);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(206, 157, 83, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.15rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   Testimonials Swiper
   ========================================================================== */
.testimonial-card {
    background: var(--bg-surface-light);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.03);
    margin: 10px;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(206, 157, 83, 0.2);
    position: absolute;
    top: 20px;
    right: 30px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-main);
    line-height: 1.7;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.reviewer-name {
    font-size: 1rem;
    margin-bottom: 5px;
}

.stars i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: var(--text-muted);
}
.swiper-pagination-bullet-active {
    background: var(--accent-gold);
}
.testimonial-slider {
    padding-bottom: 50px !important;
}

/* ==========================================================================
   Inner Page Layouts (About, Extra Pages)
   ========================================================================== */
.inner-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

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

.philosophy-img-wrapper {
    position: relative;
    padding: 20px;
}

.philosophy-img {
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.decorative-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.02);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(206, 157, 83, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.value-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin-top: 15px;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}
.breadcrumb-item a {
    color: var(--accent-gold);
    opacity: 0.8;
}
.breadcrumb-item a:hover {
    opacity: 1;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: var(--text-muted);
}
.breadcrumb-item.active {
    color: var(--text-main);
}

.max-w-800 {
    max-width: 800px;
}

/* Mission & Vision grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.mv-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.mv-vision-card {
    border-left: 1px solid rgba(255,255,255,0.05); 
    padding-left: 60px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.02);
    transition: var(--transition-smooth);
}
.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(206, 157, 83, 0.3);
}
.team-img-wrapper img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.team-info {
    padding: 20px;
    text-align: center;
}
.team-name {
    font-size: 1.15rem;
    margin-bottom: 5px;
}
.team-role {
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .nav-actions .btn { display: none; }
    .hamburger-btn { display: block; }
    
    .about-grid, .philosophy-grid, .mission-vision-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper, .philosophy-img-wrapper { max-width: 600px; margin: 0 auto; order: -1; }
    
    .mv-vision-card {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.05);
        padding-top: 40px;
    }

    .experience-badge { right: 10px; bottom: 10px; width: 120px; height: 120px; padding: 20px;}
    .badge-num { font-size: 1.5rem; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title br { display: none; }
    .hero-title { font-size: 2.5rem; }
}
