:root {
    /* Color Palette */
    --primary: #D4AF37;
    /* Gold */
    --primary-light: #F3E5AB;
    /* Light Gold/Vanilla */
    --secondary: #2C3E50;
    /* Deep Blue/Charcoal */
    --text-main: #333333;
    --text-light: #777777;
    --bg-main: rgba(255, 255, 255, 0.75); /* Semi-transparent off-white for glass effect */
    --bg-light: rgba(255, 255, 255, 0.85); /* Slightly more opaque glass effect */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    
    /* New Global Oil Pastel Flower Background */
    background: url('assets/bg-floral.png') no-repeat center center/cover;
    background-attachment: fixed;
    background-color: #fcfaf8; /* Fallback light cream */
    
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
    background-color: var(--bg-main);
    backdrop-filter: blur(8px); /* Soften the painting behind text sections */
    -webkit-backdrop-filter: blur(8px);
}

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

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

/* Display Utilities */
.d-none { display: none !important; }
.d-md-block { display: none !important; }
@media (min-width: 769px) {
    .d-md-block { display: block !important; }
    .d-md-none { display: none !important; }
}
@media (max-width: 768px) {
    .d-md-none { display: block !important; }
}

.section-title {
    margin-bottom: 4rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px; /* Adjust height based on logo proportion */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--secondary); /* Dark text on transparent light BG */
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--secondary); 
}

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

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary); /* Dark lines against light hero */
    margin: 5px auto;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--secondary);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-light);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    /* Make button fully rounded (pill shape) and text uppercase + bold as per reference */
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
}

.btn-primary:hover {
    background-color: #C09A2D;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: var(--bg-light);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--secondary); /* Darker text for light background */
    /* Let global background show through */
    background: transparent;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Frosted glass overlay so the painting is visible but text is readable */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        /* Fix iOS/mobile vanishing background issue (now inherits from body, but good to keep clear) */
        background-attachment: scroll !important;
        /* Reduce height on mobile to reveal the Why Us section below */
        height: 60vh;
        min-height: 450px;
    }
    
    /* Modify overlay on mobile to be fully transparent */
    .hero-overlay {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: none;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    color: var(--secondary); /* Dark text instead of white */
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8); /* Light glow instead of dark shadow */
    /* Match reference typography size */
    font-size: 3.5rem;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    color: var(--secondary); /* Dark text */
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.8); /* Light glow */
}

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px; /* Float below navbar */
        right: -100%;
        width: 250px; /* Much smaller width */
        height: auto;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.85); /* Semi-transparent */
        backdrop-filter: blur(15px); /* strong glassmorphism blur */
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.5); /* frosted edge */
        border-radius: 16px; /* Elegant rounded corners */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 20px; /* Floating margin off the screen edge */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.8rem 0; /* Add spacing between items */
    }

    .nav-links a {
        font-size: 1.1rem; /* Slightly larger menu text for readability */
        display: block;
        padding: 0.5rem;
        color: var(--secondary) !important;
    }


    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--secondary);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--secondary);
    }

    /* Mobile Hero Typography Overrides matching reference */
    .hero h1 {
        font-size: 2.8rem; /* Scaled down for mobile */
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    /* Reduce section padding so next section is visible */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
}

/* =========================================
   Why Us Comparison Section
   ========================================= */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr; /* Force 2 columns on mobile side-by-side */
        gap: 0.5rem; /* Very tight gap to fit mobile screens */
    }
}

.compare-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #eee;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .compare-card {
        padding: 1.5rem 0.5rem; /* Drastically reduce padding on mobile to fit text */
    }
}

.compare-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.compare-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .compare-card h3 {
        font-size: 0.9rem; /* Shrink title greatly */
        margin-bottom: 1rem;
    }
}

.compare-card.premium {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.compare-card.premium h3 {
    color: var(--primary);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.5rem; /* Very small text */
        top: -10px; /* Adjust positioning for smaller badge */
    }
    
    .compare-card.premium {
        padding-top: 1.5rem; /* Keep some space at the top so title isn't crushed by badge */
    }
}

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

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .feature-list li {
        font-size: 0.65rem; /* Miniature text to fit side-by-side */
        padding: 0.5rem 0;
        padding-left: 1.2rem;
        line-height: 1.2;
    }
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li.check::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-list li.cross::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .feature-list li.check::before,
    .feature-list li.cross::before {
        font-size: 0.8rem; /* Scale down checkmarks */
    }
}

