/* Root Variables */
:root {
    --primary-olive: #4A4F3D;
    /* Deep Olive Green */
    --primary-pink: #E8B7B0;
    /* Soft Blush Pink */
    --primary-brown: #7A4E2D;
    /* Warm Brown */
    --accent-pink: #E8B7B0;
    /* Soft Blush Pink */
    --accent-rose: #D99A94;
    /* Muted Rose */
    --accent-gold: #C9A45C;
    /* Soft Gold */
    --new-color: #E8B7B0;
    /* Unified Blush Pink */
    --accent-gold-light: rgba(201, 164, 92, 0.15);
    --bg-cream: #F7F3EF;
    /* Cream / Off-white */
    --bg-gray: #EAE6E2;
    /* Light Warm Gray */
    --bg-green: #c4e1c5;
    --bg-glass: rgba(74, 79, 61, 0.85);
    /* Olive tint glass */
    --white: #FFFFFF;
    --text-dark: #2E3126;
    /* Dark Charcoal-Olive */
    --text-light: #7A8268;
    /* Muted Olive-Gray */
    --shadow-soft: 0 10px 30px rgba(74, 79, 61, 0.04);
    --shadow-premium: 0 20px 40px rgba(74, 79, 61, 0.08);
    --border-radius: 24px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}


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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.hero-tagline {
    font-family: 'Playfair Display', serif;
    color: var(--primary-olive);
}

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

ul {
    list-style: none;
}

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

section {
    padding: 100px 0;
}

/* Header & Navbar */
header {
    background: transparent;
    padding: 30px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.header-scrolled {
    background: var(--new-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo-img {
    height: 75px;
    width: 75px;
    /* object-fit: cover; */
    margin-right: 15px;
    border: 3px solid #ffffff;
    /* border-radius: 50%; */
    /* padding: 4px; */
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px #ffffff, 0 8px 24px rgba(74, 79, 61, 0.22);
    /* backdrop-filter: blur(4px); */
    transition: var(--transition);
}

.logo-img:hover {
    box-shadow: 0 0 0 3px #ffffff, 0 8px 24px rgba(74, 79, 61, 0.22);
    transform: scale(1.06);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-olive);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: auto;
    /* Force to the right if other items exist */
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-olive);
    cursor: pointer;
    margin-left: 20px;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.mobile-only {
    display: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-rose));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 15px rgba(74, 79, 61, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 79, 61, 0.3);
    background: linear-gradient(135deg, var(--accent-rose), var(--new-color));
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-rose);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--accent-rose);
    display: inline-block;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--new-color);
    border-color: var(--new-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 100px;
    background: var(--bg-cream);
    /* Fallback */
}

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

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.hero-overlay {
    margin-top: 5rem;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--primary-olive) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
    opacity: 1;
    transform: scale(1.2);
}

.swiper-nav-btn {
    color: var(--primary-olive) !important;
    background: rgba(255, 255, 255, 0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.swiper-nav-btn:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-nav-btn:hover {
    background: var(--white);
    color: var(--accent-gold) !important;
}



.hero-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

.hero-shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed var(--accent-gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column-reverse;
        text-align: center !important;
    }

    .hero-content {
        max-width: 100% !important;
    }

    .hero-logo-img {
        max-width: 300px;
    }

    .hero-shape-1,
    .hero-shape-2 {
        width: 300px;
        height: 300px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==========================================================================
   NEW HERO SECTION (FLOATING CARDS LAYOUT)
   ========================================================================== */
.new-hero {
    position: relative;
    padding: 160px 0 100px 0;
    background: linear-gradient(135deg, var(--bg-green) 0%, var(--bg-gray) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.new-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

/* Floating Cards Visuals */
.new-hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
}

.floating-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    border: 6px solid var(--white);
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Individual Card Positions */
.floating-card.card-1 {
    width: 60%;
    height: 320px;
    top: 15%;
    left: 0;
    z-index: 2;
    animation: float-slow 8s ease-in-out infinite;
}

.floating-card.card-2 {
    width: 50%;
    height: 240px;
    top: 0;
    right: 5%;
    z-index: 1;
    animation: float-medium 7s ease-in-out infinite 0.5s;
}

.floating-card.card-3 {
    width: 55%;
    height: 260px;
    bottom: 0;
    right: 12%;
    z-index: 3;
    animation: float-fast 6s ease-in-out infinite 1s;
}

/* Floating Animations */
@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0.5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-0.5deg);
    }
}

@keyframes float-medium {

    0%,
    100% {
        transform: translateY(0) rotate(-0.5deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes float-fast {

    0%,
    100% {
        transform: translateY(0) rotate(0.5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-1.5deg);
    }
}

/* Card Hover Interactive Effects */
.floating-card:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(74, 79, 61, 0.18);
}

/* Right Side Content Styling */
.new-hero-content {
    text-align: left;
}

.new-hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-rose);
    margin-bottom: 20px;
}

.new-hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-olive);
}

