/* CSS Variables based on "Soft Pastel Dream" Palette */
:root {
    --color-sand: #F9F4EC;
    --color-cloud: #E5E7E9;
    --color-almond-light: #D8BCAE;
    --color-almond: #B58E7D;
    --color-blush: #F2D7D5;
    --color-sage: #B6C6B6;
    --color-dark-green: #4B5340;
    --color-text-dark: #333333;
    --color-text-light: #666666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;

    --carousel-item-width: 320px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark-green);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-dark-green);
    color: white;
}

.btn-primary:hover {
    background-color: #1a3326;
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--color-dark-green);
    color: white;
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-dark:hover {
    background-color: #1a3326;
}

.small-btn {
    padding: 8px 24px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.05rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark-green);
    border: 1px solid var(--color-dark-green);
}

.btn-secondary:hover {
    background-color: var(--color-dark-green);
    color: white;
}

/* Header */
.header {
    background-color: var(--color-sand);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

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

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

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

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: var(--color-dark-green);
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-dark-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-image: url('assets/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}



.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--color-text-dark);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--color-sand);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: center;
    max-width: 1400px; /* Wider for desktop */
    margin: 0 auto;
    width: 90%;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-right: 20px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    width: 450px;
    height: 600px;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    border: 2px solid var(--color-almond);
    z-index: 1;
    opacity: 0.8;
}

.arch-image {
    width: 450px; /* Enlarge image */
    height: 600px;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.arch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1.2;
    max-width: 650px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-title {
    font-size: 3.5rem;
    color: var(--color-dark-green);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 35px;
    font-style: italic;
    opacity: 0.85;
}

.about-text p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-text p em {
    font-style: italic;
    color: var(--color-almond);
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-dark-green);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-almond);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Collections Section */
.collections {
    padding: 80px 0 120px;
    background-color: var(--color-sand);
}

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

.card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
}

.card-sage { background-color: var(--color-sage); }
.card-almond { background-color: var(--color-almond); }
.card-blush { background-color: var(--color-blush); }

/* High contrast text for dark cards */
.card-almond .card-title,
.card-almond .card-subtitle,
.card-almond .card-text-mini {
    color: white;
}

.card-almond .btn-secondary {
    color: white;
    border-color: white;
}

.card-almond .btn-secondary:hover {
    background-color: white;
    color: var(--color-almond);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 15px 15px 0 15px;
    border-radius: 25px 25px 0 0;
}

.card-content {
    padding: 30px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 5px; /* Reduced for proximity to description */
    line-height: 1.2;
}

.card-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-dark-green);
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.card-subtitle i {
    font-size: 0.8rem;
}

.card-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-description {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    position: relative;
    color: #444;
}

.card-features li::before {
    content: '•';
    color: var(--color-dark-green);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-dark-green);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Testimonial Section */
.testimonial {
    background-color: var(--color-sand);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
}

.testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--color-almond-light);
    opacity: 0.5;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.testimonial-item {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-dark-green);
    padding: 0 20px;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: normal;
    margin-top: 15px;
    font-weight: 500;
}

