@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

:root {
    --primary: #f8f5f2;
    /* Warm Ivory Sanctuary */
    --accent: #c5a059;
    /* Artisanal Gold */
    --accent-dark: #a6843d;
    --text-dark: #1c1917;
    --text-muted: #57534e;
    --bg-white: #ffffff;
    --glass: rgba(248, 245, 242, 0.8);
    --glass-border: rgba(197, 160, 89, 0.2);
    --card-shadow: 0 20px 50px -15px rgba(28, 25, 23, 0.08);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --h-font: 'Playfair Display', serif;
    --p-font: 'Outfit', sans-serif;
    --section-gap: 10rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--p-font);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--h-font);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Navbar Reform */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 110px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 0 4rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

nav.scrolled {
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    margin-left: 1.5rem;
    /* Push logo slightly into correct alignment */
}

.logo img {
    height: 100px;
    /* Refined size to be present yet balanced */
    transition: var(--transition);
    mix-blend-mode: multiply;
    filter: contrast(130%) brightness(1.1);
    /* Moderate filter for original logo */
    object-fit: contain;
}

nav.scrolled .logo img {
    height: 120px;
}

nav.scrolled .logo {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.logo-text {
    margin-left: 15px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

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

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

.book-now-btn {
    background-color: var(--accent);
    color: white !important;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.book-now-btn:hover {
    background-color: transparent;
    color: var(--accent) !important;
    border-color: var(--accent);
    transform: translateY(-2px);
}

section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title span {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-dark);
}

/* Common Page Header */
.page-header {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    max-width: none;
    padding: 0;
}

.page-header h1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-header p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    opacity: 0.9;
}

/* Category Navigation for Services */
.category-nav {
    background: var(--primary);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 1000;
    text-align: center;
    transition: var(--transition);
}

.category-nav-links {
    display: flex;
    gap: 4rem;
    justify-content: center;
    gap: 2.5rem;
    justify-content: flex-start;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 600;
    flex-wrap: wrap;
    padding: 0 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

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

/* Global Responsive Container */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Utility Helpers */
.full-width {
    width: 100%;
}

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

.left-aligned {
    text-align: left;
}

.text-muted {
    color: var(--text-muted);
}

.text-lg {
    font-size: 1.05rem;
}

.text-xl {
    font-size: 1.25rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-3-5 {
    margin-bottom: 1.75rem;
}

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

.opacity-90 {
    opacity: 0.9;
}

.uppercase-spacing {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.line-height-1-8 {
    line-height: 1.8;
}

.padding-2 {
    padding: 2rem;
}

.padding-2-5 {
    padding: 2.5rem;
}

.rounded {
    border-radius: 24px;
}

.shadow {
    box-shadow: 0 30px 60px rgba(28, 25, 23, 0.08);
}

.bg-primary {
    background: var(--primary);
}

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

.no-scroll {
    overflow: hidden;
}

/* Hero + Page Header */
.hero-section,
.page-header {
    position: relative;
    overflow: hidden;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.78;
    filter: saturate(1.05) brightness(1.05);
}

.hero-overlay,
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.32) 0%, rgba(28, 25, 23, 0.72) 100%), radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 18%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 20%);
}

.hero-content {
    position: relative;
    max-width: 840px;
    z-index: 1;
    padding: 120px 0 80px;
}

.hero-content h1,
.page-header h1 {
    color: #fff;
}

.hero-content p,
.page-header p {
    color: rgba(255, 255, 255, 0.92);
}

.hero-btns {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.16);
}

.section-subtitle {
    max-width: 720px;
    margin: 1.5rem auto 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.special-emphasis,
#services-peak,
#package,
#query {
    padding-top: 4rem;
}

.special-emphasis {
    background: rgba(248, 245, 242, 0.76);
    padding-bottom: 3.5rem;
}

.special-emphasis .section-title {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.special-emphasis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.special-emphasis .service-card {
    background: white;
    border: 1px solid rgba(197, 160, 89, 0.12);
    box-shadow: none;
    padding: 1rem;
    border-radius: 24px;
    transition: none;
}

.special-emphasis .service-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(197, 160, 89, 0.16);
}

.special-emphasis .card-badge {
    display: none;
}

.special-emphasis .service-image {
    border-radius: 20px;
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.special-emphasis .service-content {
    margin-top: 1rem;
}

.special-emphasis .service-content span {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.special-emphasis .service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
}

.special-emphasis .service-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.96rem;
}