.new-hero-content .highlight-text {
    color: var(--primary-pink);
    display: block;
    font-family: inherit;
    font-weight: inherit;
}

.new-hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.new-hero-btns {
    display: flex;
    gap: 20px;
}

/* ==========================================================================
   BOTTOM CAROUSEL SECTION
   ========================================================================== */
.bottom-hero {
    position: relative;
    overflow: hidden;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.bottom-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: rgba(74, 79, 61, 0.45);
    /* Tint overlay for readability */
}

/* Responsive adjustment for New Hero Grid */
@media (max-width: 992px) {
    .new-hero {
        padding-top: 140px;
    }

    .new-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .new-hero-visual {
        height: 400px;
        order: 2;
        /* Visual below content on tablets/mobiles */
    }

    .new-hero-content {
        text-align: center;
        order: 1;
    }

    .new-hero-btns {
        justify-content: center;
    }

    .floating-card.card-1 {
        height: 240px;
    }

    .floating-card.card-2 {
        height: 180px;
    }

    .floating-card.card-3 {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .new-hero {
        padding-top: 120px;
    }

    .new-hero-content h1 {
        font-size: 2.2rem;
    }

    .new-hero-content p {
        font-size: 1.05rem;
    }

    .new-hero-visual {
        height: 300px;
    }

    .floating-card.card-1 {
        height: 180px;
    }

    .floating-card.card-2 {
        height: 130px;
    }

    .floating-card.card-3 {
        height: 150px;
    }

    .new-hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .new-hero-btns .btn-primary,
    .new-hero-btns .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--white);
}

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

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


.soft-img-wrap {
    position: relative;
    display: inline-block;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 100%);
    padding: 10px;
}

.soft-img {
    width: 100%;
    max-width: 650px;
    border-radius: calc(var(--border-radius) - 10px);
    box-shadow: var(--shadow-premium);
    display: block;
    margin: 0 auto;
    opacity: 0.5;
    filter: brightness(1.02) contrast(0.98);
    transition: var(--transition);
}

.soft-img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: block;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    background-color: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .serve-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-premium);
}

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

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: rgba(247, 243, 239, 0.85);
    /* var(--bg-cream) with transparency */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    border-left: 5px solid var(--accent-pink);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: var(--bg-cream);
    transform: scale(1.02);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-olive);
}

/* Booking Section */
.booking {
    background-color: var(--bg-gray);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-olive);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
}

/* Footer */
footer {
    background-color: var(--primary-olive);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-about h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
}


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

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {

    .services-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-right {
        gap: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 40px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        text-align: center;
        gap: 25px;
    }

    .nav-cta {
        display: none;
        /* Hide button in header, will show in menu if needed */
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-only {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-container {
        padding: 30px 20px;
    }

    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Admin Responsiveness */
@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        padding: 15px;
    }

    .sidebar h2 {
        margin-bottom: 15px;
    }

    .sidebar nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sidebar nav ul li {
        margin-bottom: 0;
    }

    .main-content {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .table-container {
        overflow-x: auto;
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Decorative Ornaments */
.ornament {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    opacity: 0.3;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold-light) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
    opacity: 0.4;
}

/* =========================================
   PRICING PAGE STYLES
   ========================================= */

/* Individual Services Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 45px 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-rose));
}

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

.pricing-card--featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(160deg, var(--white) 0%, var(--accent-gold-light) 100%);
}

.pricing-card--featured::before {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-rose));
    height: 5px;
}

.pricing-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pricing-card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.pricing-badge {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-olive);
    line-height: 1;
    margin-bottom: 12px;
}

.pricing-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-olive);
}

.pricing-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--accent-rose);
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: start;
}

/* Package Card */
.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 45px 35px;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.package-card--highlight {
    border: 2px solid var(--accent-gold);
    transform: scale(1.03);
    background: linear-gradient(160deg, #fff 0%, rgba(121, 159, 210, 0.05) 100%);
    z-index: 2;
}

.package-card--highlight:hover {
    transform: scale(1.03) translateY(-8px);
}

.service-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background-color: var(--new-color);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(142, 123, 176, 0.15);
}

.package-tag {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-rose);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.package-tag--gold {
    background: linear-gradient(135deg, var(--new-color), var(--accent-gold));
}

.package-tag--premium {
    background: linear-gradient(135deg, var(--primary-olive), #1C2E54);
}

.package-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
}

.package-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.package-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-olive);
}

.package-subtitle {
    font-size: 0.88rem;
    color: var(--accent-rose);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.package-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-olive);
    line-height: 1;
    margin-bottom: 6px;
}