/* Footer & Contact */
.footer {
    background-color: white; /* Clean white background like the image */
    padding: 100px 0 30px;
    border-top: 1px solid var(--color-cloud);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col {
    flex: 1.5;
    max-width: 350px;
}

.contact-col, .follow-col {
    flex: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-name {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--color-dark-green);
    font-weight: 500;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 280px;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-dark-green);
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-address {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.4;
    max-width: 250px;
}

.contact-links a {
    font-size: 0.9rem;
    color: #999;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--color-almond);
}

.contact-links i {
    width: 20px;
    margin-right: 10px;
    color: var(--color-almond);
    text-align: center;
}

.footer-address i {
    width: 20px;
    margin-right: 10px;
    color: var(--color-almond);
    text-align: center;
}

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

.social-links a {
    font-size: 1.2rem;
    color: var(--color-dark-green);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--color-almond);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.copyright, .credits {
    font-size: 0.65rem;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.credits {
    font-weight: 500;
}

.footer-form {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-dark-green);
    background-color: transparent;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(44, 76, 59, 0.3);
}

.submit-btn {
    margin-top: 10px;
}

/* Top Banner */
.top-banner {
    background-color: #F0EAE1; /* Slightly darker than sand for subtle distinction */
    color: var(--color-dark-green);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--color-cloud);
}
.top-banner p {
    margin: 0;
}
.banner-btn {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid var(--color-almond);
    border-radius: 20px;
    color: var(--color-dark-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: transparent;
}
.banner-btn:hover {
    background-color: var(--color-almond);
    color: white;
}

/* Card Badge */
.card {
    position: relative;
}
.card.highlighted {
    border: 2px solid var(--color-almond);
    transform: scale(1.03);
}
.card.highlighted:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Subtle Mini Descriptions for Cards */
/* Subtle Mini Descriptions for Cards */
.card-text-mini {
    font-size: 0.85rem; /* Slightly larger for readability */
    color: var(--color-text-dark); /* Better contrast by default */
    opacity: 0.9;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 400;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-almond);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
}

.pricing-notice {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--color-text-dark);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Life Book Section */
.life-book {
    padding: 80px 0;
    background-color: var(--color-sand);
}

.life-book-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.step-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-almond);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-label::before,
.step-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--color-almond);
    margin: 0 15px;
    opacity: 0.5;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.section-subtitle-highlight {
    font-size: 1.2rem;
    color: var(--color-almond);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 40px;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
}
.mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-almond);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.mobile-nav-btn:hover {
    background-color: var(--color-dark-green);
    transform: translateY(-50%) scale(1.1);
}
.mobile-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}
.prev-mobile { left: -25px; }
.next-mobile { right: -25px; }

.carousel-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide native scrollbar Firefox */
    -ms-overflow-style: none; /* Hide native scrollbar IE/Edge */
    scroll-behavior: smooth;
}
.carousel-container::-webkit-scrollbar {
    display: none; /* Hide native scrollbar Chrome/Safari */
}
.carousel-track {
    display: flex;
    gap: 30px;
    padding: 50px 0;
    align-items: center;
}
.carousel-item {
    scroll-snap-align: center;
    min-width: var(--carousel-item-width);
    flex-shrink: 0;
    flex: 1;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
    opacity: 0.4;
    transform: scale(0.85); /* Scales down when not focused */
    filter: blur(2px) grayscale(30%); /* Fades out the background context */
}

.carousel-item.focused {
    opacity: 1;
    transform: scale(1.05); /* Scales up the central item */
    filter: blur(0) grayscale(0);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15); /* Adds a deep elevation shadow */
    z-index: 10;
}

/* Custom Carousel Controls removed as per user request */

/* Packages Section */
.packages {
    padding: 80px 0;
    background-color: white;
}

.packages-intro {
    text-align: center;
    margin-bottom: 50px;
}

.packages-intro .step-label {
    justify-content: center;
}

.packages-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.package-card {
    background-color: white;
    border-radius: 16px;
    padding: 50px 40px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    border: 1px solid var(--color-cloud);
    display: flex;
    flex-direction: column;
}

.highlighted-package {
    transform: scale(1.05);
    border: 2px solid var(--color-almond-light);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    background-color: var(--color-sand);
}

.badge-package {
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background-color: var(--color-almond);
    color: white;
    font-size: 0.65rem;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.package-card.selected {
    border: 2px solid var(--color-dark-green);
    box-shadow: 0 15px 40px rgba(75, 83, 64, 0.15);
}

.package-card.selected .btn-package-outline {
    border-color: var(--color-dark-green);
}

.package-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-dark-green);
    margin-bottom: 5px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.package-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
    line-height: 1.5;
    font-style: italic;
    min-height: 45px;
}

.package-duration {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
}