.special-emphasis .service-footer {
    justify-content: space-between;
    gap: 0.75rem;
}

.special-emphasis .service-footer span {
    font-size: 1rem;
    font-weight: 700;
}

.special-emphasis .service-footer .book-now-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
}

@media (max-width: 900px) {
    .special-emphasis-grid {
        grid-template-columns: 1fr;
    }
}

#services-peak {
    background: rgba(248, 245, 242, 0.8);
    padding-bottom: 4rem;
}

#signature-bundles {
    background: transparent;
    padding-bottom: 4rem;
}

#signature-bundles .section-title {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

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

.package-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(28, 25, 23, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(28, 25, 23, 0.07);
}

.package-header {
    padding: 1.6rem 1.6rem 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

.package-body {
    padding: 1.75rem 1.6rem 2rem;
    background: transparent;
}

.package-price-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.package-duration {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.package-price .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.package-price .discounted-price {
    font-size: 1.8rem;
    color: var(--accent);
    font-family: var(--h-font);
    line-height: 1;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.package-features li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.package-features li:last-child {
    border-bottom: none;
}

.feature-title {
    font-weight: 700;
    display: block;
    font-size: 0.95rem;
}

.feature-description {
    color: var(--text-muted);
    display: block;
    font-size: 0.95rem;
    line-height: 1.7;
}

.package-card .book-now-btn {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .package-price-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .package-card {
        width: 100%;
        min-width: 0;
        padding: 1.35rem;
    }

    .package-header {
        font-size: 1.2rem;
    }

    .package-body {
        padding: 1.25rem 1rem 1.5rem;
    }

    .package-price-container {
        gap: 0.75rem;
    }
}

.service-grid-home-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.service-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.service-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid rgba(197, 160, 89, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 220px;
}

.service-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 160, 89, 0.22);
    box-shadow: 0 10px 22px rgba(28, 25, 23, 0.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: none;
    background: #f8f5f2;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-tile h4 {
    margin-top: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.section-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-cta .section-link {
    margin-top: 0.5rem;
}

.service-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 16px 42px rgba(28, 25, 23, 0.08);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.section-link i {
    transition: transform 0.3s ease;
}

.section-link:hover i {
    transform: translateX(3px);
}

.package-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.package-badge.artisanal {
    background: rgba(197, 160, 89, 0.15);
    color: var(--accent);
}

.package-badge.signature {
    background: rgba(28, 25, 23, 0.08);
    color: var(--text-dark);
}

.package-badge.luxury {
    background: rgba(255, 202, 87, 0.15);
    color: #b17200;
}

.package-header {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-body {
    padding: 2rem;
    background: #fff8f8;
}

.package-price-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.package-duration {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.package-price .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.package-price .discounted-price {
    font-size: 2rem;
    color: var(--accent);
    font-family: var(--h-font);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.package-features li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.package-features li:last-child {
    border-bottom: none;
}

.feature-title {
    font-weight: 700;
    display: block;
}

.feature-description {
    color: var(--text-muted);
    display: block;
}

/* Form and contact layout */
.contact-details-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.contact-title {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    font-weight: 700;
}

.contact-info {
    color: var(--text-muted);
    line-height: 1.7;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: white !important;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.22);
}

.booking-form-box {
    background: white;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border: 1px solid rgba(28, 25, 23, 0.12);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    font-family: var(--p-font);
    font-size: 1rem;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

/* Contact Page */
#contact {
    background: rgba(248, 245, 242, 0.9);
    padding: 4rem 0 3rem;
}

#contact .about-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

#contact .about-text {
    background: white;
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(28, 25, 23, 0.08);
    box-shadow: 0 20px 45px rgba(28, 25, 23, 0.06);
}

#contact .section-title {
    margin-bottom: 1.75rem;
}

#contact .contact-details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

#contact .contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #faf7f2;
    border-radius: 22px;
    padding: 1.25rem;
    border: 1px solid rgba(28, 25, 23, 0.08);
}

#contact .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: rgba(197, 160, 89, 0.18);
    color: var(--accent);
    font-size: 1.05rem;
}

#contact .contact-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

#contact .contact-info {
    color: var(--text-muted);
    line-height: 1.8;
}