.compare-card.premium .feature-list li {
    font-weight: 500;
}

/* =========================================
   Projects Section
   ========================================= */
.projects-scroll-container {
    width: 100%;
}

.project-card {
    background: var(--bg-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5); /* Glass edge */
    height: auto;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Floating Bubble Animation for Cards */
@keyframes floatBubble {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Desktop Projects Layout */
@media (min-width: 901px) {
    .projects-row {
        display: flex;
        gap: 2rem;
    }
    .project-card {
        flex: 0 0 calc(33.333% - 1.33rem); /* 3 cards per row */
        display: flex;
        flex-direction: column;
        animation: floatBubble 4s ease-in-out infinite;
    }
    
    .project-card.elegant-card {
        animation-delay: 1.5s;
    }
    
    .project-card.luxury-card {
        animation-delay: 3s;
    }
    /* Prevent Swiper classes from breaking Desktop layout if randomly added */
    .projects-swiper {
        overflow: visible !important;
    }
    .projects-row.swiper-wrapper {
        flex-wrap: nowrap;
        transform: none !important;
    }
    .project-card.swiper-slide {
        width: auto !important; 
    }
}

.project-img {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

/* Add an overlay glassmorphism effect on hover */
.project-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-img::after {
    opacity: 1;
}

.project-info {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--secondary);
}

.project-info .desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.project-info .package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.project-info .package-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-main);
}

.project-info .package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.project-info .package-features li strong {
    color: var(--secondary);
}

.mt-3 {
    margin-top: 1rem;
}

.highlight-text {
    font-weight: 600;
    color: var(--primary) !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Prevent Swiper classes from breaking Desktop layout */
@media (min-width: 901px) {
    .projects-swiper {
        overflow: visible !important;
    }
    .projects-row.swiper-wrapper {
        flex-wrap: nowrap;
        transform: none !important;
    }
    .project-card.swiper-slide {
        width: auto !important; 
    }
}

/* Projects Mobile Horizontal Settings */
@media (max-width: 900px) {
    .projects-container {
        padding: 1rem 0.5rem; /* Tighter padding */
    }
    
    .projects-row {
        display: flex; /* Critical for horizontal layout */
        flex-direction: row; /* Horizontal */
        gap: 0.5rem; /* Minimal gap between the 3 columns */
        justify-content: space-between;
        align-items: stretch;
    }

    .project-card {
        width: calc(33.3% - 0.35rem); /* Fit 3 columns cleanly */
        max-width: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border: none;
        display: flex;
        flex-direction: column;
        animation: floatBubble 4s ease-in-out infinite;
    }
    
    .project-card.elegant-card {
        animation-delay: 1.5s;
    }
    
    .project-card.luxury-card {
        animation-delay: 3s;
    }

    .project-img {
        height: 110px; /* Tiny image to save space */
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .project-img::after {
        opacity: 1 !important; /* Always show dark gradient overlay on mobile */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    }

    .package-overlay-title {
        color: white;
        position: absolute;
        z-index: 2;
        text-align: center;
        width: 100%;
        margin: 0;
        font-family: var(--font-heading);
        font-size: 0.95rem; /* Small but readable title */
        letter-spacing: 0.5px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.9);
        padding: 0 0.2rem;
    }

    .package-price {
        font-family: var(--font-heading);
        color: var(--primary);
        font-size: 0.85rem; /* Minimized price */
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 0.5rem;
        letter-spacing: 0px;
    }
    
    .modal-trigger-btn {
        padding: 0.4rem 0.2rem !important;
        font-size: 0.65rem !important; /* Tiny button to fit small width */
        width: 100%;
        border-radius: 8px !important; /* Slightly softer corners */
        letter-spacing: 0 !important;
    }
    
    .project-info .desc {
        display: none !important; /* Always hidden on mobile, content moves to modal */
    }

    /* Aggressive Scaling for Packages Text/Size on Mobile */
    .project-info {
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        flex-grow: 1;
    }
    
    .project-info h3 {
        display: none !important; /* Hide old non-overlay titles on mobile */
    }
}

/* =========================================
   Mobile Package Modal
   ========================================= */
.package-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-modal.active {
    display: flex;
    opacity: 1;
}

.package-modal .modal-content {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden; /* Contain decorative elements */
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    
    /* Hide scrollbar for a cleaner look */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.package-modal .modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* =========================================
   Custom Calendar Modal
   ========================================= */
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendar-modal.active {
    opacity: 1;
}

.calendar-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.calendar-modal.active .calendar-content {
    transform: translateY(0);
}

.close-calendar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-calendar:hover {
    color: var(--secondary);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.calendar-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.calendar-nav-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0 0.5rem;
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-day {
    padding: 8px 0;
    cursor: pointer;
    border-radius: 50%;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: var(--transition);
}

.calendar-day:hover:not(.empty) {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--secondary);
}

.calendar-day.selected {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.calendar-day.empty {
    cursor: default;
}

/* Time Picker Section */
.time-picker-section {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    text-align: center;
}

.time-picker-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 1rem;
}

.time-selectors {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.time-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--secondary);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.time-select:focus {
    border-color: var(--primary);
}

.time-colon {
    font-weight: bold;
    color: var(--secondary);
}

.confirm-date-btn {
    width: 100%;
}

/* Modal Decorative Elements (Premium aesthetic) */
.package-modal .modal-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.package-modal .modal-content::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(248, 234, 230, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.package-modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--secondary);
    cursor: pointer;
    line-height: 1;
    z-index: 10; /* elevate above decorations */
}

.package-modal h3 {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0px;
    position: relative;
    z-index: 10;
}

.package-modal .package-price {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

/* Ensure modal body text stats above decorations */
.package-modal #modalBody {
    position: relative;
    z-index: 10;
}

/* Dynamic Modal Animated Backgrounds */
.modal-canvas,
.modal-anim-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Under the text, over the decorative circles */
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px; /* Match modal border radius */
}