.package-features {
    text-align: left;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.package-features li {
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-features li.excluded {
    opacity: 0.5;
}

.package-features li i {
    color: var(--color-sage);
    font-size: 1.1rem;
}

.package-features li.excluded i {
    color: #ccc;
}

.btn-package-solid {
    width: 100%;
    background-color: var(--color-almond-light);
    color: var(--color-text-dark);
    border: none;
    border-radius: 30px;
    padding: 15px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-package-solid:hover {
    background-color: var(--color-almond);
}

.btn-package-outline {
    width: 100%;
    background-color: var(--color-sand);
    color: var(--color-text-dark);
    border: none;
    border-radius: 30px;
    padding: 15px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-package-outline:hover {
    background-color: var(--color-cloud);
}

.packages-cta {
    text-align: center;
    margin-top: 50px;
}

.packages-notice {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 50px;
    font-style: italic;
}

.packages-variation-notice {
    text-align: center;
    font-size: 1rem;
    color: var(--color-dark-green);
    margin: -10px 0 40px;
    font-style: italic;
    opacity: 0.8;
}

/* 3 Steps Section */
.three-steps {
    padding: 80px 0 60px; /* Increased bottom padding */
    background-color: var(--color-sand);
    text-align: center;
}

.steps-main-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark-green);
    margin-bottom: 50px;
}

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

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-almond-light);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.8;
}

.step-title {
    font-size: 1.1rem;
    color: var(--color-dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-desc {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
    max-width: 280px;
}

.booking-container .step-label {
    justify-content: center;
    margin-bottom: 30px;
    color: white;
}

.booking-container .step-label::before,
.booking-container .step-label::after {
    background-color: white;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background-color: var(--color-sand);
}

.testimonial-container .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.02);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.testimonial-item:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    position: relative;
    line-height: 1.6;
}

.testimonial-quote::before {
    content: '"';
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--color-almond-light);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    color: var(--color-dark-green);
    font-size: 1.1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Emotional CTA */
.emotional-cta {
    padding: 100px 0;
    text-align: center;
    background-color: white;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark-green);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Booking Section */
.booking {
    padding: 120px 0 100px; /* Increased top padding for better separation */
    background-color: var(--color-sage);
}
/* Booking Layout */
.booking-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-left {
    flex: 1;
}