#contact .whatsapp-button {
    box-shadow: none;
    background: #25d366;
    color: white !important;
    padding: 0.85rem 1.3rem;
}

#contact .about-img-box {
    margin-top: 2rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(28, 25, 23, 0.08);
}

#contact .about-img-box img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100%;
}

#contact .booking-form-box {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(28, 25, 23, 0.08);
    box-shadow: 0 20px 45px rgba(28, 25, 23, 0.05);
}

#contact .form-input,
#contact .form-select,
#contact .form-textarea {
    border-radius: 18px;
    border: 1px solid rgba(28, 25, 23, 0.12);
    background: #faf7f2;
}

#contact .form-input:focus,
#contact .form-select:focus,
#contact .form-textarea:focus {
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12);
}

.contact-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

/* Map Section Styles */
#map-location {
    line-height: 0;
    overflow: hidden;
}

#map-location iframe {
    display: block;
    filter: grayscale(0.2) contrast(1.1);
    transition: var(--transition);
}

#map-location iframe:hover {
    filter: grayscale(0) contrast(1);
}

#contact .book-now-btn.full-width {
    width: 100%;
}

@media (max-width: 980px) {
    #contact .about-container {
        grid-template-columns: 1fr;
    }

    #contact .about-img-box {
        order: -1;
    }
}

/* Get In Touch / Query Section */
#query {
    background: rgba(248, 245, 242, 0.9);
}

.query-section {
    padding: 5rem 0 3.5rem;
}

.query-container {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 1.75rem;
    background: white;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(28, 25, 23, 0.08);
}

.query-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.query-form>* {
    width: 100%;
}

.query-form .form-input,
.query-form .form-select,
.query-form .form-textarea {
    border-radius: 20px;
    border: 1px solid rgba(28, 25, 23, 0.12);
}

.query-form button {
    width: fit-content;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .query-container {
        padding: 2rem;
    }

    .query-form {
        grid-template-columns: 1fr;
    }

    .query-form button {
        width: 100%;
    }
}

.whatsapp-container {
    margin: 2rem 0;
}