/* Basic Package - Floating Bubbles (Realistic) */
.bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1) 40%, transparent 60%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.5), 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    opacity: 0.8;
    animation: floatUp linear infinite;
    backdrop-filter: blur(1px); /* Slight distortion effect behind bubble */
    -webkit-backdrop-filter: blur(1px);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-800px) scale(1.5);
        opacity: 0;
    }
}

/* =========================================
   Mobile Swipe Tutorial
   ========================================= */
.mobile-swipe-tutorial {
    display: none; /* Hidden by default (desktop) */
}

@media (max-width: 900px) {
    .mobile-swipe-tutorial {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        color: var(--secondary);
        font-size: 0.9rem;
        font-weight: 500;
        opacity: 0.8;
    }

    .swipe-icon {
        display: flex;
        align-items: center;
        animation: swipeHint 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes swipeHint {
        0%, 100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(10px);
        }
    }
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
    /* Space for pagination */
    padding-top: 1rem;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-score {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 3rem 2rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

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

.swiper-pagination-bullet {
    background-color: var(--secondary);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary);
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.review-text {
    flex-grow: 1;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.reviewer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.reviewer .name {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.reviewer .date {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Add aggressive mobile scaling to match 'Why Us' size when side-by-side */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem 1rem 1rem;
    }
    .rating-badge {
        padding: 0.2rem 0.5rem;
        margin-bottom: 0.5rem;
    }
    .stars {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    .rating-score {
        font-size: 0.7rem;
    }
    .quote-icon {
        font-size: 1.5rem;
        top: 5px;
        left: 10px;
    }
    .review-text {
        font-size: 0.7rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    .reviewer .name {
        font-size: 0.8rem;
    }
    .reviewer .date {
        font-size: 0.6rem;
    }
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info {
    padding: 4rem;
    background: var(--secondary);
    color: var(--bg-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    color: var(--bg-light);
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form-container {
    padding: 4rem 4rem 4rem 2rem;
}

.custom-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.form-group input,
.form-group select {
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-main);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--bg-light);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1.2rem;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border: 2px dashed var(--primary);
    border-radius: 12px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0; /* Remove gap */
    }

    /* Heavily scale down contact section to match miniature sizing */
    .contact-info {
        padding: 1.5rem 1rem;
    }
    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .contact-info p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    .custom-form {
        gap: 0.8rem;
    }
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    .form-group input,
    .form-group select {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    .submit-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-logo-img {
    height: 60px; /* Larger in footer */
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-light);
    margin: 0 0.5rem;
    transition: var(--transition);
}

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

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.copyright {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.6;
}