.booking-title {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--color-dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.booking-subtitle {
    font-size: 1rem;
    color: var(--color-dark-green);
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Calendar Widget */
.calendar-widget {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.calendar-nav i {
    margin-left: 15px;
    color: var(--color-text-light);
    cursor: pointer;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    color: #a0a0a0;
    margin-bottom: 15px;
    font-weight: 600;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 10px 0;
}

.calendar-dates span {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-dates span.muted {
    color: #e0e0e0;
}

.calendar-dates span:hover:not(.muted) {
    background-color: var(--color-cloud);
}

.calendar-dates span.selected {
    background-color: var(--color-dark-green);
    color: white;
    font-weight: 600;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.time-slots-container {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.time-slots-title {
    font-size: 0.75rem;
    color: #a0a0a0;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.time-slots {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.time-btn {
    background-color: var(--color-cloud);
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.time-btn:hover:not(.disabled) {
    background-color: var(--color-sage);
}

.time-btn.selected {
    background-color: var(--color-dark-green);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.time-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Booking Right side (Form) */
.booking-right {
    flex: 1.2;
}

.form-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.form-main-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-almond);
    margin-bottom: 30px;
    font-style: italic;
}

.custom-booking-form .form-row {
    display: flex;
    gap: 20px;
}

.custom-booking-form .form-row .form-group {
    flex: 1;
}

.custom-booking-form .form-group {
    margin-bottom: 25px;
}

.custom-booking-form label {
    display: block;
    font-size: 0.7rem;
    color: #b0b0b0;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.custom-booking-form input,
.custom-booking-form select,
.custom-booking-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background: transparent;
    transition: border-color 0.3s;
}

.custom-booking-form input::placeholder,
.custom-booking-form textarea::placeholder {
    color: #e0e0e0;
}

.custom-booking-form input:focus:not([readonly]),
.custom-booking-form select:focus,
.custom-booking-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-almond);
}

.custom-booking-form input[readonly] {
    color: var(--color-dark-green);
    font-weight: 600;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px dashed var(--color-sage);
}

.custom-booking-form .select-wrapper {
    position: relative;
}

.custom-booking-form select {
    appearance: none;
    padding-right: 30px;
    color: #a0a0a0;
}

.custom-booking-form .select-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b0b0;
    pointer-events: none;
    font-size: 0.8rem;
}

.btn-submit-booking {
    width: 100%;
    background-color: #8c736d;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-submit-booking:hover {
    background-color: #725b56;
}



/* Floating Contact Menu */
.fab-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-container:hover .fab-options,
.fab-container:focus-within .fab-options,
.fab-container.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-container.active .fab-main i {
    transform: rotate(135deg);
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-almond);
    color: white;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 12px rgba(181, 142, 125, 0.15), 0 0 0 24px rgba(181, 142, 125, 0.05);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-main i {
    transition: transform 0.4s ease;
}

.fab-container:hover .fab-main,
.fab-container:focus-within .fab-main {
    transform: scale(1.05);
    background-color: #a37c6b;
    box-shadow: 0 0 0 15px rgba(181, 142, 125, 0.2), 0 0 0 30px rgba(181, 142, 125, 0.1);
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.fab-option:hover {
    transform: scale(1.1);
}

.wa-option {
    background-color: #25D366;
}

.sms-option {
    background-color: #007AFF;
}

.tel-option {
    background-color: #4B5340; /* Matching theme dark green */
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.btn-small-text {
    font-size: 0.85rem;
    padding: 10px 15px;
    margin: 0;
    width: 100%;
}

/* Portfolio Gallery Modal */
.selection-summary {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background-color: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 998;
    width: 220px;
    font-family: var(--font-body);
    border-left: 4px solid var(--color-almond);
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.selection-summary.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.summary-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-almond);
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-right: 20px;
}

.summary-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: var(--color-cloud);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.summary-close:hover {
    color: var(--color-almond);
}

.summary-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.summary-list li {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.summary-list li i {
    font-size: 0.9rem;
    color: var(--color-cloud);
}

.summary-list li.checked {
    color: var(--color-dark-green);
    font-weight: 500;
}

.summary-list li.checked i {
    color: var(--color-dark-green);
}

.summary-list li.checked i::before {
    content: "\f058"; /* fa-check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.summary-list li span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .selection-summary {
        bottom: 85px;
        right: 15px;
        width: 160px;
        padding: 10px 12px;
    }

    .summary-header {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }

    .summary-list li {
        font-size: 0.75rem;
        margin-bottom: 4px;
        gap: 6px;
    }

    .summary-list li i {
        font-size: 0.8rem;
    }

    .summary-close {
        top: 5px;
        right: 5px;
        font-size: 0.8rem;
    }
}

.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 244, 236, 0.95); /* var(--color-sand) translucent */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
}

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

.modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-dark-green);
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.modal-content {
    width: 90%;
    max-width: 1200px;
    padding: 80px 0;
    min-height: 100vh;
}

.modal-title {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--color-almond);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.modal-subtitle {
    font-size: 0.8rem;
    color: var(--color-dark-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.modal-subtitle i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.modal-footer {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Masonry Grid */
.gallery-grid {
    column-count: 3;
    column-gap: 25px;
}

.gallery-img-wrapper {
    margin-bottom: 25px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlideUp 0.6s ease forwards;
}

.gallery-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 244, 236, 0.98);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-dark-green);
    font-size: 2rem;
    cursor: pointer;
    z-index: 20001;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }

    .about-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .about-image-wrapper {
        justify-content: center;
        padding-right: 0;
        width: 100%;
    }
    
    .arch-image {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .about-image-wrapper::before {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 3 / 4;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
    }
    
    .about-text p {
        text-align: center;
    }

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

    .booking-container .step-label {
        justify-content: center;
        margin-bottom: 30px;
    }

    .booking-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .booking-left, .booking-right {
        width: 100%;
        flex: none;
    }
    
    .custom-booking-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .brand-col {
        align-items: center;
        max-width: 100%;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-sand);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 30px;
    }

    .hero {
        background-image: url('assets/banner-movil.jpg'); /* Updated for mobile version */
        padding-bottom: 120px; /* Added to push content up and show more background */
        min-height: 90vh; /* Increased to allow more image to show */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        padding-right: 0;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-quote {
        font-size: 1.15rem;
    }

    .carousel-track {
        padding: 20px 0; 
    }
    
    .testimonial-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px; /* Bleed to screen edges over container */
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-item {
        flex: 0 0 85%; /* Make item taking most width but let next one peek */
        scroll-snap-align: center;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .fab-option {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-grid {
        column-count: 2;
        column-gap: 15px;
    }

    .modal-title {
        font-size: 3rem;
    }

    .top-banner {
        flex-direction: column;
        gap: 8px;
        padding: 12px 15px;
        text-align: center;
    }
    
    .top-banner p {
        font-size: 0.8rem;
    }

    .prev-mobile { left: -10px; }
    .next-mobile { right: -10px; }
}

/* Custom Alert Modal Styles */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 244, 236, 0.85); /* Sand color semi-transparent */
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.custom-alert-box {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-alert-overlay.active .custom-alert-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.custom-alert-icon {
    font-size: 3rem;
    color: var(--color-almond);
    margin-bottom: 20px;
}

.custom-alert-icon.success i {
    color: var(--color-dark-green);
    content: "\f058"; /* fa-check-circle */
}

.custom-alert-icon.error i {
    color: #e57373;
    content: "\f071"; /* fa-exclamation-triangle */
}

.custom-alert-title {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.custom-alert-message {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.custom-alert-btn {
    background-color: var(--color-sage);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-alert-btn:hover {
    background-color: var(--color-dark-green);
}

.custom-alert-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.custom-alert-btn.btn-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
}

.custom-alert-btn.btn-whatsapp:hover {
    background-color: #128C7E;
}

.custom-alert-btn.btn-sms {
    background-color: var(--color-dark-green); /* Use theme color for SMS */
}

.custom-alert-btn.btn-sms:hover {
    background-color: var(--color-text-dark);
}

@media (max-width: 480px) {
    :root {
        --carousel-item-width: 280px;
    }
}

/* Animations for Dynamic Updates */
@keyframes popUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: var(--color-almond); }
    100% { transform: scale(1); }
}

@keyframes flashUpdate {
    0% { opacity: 1; }
    50% { opacity: 0.5; color: var(--color-almond); }
    100% { opacity: 1; }
}

.pop-update {
    animation: popUpdate 0.5s ease-out;
}

.flash-update {
    animation: flashUpdate 0.5s ease-out;
}

.package-features li {
    transition: all 0.3s ease;
}

/* Subtle Social Links in Footer */
.subtle-social {
    font-size: 0.85rem !important;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light) !important;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.subtle-social:hover {
    opacity: 1;
    color: var(--color-almond) !important;
}

.subtle-social i {
    font-size: 1rem;
}

/* Google Reviews CTA */
.reviews-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px dashed var(--color-almond-light);
    background-color: rgba(249, 244, 236, 0.5);
    border-radius: 12px;
}

.reviews-footer-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-bottom: 0; /* Removed bottom margin for row alignment */
    font-weight: 500;
}

.reviews-footer .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-dark-green);
    color: white;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
}

.reviews-footer .btn:hover {
    background-color: #1a3326;
    transform: translateY(-2px);
}

.reviews-footer .btn i {
    font-size: 0.9rem;
    color: white;
    background: #4285F4;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .reviews-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