/* Footer */
.site-footer {
    background: #111;
    color: rgba(255, 255, 255, 0.8);
    padding: 4.5rem 4rem 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo,
.footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-col h4,
.footer-title {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

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

.footer-list li {
    margin-bottom: 0.9rem;
}

.footer-list li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: var(--accent);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-subscribe {
    margin-top: 1.25rem;
}

.footer-subscribe form {
    display: grid;
    gap: 0.75rem;
}

.footer-subscribe input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.footer-subscribe button {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    cursor: pointer;
    font-weight: 700;
}

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

@media (max-width: 1024px) {
    .site-footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3.5rem 1.5rem 1.75rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer-col {
        min-width: 0;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .footer-subscribe form {
        gap: 0.85rem;
    }

    .footer-subscribe button {
        width: 100%;
    }

    .footer-bottom {
        text-align: left;
        padding-top: 1.25rem;
        font-size: 0.92rem;
    }
}

/* Packages Grid */
#signature-bundles {
    background: transparent;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    padding: 1rem 0;
}

.package-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(28, 25, 23, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.12);
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(28, 25, 23, 0.08);
}

.package-header {
    padding: 1.5rem 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.package-body {
    padding: 1.75rem 1.5rem 2rem;
    background: transparent;
}

.package-price-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.package-duration {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.package-price {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.package-price .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.package-price .discounted-price {
    font-size: 1.9rem;
    color: var(--accent);
    font-family: var(--h-font);
    line-height: 1.1;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.package-features li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.package-features li:last-child {
    border-bottom: none;
}

.feature-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.75;
}

.package-card .book-now-btn {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .package-price-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Booking Form Container */
.booking-form-box {
    background: white;
    padding: 5rem;
    border-radius: 2px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

/* Hero Section Refined */
#home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    max-width: none;
    padding: 0;
}

.hero-content {
    max-width: 800px;
    padding: 100px 20px 0;
    /* Clear fixed navbar */
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-family: var(--h-font);
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--accent);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-out;
}

.hero-label span {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

/* About Refined */
.about-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    align-items: stretch;
    padding: 2rem 0;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(28, 25, 23, 0.08);
    box-shadow: 0 18px 36px rgba(28, 25, 23, 0.05);
}

.about-text {
    padding: 2.5rem;
    background: transparent;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.stats-container div {
    padding: 0.95rem 1rem;
    background: rgba(241, 236, 230, 0.7);
    border-radius: 18px;
    text-align: left;
    border: 1px solid rgba(28, 25, 23, 0.06);
}

.stats-container h4 {
    margin-bottom: 0.35rem;
    font-size: 2rem;
    color: var(--accent);
}

.stats-container p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-img-box {
    position: relative;
    overflow: hidden;
}

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

#story {
    background: transparent;
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        padding: 1.5rem 0;
    }

    .about-text {
        padding: 1.75rem 1.5rem;
    }

    .about-img-box {
        min-height: 340px;
    }

    .stats-container {
        grid-template-columns: repeat(3, minmax(100px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 1rem 0;
    }

    .about-text {
        padding: 1.4rem 1rem;
    }

    .about-img-box {
        min-height: 280px;
    }

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

    .stats-container div {
        padding: 0.85rem 0.95rem;
    }
}

.about-img-box {
    position: relative;
}

.about-img-box img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(28, 25, 23, 0.08);
    display: block;
}

#story {
    background: rgba(248, 245, 242, 0.95);
    padding: 4rem 0 3rem;
}

/* Services Grid Refined */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.special-emphasis .services-grid,
.special-emphasis-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 900px) {

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

    .special-emphasis .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .special-emphasis .service-footer span {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .special-emphasis .service-footer .book-now-btn {
        width: 100%;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.14);
    box-shadow: 0 10px 24px rgba(28, 25, 23, 0.06);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(28, 25, 23, 0.07);
}

/* Simple Our Heart layout */
.bg-primary.full-width .services-grid {
    gap: 1.25rem;
}

.bg-primary.full-width .service-card {
    background: #fff;
    border: 1px solid rgba(28, 25, 23, 0.08);
    box-shadow: none;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
}

.bg-primary.full-width .service-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(28, 25, 23, 0.12);
}

.bg-primary.full-width .service-card img {
    border-radius: 24px 24px 0 0;
    height: 220px;
    object-fit: cover;
}

.bg-primary.full-width .service-card .padding-2 {
    padding: 1.5rem;
}

.bg-primary.full-width .service-card h3 {
    font-size: 1.2rem;
    margin: 0.75rem 0 0.75rem;
}

.bg-primary.full-width .service-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.bg-primary.full-width .service-card .accent-text,
.bg-primary.full-width .service-card .text-sm,
.bg-primary.full-width .service-card .uppercase-spacing {
    display: none;
}

@media (max-width: 900px) {
    .bg-primary.full-width .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.card-badge {
    display: inline-flex;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-image,
.service-card img {
    width: 100%;
    border-radius: 24px;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-content {
    margin-top: 1.5rem;
}

.service-content span {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.service-content h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted);
    margin: 0 0 1.75rem;
    line-height: 1.8;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-footer span,
.service-footer .service-price {
    font-family: var(--h-font);
    font-size: 1.3rem;
    color: var(--accent);
}

.service-book-now {
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.85rem 1rem;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-book-now:hover {
    background: rgba(197, 160, 89, 0.12);
}

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

.booking-container {
    width: 100%;
}

.no-padding {
    padding: 0 !important;
}

.white-bg {
    background: white;
}

.border-accent {
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.philosophy-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.height-400 {
    height: 400px !important;
    object-fit: cover;
}

.service-card.no-padding img {
    border-radius: 24px 24px 0 0 !important;
}

/* Why Us Section Styling */
.why-us-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: -1rem;
}

.why-us-item {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    text-align: center;
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.why-us-item i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: block;
}

.why-us-item p {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Service List / Price Menu Section */
.price-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.price-category {
    background: #fff;
    padding: 2.5rem;
    border-radius: 28px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: var(--transition);
    height: fit-content;
}

.price-category:hover {
    box-shadow: 0 20px 45px rgba(28, 25, 23, 0.05);
    border-color: var(--accent);
}

.price-category h3 {
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 0.75rem;
}

.price-category h3 small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--p-font);
    font-weight: 400;
}

.price-items {
    list-style: none;
    padding: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px dotted rgba(197, 160, 89, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-name {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.price-value {
    font-family: var(--h-font);
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Existing service icon circle style */
.service-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 1.8rem;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
    background: #fff;
}

.service-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-icon-circle img {
    transform: scale(1.08);
}

#services-peak {
    background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-width: none;
}



/* Package Refined */
#package {
    background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-width: none;
}

.package-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(28, 25, 23, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.12);
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(28, 25, 23, 0.07);
}

.package-head {
    display: none;
}

.package-body {
    padding: 1.8rem 1.6rem 2rem;
    background: transparent;
}

.package-price {
    font-size: 1.6rem;
    font-family: var(--h-font);
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.package-list {
    list-style: none;
    margin-bottom: 3rem;
}

.package-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-list li::before {
    content: '→';
    color: var(--accent);
}

.accent-text {
    display: inline-block;
    font-size: 3.5rem;
    line-height: 1;
    transition: transform 0.4s ease, color 0.4s ease;
}

.large-text {
    font-size: 3.5rem;
}

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

/* Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

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

.reveal.active .accent-text {
    transform: scale(1.25);
}

/* -------------------------------------------------------------------------- */
/*                                RESPONSIVENESS                              */
/* -------------------------------------------------------------------------- */

.nav-extra {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 3000;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
    nav {
        padding: 0 2rem;
    }

    .logo {
        margin-left: 0;
    }

    .logo img {
        height: 85px;
    }

    .nav-links {
        gap: 1.8rem;
    }

    .nav-extra {
        gap: 1rem;
    }

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

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

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-img-box,
    .about-text {
        width: 100%;
    }

    .section-title h2 {
        font-size: 3rem;
    }

    section {
        padding: 5.5rem 2rem;
    }

    .packages-grid {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .package-card {
        min-width: 0;
    }

    .service-grid-home {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 2rem;
    }

    .service-card img {
        width: 100%;
        height: auto;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

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

    .section-title h2 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed !important;
        height: 100px !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: white;
    }

    .category-nav {
        padding: 1rem 0;
    }

    .category-nav-links {
        gap: 1.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0 1.5rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-wrap: nowrap;
    }

    .category-nav-links::-webkit-scrollbar {
        display: none;
    }

    .padding-2 {
        padding: 1.5rem;
    }

    .logo img {
        height: 75px;
    }

    .nav-extra {
        width: auto;
        gap: 1rem;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding-top: 120px;
        z-index: 2500;
        left: -100%;
        transition: left 0.3s ease;
    }

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

    .nav-links a {
        font-size: 1.3rem;
        color: var(--text-dark);
    }

    .hero-content {
        padding: 100px 1.5rem 0;
    }

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

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }

    .hero-btns {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .hero-btns .book-now-btn {
        width: 100%;
        display: block;
    }

    section {
        padding: 4.5rem 1.5rem;
    }

    .page-header {
        height: 50vh;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header p {
        font-size: 1.2rem;
    }

    .page-container {
        padding: 0 1.5rem;
    }

    .category-nav {
        padding: 1.5rem 0;
    }

    .category-nav-links {
        gap: 1.5rem;
        font-size: 0.75rem;
    }

    .booking-form-box {
        padding: 2rem !important;
    }

    #home,
    #services-peak,
    #package,
    #query {
        background-attachment: scroll !important;
    }

    #query {
        padding: 3rem 0;
    }

    .query-container,
    .booking-container {
        padding: 2rem 1rem !important;
        margin: 0 !important;
        border-radius: 0;
        width: 100% !important;
        box-shadow: none !important;
        border-left: none !important;
        border-right: none !important;
    }

    #query form {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    #query form>* {
        grid-column: span 1 !important;
    }

    #query form select {
        width: 100% !important;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .package-card {
        min-width: 0;
        padding: 1.4rem;
    }

    .package-header {
        font-size: 1.2rem;
    }

    .package-body {
        padding: 1.25rem 1rem 1.5rem;
    }

    .package-price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .package-price {
        width: 100%;
    }

    .package-card .book-now-btn {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .package-features li {
        padding: 0.55rem 0;
    }

    .price-list-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-category {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 0 1rem !important;
    }

    .logo img {
        height: 135px;
    }

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

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

    .section-title h2 {
        font-size: 2.4rem;
    }

    section {
        padding: 4rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid>div:last-child {
        grid-column: auto;
    }

    footer {
        padding: 4rem 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .package-card {
        padding: 1.2rem;
    }

    .package-header {
        font-size: 1.15rem;
    }

    .package-body {
        padding: 1rem 0.9rem 1.2rem;
    }

    .package-price-container {
        gap: 0.65rem;
    }

    .package-price .discounted-price {
        font-size: 1.55rem;
    }

    .package-card .book-now-btn {
        padding: 0.8rem 0.95rem;
    }
}

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

    .section-title h2 {
        font-size: 2rem;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .book-now-btn {
        padding: 0.85rem 1.2rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    line-height: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.instagram-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: var(--transition);
    text-decoration: none !important;
}

.instagram-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(204, 35, 102, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }

    .instagram-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 85px;
        right: 20px;
    }
}

/* Home Service Grid Fixes */
.service-grid-home-wrapper {
    background: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border: 1px solid #eee;
}

.service-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

@media (max-width: 900px) {
    .service-grid-home {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem 0.75rem !important;
    }
}

@media (max-width: 768px) {
    .service-grid-home {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem 0.5rem !important;
        padding: 0 !important;
    }

    .service-grid-home-wrapper {
        padding: 2rem 1rem !important;
    }

    .service-grid-home h4 {
        font-size: 0.9rem !important;
    }

    .service-grid-home .service-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .service-grid-home .reveal div {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 0.75rem !important;
    }
}

@media (max-width: 600px) {
    .service-grid-home {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.95rem 0.75rem !important;
    }

    .service-grid-home-wrapper {
        padding: 1.5rem 0.75rem !important;
    }

    .service-tile {
        min-height: auto !important;
        padding: 1rem 0.9rem !important;
    }

    .service-grid-home h4 {
        font-size: 0.95rem !important;
    }

    .service-grid-home .service-icon {
        width: 54px !important;
        height: 54px !important;
    }

    .service-grid-home .reveal div {
        width: 54px !important;
        height: 54px !important;
        margin-bottom: 0.65rem !important;
    }
}

/* Testimonial Slider */
.testimonial-section {
    background: rgba(248, 245, 242, 0.85);
    padding: 5rem 0 3rem;
}

.testimonial-section .section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.testimonial-slider {
    position: relative;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 2rem;
}

.testimonial-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.12);
    box-shadow: 0 20px 50px rgba(28, 25, 23, 0.05);
    max-width: 700px;
    width: min(100%, 700px);
    margin: 0 auto;
    padding: 3rem 2.5rem 2.5rem;
    display: grid;
    gap: 1.5rem;
    position: relative;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.star-rating {
    color: var(--accent);
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3rem;
    color: rgba(197, 160, 89, 0.08);
}

.testimonial-copy p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-copy p::before,
.testimonial-copy p::after {
    content: '"';
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    padding-top: 1.25rem;
}

.client-meta h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
}

.client-meta span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(197, 160, 89, 0.8);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .testimonial-section {
        padding: 4.5rem 1.25rem 2.25rem;
    }

    .testimonial-section .section-title {
        padding: 0 0.75rem;
    }

    .testimonial-slider {
        padding: 0 1rem 2rem;
    }

    .testimonial-slide {
        padding: 0 0.75rem;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 1.9rem;
        border-radius: 22px;
        min-width: 0;
    }
}

@media (max-width: 900px) {
    .testimonial-section {
        padding: 4rem 1rem 2rem;
    }

    .testimonial-section .section-title {
        padding: 0 0.75rem;
    }

    .testimonial-slider {
        padding: 0 0.75rem 2rem;
    }

    .testimonial-slide {
        padding: 0;
        width: 100%;
        justify-content: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 1.75rem;
        border-radius: 20px;
        min-width: 0;
        box-sizing: border-box;
    }
}

@media (max-width: 680px) {
    .testimonial-section {
        padding: 3rem 0 2rem;
    }

    .testimonial-slider {
        padding: 0 0.5rem 1.5rem;
    }

    .testimonial-slide {
        padding: 0;
    }

    .testimonial-card {
        padding: 1.15rem;
        max-width: 100%;
    }

    .testimonial-copy p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .client-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 52px;
        height: 52px;
    }

    .slider-controls {
        gap: 0.65rem;
        margin-top: 1.25rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 520px) {
    .testimonial-card {
        padding: 1rem;
        max-width: 100%;
    }

    .testimonial-copy p {
        font-size: 0.95rem;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }
}

/* Advantages Simple Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem 2.5rem;
    margin-top: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 1rem;
}

.advantage-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.advantage-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.advantage-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}