.package-savings {
    font-size: 0.84rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 22px;
}

/* Add-Ons Grid */
.addons-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--bg-cream);
    border-radius: 16px;
    padding: 22px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.addon-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateX(6px);
}

.addon-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(142, 123, 176, 0.15);
    /* Lavender with opacity */
    color: var(--new-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.addon-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.addon-content {
    flex: 1;
}

.addon-content h4 {
    font-size: 1.05rem;
    color: var(--primary-olive);
    margin-bottom: 4px;
}

.addon-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.addon-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    white-space: nowrap;
}

/* Booking Policy Card */
.policy-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 55px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 860px;
    margin: 0 auto;
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.policy-header i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.policy-header h2 {
    font-size: 2rem;
    margin: 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 14px;
}

.policy-item i {
    font-size: 1.3rem;
    color: var(--accent-rose);
    margin-top: 2px;
    flex-shrink: 0;
}

.policy-item p {
    font-size: 0.98rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .package-card--highlight {
        transform: scale(1);
    }

    .package-card--highlight:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .policy-card {
        padding: 35px 24px;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .addon-item {
        flex-wrap: wrap;
    }

    .addon-price {
        font-size: 1.5rem;
    }
}

/* Booking page: Service Price Hint */
.service-price-hint {
    margin-top: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(121, 159, 210, 0.08), rgba(142, 123, 176, 0.12));
    border-left: 3px solid var(--accent-gold);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--primary-olive);
    display: none;
    animation: fadeIn 0.4s ease;
}

.service-price-hint.visible {
    display: block;
}

.service-price-hint strong {
    color: var(--accent-gold);
    font-size: 1.1rem;
}


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

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

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: var(--border-radius);
    position: relative;
    padding: 40px;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

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

.modal-close:hover {
    color: var(--accent-rose);
}

.booking-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-badge {
    display: inline-block;
    background: var(--bg-cream);
    color: var(--primary-olive);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-info {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   IMAGE-ORIENTED LAYOUT UTILITIES
   ========================================================================== */

/* Full-bleed background section */
.bg-cover-section {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Glassmorphism Floating Card */
.glass-card-container {
    background: rgba(255, 255, 255, 0.326);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: 0 20px 45px rgba(74, 79, 61, 0.12);
    /* position: relative; */
    z-index: 5;
    max-width: 600px;
}

@media (max-width: 768px) {
    .glass-card-container {
        padding: 30px 20px;
    }
}

/* Asymmetric Collage / Overlapping Images */
.collage-container {
    position: relative;
    height: 480px;
    width: 100%;
}

.collage-img {
    position: absolute;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    object-fit: cover;
    transition: var(--transition);
}

.collage-img-base {
    width: 70%;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 1;
}

.collage-img-overlay {
    width: 55%;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 8px solid var(--white);
}

.collage-container:hover .collage-img-base {
    transform: translateY(-5px) scale(1.02);
}

.collage-container:hover .collage-img-overlay {
    transform: translate(5px, 5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(74, 79, 61, 0.15);
}

/* Hover Zoom Cards with Gradient Overlays */
.hover-zoom-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 350px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.hover-zoom-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-zoom-card:hover img {
    transform: scale(1.08);
}

.hover-zoom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 79, 61, 0.9) 0%, rgba(74, 79, 61, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
}

/* Asymmetric Masonry Grid */
.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
}

.grid-item-tall {
    grid-column: span 6;
    height: 480px;
}

.grid-item-short {
    grid-column: span 6;
    height: 320px;
    margin-top: 80px;
}

@media (max-width: 992px) {

    .grid-item-tall,
    .grid-item-short {
        grid-column: span 12 !important;
        height: 350px !important;
        margin-top: 0 !important;
    }
}