:root {
    --primary-font: 'Outfit', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --bg-color: #f8f1e7;
    --text-color: #333;
    --white: #ffffff;
    --dark-bg: #222;
    --card-bg: rgba(105, 80, 70, 0.9);
}

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

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

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

/* Header */
.site-header {
    background: rgba(248, 241, 231, 0.9);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.logo a {
    font-family: var(--heading-font);
    font-size: 36px;
    color: #3a3a3a;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 95px;
    /* Increased size to make it pop */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
    background: transparent;
    padding: 5px;
    border-radius: 40px;
}

.mobile-action {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background-color: #c8aa7d;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #222;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Toggle Active State */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 15px;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.main-nav li.active a,
.main-nav a:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Desktop Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    list-style: none;
    padding: 15px 0;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    padding-left: 35px;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #222;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: #444;
    color: #ffffff !important;
}

.btn-dark {
    background-color: rgba(35, 35, 35, 0.85);
    color: #e5dfd3;
    backdrop-filter: blur(5px);
}

.btn-dark:hover {
    background-color: rgba(10, 10, 10, 0.95);
    color: #fff;
}

.btn-play {
    background-color: rgba(35, 35, 35, 0.85);
    color: #e5dfd3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(5px);
}

.btn-play:hover {
    background-color: rgba(10, 10, 10, 0.95);
    color: #fff;
}

/* Hero Banner */
.hero-banner-new {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 30px;
}

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

.hero-banner-new .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

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

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-slide-content-new {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding-bottom: 80px;
    box-sizing: border-box;
}

.hero-left-col {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 12;
}

.hero-slide-tag {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4a66a;
    /* Brand Gold */
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.hero-slide-headline {
    font-family: var(--heading-font);
    font-size: 82px;
    line-height: 1.1;
    font-weight: 300;
    color: #fdfaf6;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-right-col {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    z-index: 12;
}

.hero-slide-desc {
    font-size: 15.5px;
    line-height: 1.8;
    color: #e5dfd3;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.hero-slide-cta {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background-color: #222;
    border-radius: 50px;
    border: 2px solid #222;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.hero-slide-cta:hover {
    color: #ffffff;
    background-color: #444;
    border-color: #444;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cta-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.hero-slide-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Swiper Active State Animations */
.swiper-slide-active .hero-slide-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active .hero-slide-headline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.swiper-slide-active .hero-slide-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.swiper-slide-active .hero-slide-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

/* Geometric Decorative Blocks */
.slider-decor-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62%;
    height: 150px;
    background-color: #382d22;
    z-index: 5;
    pointer-events: none;
    border-top-right-radius: 4px;
}

.slider-decor-left::before {
    content: '';
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 60px;
    height: 320px;
    background-color: #382d22;
    border-top-right-radius: 4px;
}

.slider-decor-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 38%;
    background-color: #c4a66a;
    z-index: 5;
    pointer-events: none;
    border-bottom-left-radius: 4px;
}

/* Custom Navigation links */
.slider-nav-container {
    position: absolute;
    bottom: 50px;
    left: 80px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

.slider-nav-container a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.slider-nav-container a:hover {
    color: #fff;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Progress loader */
.slider-progress-wrap {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 15;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle-svg {
    transform: rotate(-90deg);
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2px;
}

.progress-circle-active {
    fill: none;
    stroke: #c4a66a;
    stroke-width: 2px;
    stroke-dasharray: 125.6;
    /* 2 * PI * r (r=20) = 125.66 */
    stroke-dashoffset: 125.6;
    animation: sliderProgress 5s linear infinite;
}

@keyframes sliderProgress {
    0% {
        stroke-dashoffset: 125.6;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Responsive Styles for New Slider */
@media (max-width: 991px) {
    .hero-slide-content-new {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .hero-left-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-right-col {
        flex: 0 0 auto;
        width: 100%;
        padding-left: 0;
    }

    .hero-slide-headline {
        font-size: 52px;
    }

    .slider-decor-left {
        width: 80%;
    }

    .slider-nav-container {
        left: 30px;
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slide-headline {
        font-size: 42px;
    }

    .slider-decor-left,
    .slider-decor-right {
        display: none;
        /* Hide decorative shapes on mobile to keep it clean */
    }

    .slider-nav-container {
        bottom: 30px;
        left: 5%;
    }

    .slider-progress-wrap {
        bottom: 30px;
        right: 5%;
    }

    .hero-slide-content-new {
        padding-bottom: 100px;
    }
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* About Us Section (New Design) */
.about-us-section {
    padding: 120px 0;
    background-color: #fdfaf6;
    overflow: hidden;
}

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

.about-us-left {
    position: relative;
    padding-left: 50px;
}

.main-image-wrapper {
    position: relative;
    width: 420px;
    height: 580px;
    margin-left: 40px;
}

.main-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
    border: 1px solid rgba(200, 180, 160, 0.4);
    border-radius: 250px;
    z-index: 1;
}

.image-arch {
    width: 100%;
    height: 100%;
    border-radius: 250px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.flower-overlay {
    position: absolute;
    bottom: -40px;
    left: -140px;
    width: 380px;
    z-index: 5;
}

.flower-overlay img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

.play-badge {
    position: absolute;
    bottom: 20px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 6;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-badge:hover {
    transform: scale(1.05);
}

.play-badge .play-icon {
    position: absolute;
    color: #c4a66a;
    font-size: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.play-badge .circular-text {
    position: absolute;
    animation: rotateText 15s linear infinite;
}

.play-badge svg {
    fill: #333;
}

.play-badge svg text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-us-right {
    position: relative;
    padding-left: 20px;
    z-index: 2;
}

.bg-text {
    position: absolute;
    top: -90px;
    left: 0;
    font-family: var(--heading-font);
    font-size: 130px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 180, 160, 0.4);
    white-space: nowrap;
    z-index: -1;
    letter-spacing: 25px;
    user-select: none;
    opacity: 0.7;
}

.about-us-content {
    position: relative;
    z-index: 1;
}

.cursive-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: #c4a66a;
    display: block;
    margin-bottom: 15px;
}

.about-us-content h2 {
    font-family: var(--heading-font);
    font-size: 52px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-us-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stats-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.satisfaction-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #c4a66a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 600;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #333;
}

.stat-text .line {
    width: 30px;
    height: 2px;
    background-color: #c4a66a;
}

.btn-gold {
    background-color: #cba869;
    color: #fff;
    padding: 16px 30px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    max-width: 180px;
    text-decoration: none;
}

.btn-gold:hover {
    background-color: #b39257;
    color: #fff;
    box-shadow: 0 5px 15px rgba(203, 168, 105, 0.4);
}

.image-col {
    margin-left: auto;
}

.image-col img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
    .about-us-section {
        padding: 80px 0;
    }

    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-us-left {
        padding-left: 0;
        display: flex;
        justify-content: center;
    }

    .main-image-wrapper {
        margin-left: 0;
        max-width: 100%;
        width: 380px;
        height: 520px;
    }

    .flower-overlay {
        left: -60px;
        width: 250px;
        bottom: -20px;
    }

    .play-badge {
        right: -20px;
        width: 110px;
        height: 110px;
    }

    .play-badge .play-icon {
        font-size: 20px;
    }

    .bg-text {
        font-size: 70px;
        letter-spacing: 8px;
        top: -50px;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-us-content {
        text-align: center;
    }

    .about-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .stats-col {
        align-items: center;
        gap: 20px;
    }

    .satisfaction-stat {
        justify-content: center;
    }

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

    .image-col {
        margin-left: 0;
        width: 100%;
    }

    .image-col img {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 575px) {
    .main-image-wrapper {
        width: 280px;
        height: 400px;
    }

    .main-image-wrapper::before {
        top: -15px;
        bottom: -15px;
        left: -15px;
        right: -15px;
    }

    .flower-overlay {
        left: -40px;
        width: 200px;
        bottom: -20px;
    }

    .play-badge {
        right: -10px;
        width: 90px;
        height: 90px;
    }

    .play-badge svg {
        width: 80px;
        height: 80px;
    }

    .play-badge svg text {
        font-size: 15px;
    }

    .play-badge .play-icon {
        font-size: 16px;
    }

    .bg-text {
        font-size: 42px;
        letter-spacing: 5px;
        top: -30px;
    }

    .about-us-content h2 {
        font-size: 38px;
    }

    .image-col img {
        height: 200px;
    }
}


/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.services-section .container {
    max-width: 1400px;
    /* Expanded specifically for this section to fit wider cards AND a wider image */
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.services-title-area .subheading {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6a5d53;
    margin-bottom: 15px;
    font-weight: 500;
}

.services-title-area h2 {
    font-family: var(--heading-font);
    font-size: 48px;
    color: #4a3e30;
    font-weight: 400;
    line-height: 1.2;
}

.services-title-area h2 em {
    font-style: italic;
    color: #6d5b45;
}

.btn-brown {
    background-color: #6a533a;
    color: #fff;
    padding: 10px 10px 10px 25px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-brown:hover {
    background-color: #4a3a29;
    color: #fff;
}

.btn-brown .icon-circle {
    background-color: #fff;
    color: #6a533a;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-brown:hover .icon-circle {
    transform: rotate(45deg);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-image-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.service-icon {
    background-color: #6a533a;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--heading-font);
    font-size: 26px;
    color: #4a3e30;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-card p {
    font-size: 15px;
    color: #6a5d53;
    line-height: 1.8;
    flex-grow: 1;
    /* Pushes the 'best-for' tag to the bottom if cards vary in height */
    margin-bottom: 20px;
}

.service-card p.best-for {
    font-size: 14px;
    font-weight: 400;
    color: #8c7b6c;
    background-color: #fdfaf6;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 0;
    border-left: 3px solid #c4a66a;
}

.service-card p.best-for strong {
    color: #6a533a;
    font-weight: 600;
}

/* Steps Section (Stacking Cards) */
.steps-section {
    background-color: #5c4d3c;
    /* Dark olive/brown from reference */
    padding: 120px 0;
    position: relative;
}

.steps-header {
    text-align: center;
    margin-bottom: 80px;
    color: #fff;
}

.steps-header h2 {
    font-family: var(--heading-font);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 40px;
}

.steps-header h2 em {
    font-style: italic;
    color: #e5dfd3;
}

.step-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.indicator {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: #fff;
    color: #5c4d3c;
    border-color: #fff;
}

.indicator-line {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.steps-cards-wrapper {
    position: relative;
    max-width: 1150px;
    /* Increased max width */
    margin: 0 auto;
    padding-bottom: 50px;
}

.step-card {
    position: sticky;
    padding-top: 20px;
    margin-bottom: 40px;
}

/* Stacking Offsets */
#step-card-1 {
    top: 120px;
    z-index: 1;
}

#step-card-2 {
    top: 150px;
    z-index: 2;
}

#step-card-3 {
    top: 180px;
    z-index: 3;
}

.step-card-content {
    background-color: #fff;
    border-radius: 30px;
    /* Softer radius matching screenshot */
    padding: 30px;
    /* More padding inside the card around the image */
    display: flex;
    align-items: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    min-height: 520px;
    /* Increased height */
    transition: transform 0.3s ease;
}

.step-text {
    flex: 0 0 45%;
    padding: 60px 80px;
    /* More breathing room for text */
}

.step-number {
    font-family: var(--heading-font);
    font-size: 48px;
    color: #6a533a;
    display: block;
    margin-bottom: 15px;
}

.step-text h3 {
    font-family: var(--heading-font);
    font-size: 34px;
    color: #383029;
    margin-bottom: 20px;
    font-weight: 400;
}

.step-text p {
    font-size: 16px;
    color: #6a5d53;
    line-height: 1.8;
}

.step-img {
    flex: 0 0 55%;
    height: 480px;
    /* Increased image height to match larger card */
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Why Choose Us Section - Luxury Redesign */
.why-choose-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #fbf7f0 0%, #f3eae0 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Gold Leaf Background Shapes */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196, 166, 106, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.choose-grid-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

/* Dual Overlapping Image Showcase */
.choose-image-wrapper {
    position: relative;
    width: 100%;
    height: 620px;
}

.main-image-arch {
    width: 85%;
    height: 90%;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(56, 48, 41, 0.12);
    border: 1px solid rgba(196, 166, 106, 0.2);
    z-index: 2;
}

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

.choose-image-wrapper:hover .main-image-arch img {
    transform: scale(1.04);
}

.secondary-image-circle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f9f4ec;
    /* Matches background */
    box-shadow: 0 15px 35px rgba(56, 48, 41, 0.15);
    z-index: 3;
    transition: all 0.5s ease;
}

.choose-image-wrapper:hover .secondary-image-circle {
    transform: translateY(-5px);
}

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

.gold-line-frame {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 85%;
    height: 90%;
    border: 1px solid #c4a66a;
    border-radius: 200px 200px 20px 20px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.choose-image-wrapper:hover .gold-line-frame {
    top: 10px;
    left: -10px;
}

/* Luxury Cursive Text Badge */
.choose-badge-luxury {
    position: absolute;
    bottom: 50px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(56, 48, 41, 0.12);
    z-index: 5;
    cursor: pointer;
    border: 1px solid rgba(196, 166, 106, 0.25);
}

.choose-badge-luxury .badge-center-icon {
    position: absolute;
    color: #c4a66a;
    font-size: 22px;
    z-index: 2;
}

.choose-badge-luxury .circular-text {
    position: absolute;
    animation: rotateText 15s linear infinite;
    width: 100%;
    height: 100%;
}

.choose-badge-luxury svg {
    fill: #6a5d53;
}

.choose-badge-luxury svg text {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Right Side - Content Styling */
.choose-content-wrapper {
    padding-left: 20px;
}

.choose-content-wrapper h2 {
    font-family: var(--heading-font);
    font-size: 54px;
    color: #2b2520;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.choose-content-wrapper h2 em {
    font-family: 'Great Vibes', cursive;
    color: #c4a66a;
    text-transform: none;
    font-style: normal;
    font-size: 60px;
    display: inline-block;
    margin-left: 5px;
}

.choose-intro-desc {
    font-size: 16px;
    color: #6a5d53;
    line-height: 1.8;
    margin-bottom: 45px;
    font-weight: 300;
}

/* Reasons List layout */
.reasons-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.reason-card-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(224, 213, 193, 0.7);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.reason-card-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(105, 80, 70, 0.08);
    border-color: #c4a66a;
}

.reason-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reason-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fdfaf6;
    border: 1px solid rgba(196, 166, 106, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a66a;
    font-size: 18px;
    transition: all 0.3s ease;
}

.reason-card-item:hover .reason-card-icon {
    background: #c4a66a;
    color: #fff;
    border-color: #c4a66a;
    transform: scale(1.05);
}

.reason-card-header h3 {
    font-family: var(--heading-font);
    font-size: 21px;
    color: #383029;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.2px;
}

.reason-card-item p {
    font-size: 14.5px;
    color: #6a5d53;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .choose-grid-layout {
        gap: 50px;
    }

    .choose-content-wrapper h2 {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .choose-grid-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .choose-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        height: 550px;
    }

    .main-image-arch {
        width: 80%;
        height: 85%;
    }

    .gold-line-frame {
        width: 80%;
        height: 85%;
    }

    .secondary-image-circle {
        width: 180px;
        height: 180px;
    }
}

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

    .choose-image-wrapper {
        height: 440px;
        max-width: 360px;
    }

    .secondary-image-circle {
        width: 140px;
        height: 140px;
        border-width: 5px;
    }

    .choose-badge-luxury {
        width: 100px;
        height: 100px;
        right: -10px;
        bottom: 30px;
    }
}

/* Pricing Plans Section */
.pricing-section {
    padding: 100px 0 120px;
    background-color: var(--bg-color);
}

.pricing-section .container {
    max-width: 96%;
    /* Almost full width as requested */
}

.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-header h2 {
    font-family: var(--heading-font);
    font-size: 56px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: -1px;
}

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

.pricing-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 650px;
    /* Increased height to match the wider fluid layout */
    cursor: pointer;
}

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

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

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    z-index: 1;
}

.pricing-title {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.pricing-title h3 {
    font-family: var(--heading-font);
    font-size: 30px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Hover Overlay logic */
.pricing-overlay {
    position: absolute;
    bottom: -100%;
    /* Hidden below by default */
    left: 5%;
    width: 90%;
    background-color: rgba(200, 202, 163, 0.95);
    /* Elegant translucent khaki green */
    border-radius: 15px;
    padding: 30px 25px;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.pricing-card:hover .pricing-overlay {
    bottom: 5%;
    opacity: 1;
    pointer-events: auto;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-item .duration {
    font-size: 13px;
    color: #4a453e;
    display: block;
    margin-bottom: 5px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2b2520;
}

.service-name {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 400;
}

.price {
    font-size: 15px;
    font-weight: 500;
}

.pricing-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 10px 0;
}

.btn-book-plan {
    display: block;
    width: 100%;
    padding: 18px 0;
    text-align: center;
    background-color: #e5ded2;
    /* Light cream beige button */
    border: 1px solid #dcd3c6;
    color: #383029;
    text-decoration: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-book-plan:hover {
    background-color: #5c4d3c;
    color: #fff;
    border-color: #5c4d3c;
}

/* FAQ Section (Split Layout) */
.faq-section {
    display: flex;
    min-height: 750px;
    background-color: #5d6750;
    /* Dark olive green matching new design */
}

.faq-left {
    flex: 0 0 50%;
    padding: 120px 5% 120px 8%;
    /* Extra left padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-left-content {
    max-width: 600px;
    width: 100%;
}

.faq-left-content h2 {
    font-family: var(--heading-font);
    font-size: 56px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.faq-right {
    flex: 0 0 50%;
    position: relative;
}

.faq-right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    /* Square edges in the new design */
    overflow: hidden;
    background-color: transparent;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 22px 25px;
    background: transparent;
    border: none;
    font-family: var(--heading-font);
    /* Serif font for questions */
    font-size: 19px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 300;
}

.faq-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 16px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #fff;
}

.faq-btn.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    color: #e5dfd3;
    /* Lighter beige for legibility */
    font-size: 15px;
    line-height: 1.8;
}

/* Footer Section */
.site-footer {
    background-color: #4a3e30;
    /* Dark premium brown matching our theme */
    color: #e5dfd3;
    padding: 100px 0 40px;
    font-family: var(--primary-font);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-col h3 {
    font-family: var(--heading-font);
    font-size: 26px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
}

.brand-col .footer-logo {
    margin-bottom: 25px;
    display: inline-block;
}

.brand-col .footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-col .footer-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-col p,
.newsletter-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #d1c8bb;
    margin-bottom: 35px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #fff;
    color: #4a3e30;
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col li {
    margin-bottom: 18px;
}

.links-col a {
    color: #d1c8bb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.newsletter-form .input-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    font-family: var(--primary-font);
    width: 100%;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #d1c8bb;
}

.newsletter-form .submit-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    letter-spacing: 1px;
}

.newsletter-form .submit-btn .arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-form .submit-btn:hover .arrow {
    background-color: #fff;
    color: #4a3e30;
}

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

.copyright p {
    color: #d1c8bb;
    font-size: 15px;
}

.copyright a {
    color: #d1c8bb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #fff;
}

.back-to-top a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.back-to-top .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top a:hover .icon {
    background-color: #fff;
    color: #4a3e30;
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

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

.philosophy-content {
    position: relative;
    z-index: 2;
}

.philosophy-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: #c4a66a;
    display: block;
    margin-bottom: 15px;
}

.philosophy-content h2 {
    font-family: var(--heading-font);
    font-size: 52px;
    color: #2b2520;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 400;
}

.philosophy-content h2 em {
    font-style: italic;
    color: #c4a66a;
}

.philosophy-text-blocks p {
    font-size: 16px;
    color: #5c5043;
    line-height: 1.9;
    margin-bottom: 20px;
}

.philosophy-highlight {
    margin-top: 40px;
    padding: 30px;
    background-color: #fdfaf6;
    border-left: 4px solid #c4a66a;
    border-radius: 0 15px 15px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.philosophy-highlight i {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #c4a66a;
    opacity: 0.15;
}

.philosophy-highlight p {
    margin-bottom: 0;
    font-size: 17px;
    color: #2b2520;
    font-style: italic;
}

.philosophy-highlight strong {
    color: #c4a66a;
    font-weight: 600;
}

.philosophy-image-wrapper {
    position: relative;
    z-index: 1;
    padding: 0;
    max-width: 480px;
    /* Increased size */
    margin: 0 auto;
}

.philosophy-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background-color: transparent;
    border-radius: 250px;
    /* Oval backdrop line */
    z-index: 0;
    border: 2px solid #e0d5c1;
}

.philosophy-image {
    position: relative;
    z-index: 2;
    border-radius: 250px;
    /* Elegant oval shape to frame the bottom cut */
    background-color: #fdfaf6;
    /* Soft fill behind the transparent PNG */
    overflow: hidden;
    /* Clips the bottom perfectly into the oval */
    padding-top: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    transform: scale(1.02) translateY(5px);
    /* Fit image nicely inside */
}

.philosophy-image-wrapper:hover .philosophy-image img {
    transform: scale(1.05) translateY(5px);
}

.philosophy-leaves {
    position: absolute;
    top: 5%;
    right: -10%;
    font-size: 80px;
    color: #c4a66a;
    opacity: 0.5;
    transform: rotate(25deg);
    z-index: 3;
}

@media (max-width: 991px) {
    .philosophy-section {
        padding: 80px 0;
    }

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

    .philosophy-image-wrapper {
        margin: 0 auto;
        width: 90%;
        max-width: 380px;
        /* Scaled down for tablet */
        order: -1;
        margin-bottom: 20px;
    }

    .philosophy-highlight {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .philosophy-content h2 {
        font-size: 38px;
    }

    .philosophy-highlight {
        padding: 20px;
    }

    .philosophy-image-wrapper {
        max-width: 280px;
        /* Scaled down for mobile */
    }

    .philosophy-image {
        padding-top: 20px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
}

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

    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .header-action {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(248, 241, 231, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 20px 0 30px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .main-nav a {
        font-size: 18px;
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }

    .mobile-action {
        display: block;
        margin-top: 10px;
    }

    /* Mobile dropdown styling */
    .nav-dropdown .dropdown-menu {
        position: static !important;
        background: rgba(196, 166, 106, 0.08) !important;
        min-width: auto !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 0 !important;
        padding: 10px 0 !important;
        border-radius: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown-menu li a {
        padding: 12px 50px !important;
        font-size: 16px !important;
    }

    .dropdown-menu li a:hover {
        padding-left: 60px !important;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-buttons {
        margin-bottom: 20px;
    }

    .hero-static-content {
        margin-top: -100px;
    }

    .hero-floating-card {
        flex-direction: column;
        text-align: center;
        max-width: 90%;
        padding: 15px;
        gap: 15px;
    }

    .card-img img {
        width: 100%;
        height: 160px;
    }

    .swiper-slide {
        padding-bottom: 30px;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image img {
        height: 400px;
    }

    .about-content {
        flex: 0 0 100%;
        width: 100%;
        max-width: 550px;
        margin: -60px auto 0;
        /* Overlap image upwards */
        padding: 40px 30px;
        z-index: 3;
    }

    .about-content h2 {
        font-size: 36px;
    }

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

    .service-image-card {
        height: 350px;
    }

    .step-card-content {
        flex-direction: column;
    }

    .step-text {
        flex: 1;
        padding: 40px 30px;
        text-align: center;
    }

    .step-img {
        width: 100%;
        height: 350px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 60px 40px;
    }

    .choose-grid {
        gap: 20px;
    }

    .choose-card {
        padding: 40px 30px;
    }

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

    .faq-section {
        flex-direction: column;
    }

    .faq-left {
        padding: 80px 30px;
    }

    .faq-right {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-title-area h2 {
        font-size: 38px;
    }

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

    .service-image-card {
        height: 300px;
    }

    .steps-header h2 {
        font-size: 38px;
    }

    .step-img {
        height: 250px;
    }

    .step-text h3 {
        font-size: 28px;
    }

    .indicator-line {
        width: 30px;
    }

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

    .choose-title-area {
        padding: 0 0 30px 0;
    }

    .choose-title-area h2 {
        font-size: 42px;
    }

    .choose-card {
        flex-direction: column;
        text-align: center;
    }

    .choose-card-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .choose-card-icon {
        justify-content: center;
    }

    .pricing-header h2 {
        font-size: 42px;
    }

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

    .pricing-overlay {
        bottom: 5%;
        opacity: 1;
        /* Always show overlay on mobile since hover doesn't work well */
        pointer-events: auto;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .main-nav a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .logo a {
        font-size: 28px;
    }
}

/* Inner Page Banners */
.inner-page-banner {
    display: flex;
    background-color: #12100e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    padding-top: 120px;
    padding-bottom: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle curtain/texture effect for background */
.inner-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 13, 11, 0.95) 0%, rgba(20, 18, 16, 0.85) 50%, rgba(15, 13, 11, 0.95) 100%);
    z-index: 1;
}

.inner-page-banner .banner-image {
    width: 45%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 40px;
}

.inner-page-banner .banner-image img {
    width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
}

.inner-page-banner .banner-content {
    width: 55%;
    position: relative;
    z-index: 2;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inner-page-banner h1,
.inner-page-banner h2 {
    font-family: var(--heading-font);
    font-size: clamp(50px, 6vw, 80px);
    color: #ffffff;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.inner-page-banner p {
    color: #d1c8c0;
    font-size: 16px;
    max-width: 450px;
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 991px) {
    .inner-page-banner {
        flex-direction: column-reverse;
        padding-top: 130px;
        padding-bottom: 60px;
        text-align: center;
        min-height: auto;
    }

    .inner-page-banner .banner-image {
        width: 100%;
        padding: 0 20px;
        justify-content: center;
        margin-top: 40px;
    }

    .inner-page-banner .banner-image img {
        height: 350px;
        max-width: 100%;
    }

    .inner-page-banner .banner-content {
        width: 100%;
        padding: 0 20px;
    }

    .inner-page-banner h1,
    .inner-page-banner h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .inner-page-banner p {
        margin: 0 auto;
        font-size: 15px;
    }
}

/* Scrolling Marquee */
.scrolling-marquee {
    background-color: #5c4a35;
    /* Dark brown/olive */
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--heading-font);
    font-size: 26px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.marquee-separator {
    margin: 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-separator svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .scrolling-marquee {
        padding: 15px 0;
    }

    .marquee-item {
        font-size: 20px;
    }

    .marquee-separator {
        margin: 0 30px;
    }

    .marquee-separator svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 575px) {
    .marquee-item {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .marquee-separator {
        margin: 0 20px;
    }

    .marquee-separator svg {
        width: 12px;
        height: 12px;
    }
}

/* Trusted by Guests Across Kochi Section */
.trusted-kochi-section {
    padding: 120px 0;
    background-color: #fdfaf6;
    position: relative;
    overflow: hidden;
}

.trusted-kochi-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 166, 106, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.trusted-kochi-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Images collage */
.trusted-images-col {
    position: relative;
    width: 100%;
    height: 600px;
}

.main-img-wrapper-trust {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 85%;
    border-radius: 20px 150px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(56, 48, 41, 0.1);
    border: 1px solid rgba(196, 166, 106, 0.25);
    z-index: 1;
}

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

.sub-img-wrapper-trust {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 55%;
    height: 60%;
    border-radius: 100px 20px 20px 20px;
    overflow: hidden;
    border: 6px solid #fdfaf6;
    box-shadow: 0 15px 35px rgba(56, 48, 41, 0.15);
    z-index: 2;
}

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

.trusted-images-col:hover .main-img-wrapper-trust img,
.trusted-images-col:hover .sub-img-wrapper-trust img {
    transform: scale(1.04);
}

/* Floating Luxury Badge */
.trust-badge-luxury {
    position: absolute;
    top: 10%;
    right: 15%;
    background: #5d6750;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(93, 103, 80, 0.3);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatBadge-trust 4s ease-in-out infinite alternate;
}

.trust-badge-luxury .badge-icon {
    color: #c4a66a;
    font-size: 16px;
}

.trust-badge-luxury .badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

@keyframes floatBadge-trust {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Right Column Content */
.trusted-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trusted-content-col h2 {
    font-family: var(--heading-font);
    font-size: 50px;
    color: #2b2520;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 400;
}

.trusted-content-col h2 em {
    font-family: 'Great Vibes', cursive;
    color: #c4a66a;
    font-style: normal;
    text-transform: none;
    font-size: 58px;
}

.trust-lead-text {
    font-size: 17px;
    font-weight: 500;
    color: #5d6750;
    line-height: 1.7;
    margin-bottom: 15px;
    border-left: 3px solid #c4a66a;
    padding-left: 15px;
}

.trust-narrative {
    font-size: 15px;
    color: #6a5d53;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Quote Card style */
.trust-quote-card {
    background: rgba(229, 222, 210, 0.4);
    border-left: 3px solid #c4a66a;
    border-radius: 0 15px 15px 0;
    padding: 25px 30px;
    margin-bottom: 25px;
    position: relative;
}

.trust-quote-card .quote-icon {
    color: rgba(196, 166, 106, 0.2);
    font-size: 32px;
    position: absolute;
    top: 15px;
    left: 20px;
}

.trust-quote-card .quote-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: #383029;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.trust-summary-text {
    font-size: 14.5px;
    color: #6a5d53;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Location Tags */
.kochi-locations-area {
    margin-bottom: 35px;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-tag {
    background-color: #fff;
    border: 1px solid rgba(196, 166, 106, 0.3);
    color: #6a5d53;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.location-tag i {
    color: #c4a66a;
    font-size: 12px;
}

.location-tag:hover {
    background-color: #5d6750;
    color: #fff;
    border-color: #5d6750;
    transform: translateY(-2px);
}

.trust-action {
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .trusted-kochi-grid {
        gap: 50px;
    }

    .trusted-content-col h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .trusted-kochi-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .trusted-images-col {
        max-width: 500px;
        margin: 0 auto;
        height: 500px;
    }

    .main-img-wrapper-trust {
        width: 75%;
        height: 80%;
    }

    .sub-img-wrapper-trust {
        width: 55%;
        height: 55%;
    }

    .trust-badge-luxury {
        top: 5%;
        right: 10%;
    }

    .trusted-content-col {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .trusted-images-col {
        height: 380px;
    }

    .trusted-content-col h2 {
        font-size: 34px;
    }

    .trusted-content-col h2 em {
        font-size: 40px;
    }

    .location-tags {
        gap: 8px;
    }

    .location-tag {
        padding: 6px 14px;
        font-size: 12.5px;
    }

    .trust-quote-card {
        padding: 20px;
    }
}

/* Benefits of Regular Massage Therapy Section */
.benefits-therapy-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f3eae0 0%, #fbf7f0 100%);
    position: relative;
    overflow: hidden;
}

.benefits-therapy-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(196, 166, 106, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-therapy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Content Area */
.benefits-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-content-col h2 {
    font-family: var(--heading-font);
    font-size: 50px;
    color: #2b2520;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 400;
}

.benefits-content-col h2 em {
    font-family: 'Great Vibes', cursive;
    color: #c4a66a;
    font-style: normal;
    text-transform: none;
    font-size: 58px;
}

.benefits-lead-text {
    font-size: 16px;
    color: #383029;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Checklist Group */
.benefits-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 5px 0;
}

.benefit-icon {
    color: #c4a66a;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(196, 166, 106, 0.08);
}

.benefit-item p {
    font-size: 15px;
    color: #554a3e;
    line-height: 1.65;
    margin: 0;
}

/* Callout Box */
.benefits-callout-box {
    background: #5d6750;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(93, 103, 80, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-callout-box p {
    font-size: 15px;
    line-height: 1.75;
    color: #fdfaf6;
    margin: 0;
    font-weight: 300;
}

.benefits-action {
    margin-top: 5px;
}

/* Images Collage (Alternated grid - main on right, sub on left) */
.benefits-images-col {
    position: relative;
    width: 100%;
    height: 600px;
}

.main-img-wrapper-benefits {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 85%;
    border-radius: 150px 20px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(56, 48, 41, 0.1);
    border: 1px solid rgba(196, 166, 106, 0.25);
    z-index: 2;
}

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

.sub-img-wrapper-benefits {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 55%;
    height: 60%;
    border-radius: 20px 20px 100px 20px;
    overflow: hidden;
    border: 6px solid #fdfaf6;
    box-shadow: 0 -15px 35px rgba(56, 48, 41, 0.15);
    z-index: 3;
}

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

.gold-line-frame-benefits {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 70%;
    height: 85%;
    border: 1px solid #c4a66a;
    border-radius: 150px 20px 20px 20px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.benefits-images-col:hover .gold-line-frame-benefits {
    top: -10px;
    right: -10px;
}

.benefits-images-col:hover .main-img-wrapper-benefits img,
.benefits-images-col:hover .sub-img-wrapper-benefits img {
    transform: scale(1.04);
}

/* Floating Luxury Badge */
.benefits-badge-luxury {
    position: absolute;
    top: 10%;
    left: 15%;
    background: #c4a66a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(196, 166, 106, 0.3);
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatBadge-benefits 4.5s ease-in-out infinite alternate;
}

.benefits-badge-luxury .badge-icon {
    color: #fff;
    font-size: 16px;
}

.benefits-badge-luxury .badge-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

@keyframes floatBadge-benefits {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-12px);
    }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .benefits-therapy-grid {
        gap: 50px;
    }

    .benefits-content-col h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .benefits-therapy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-images-col {
        max-width: 500px;
        margin: 0 auto;
        height: 500px;
    }

    .main-img-wrapper-benefits {
        width: 75%;
        height: 80%;
    }

    .sub-img-wrapper-benefits {
        width: 55%;
        height: 55%;
    }

    .benefits-badge-luxury {
        top: 5%;
        left: 10%;
    }

    .benefits-content-col {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .benefits-images-col {
        height: 380px;
    }

    .benefits-content-col h2 {
        font-size: 34px;
    }

    .benefits-content-col h2 em {
        font-size: 40px;
    }

    .benefits-callout-box {
        padding: 20px;
    }
}

/* Who Visits Omeya Wellness Spa Section */
.who-visits-section {
    padding: 120px 0;
    background-color: #2b2520;
    color: #fdfaf6;
    position: relative;
    overflow: hidden;
}

.who-visits-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 166, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.who-visits-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: stretch;
}

/* Two-Image Stack style */
.who-visits-images-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    width: 100%;
    height: 100%;
}

.who-image-box {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(196, 166, 106, 0.2);
}

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

.who-image-box:hover .who-visits-img {
    transform: scale(1.05);
}

/* Floating badge */
.who-badge-luxury {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #5d6750;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 3;
    border: 2px solid #2b2520;
    animation: floatBadge-who 4s ease-in-out infinite alternate;
}

.who-badge-luxury .badge-icon {
    color: #c4a66a;
    font-size: 16px;
}

.who-badge-luxury .badge-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

@keyframes floatBadge-who {
    0% {
        transform: translate(-50%, -50%);
    }

    100% {
        transform: translate(-50%, -65%);
    }
}

/* Content Area */
.who-visits-content-col {
    display: flex;
    flex-direction: column;
}

.who-visits-content-col h2 {
    font-family: var(--heading-font);
    font-size: 50px;
    color: #fdfaf6;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 400;
}

.who-visits-content-col h2 em {
    font-family: 'Great Vibes', cursive;
    color: #c4a66a;
    font-style: normal;
    text-transform: none;
    font-size: 58px;
}

.who-visits-lead-text {
    font-size: 16.5px;
    color: #e5dfd3;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Grid of Cards */
.who-personas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.persona-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s ease;
}

.persona-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(196, 166, 106, 0.1);
    color: #c4a66a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.persona-card h3 {
    font-family: var(--heading-font);
    font-size: 18px;
    color: #fdfaf6;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.persona-card p {
    font-size: 13.5px;
    color: #c4beb3;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.persona-card:hover {
    background: rgba(196, 166, 106, 0.05);
    border-color: rgba(196, 166, 106, 0.4);
    transform: translateY(-5px);
}

.persona-card:hover .persona-icon-wrapper {
    background-color: #c4a66a;
    color: #2b2520;
}

/* Outro Banner */
.who-visits-outro {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px dashed rgba(196, 166, 106, 0.25);
    border-radius: 15px;
    padding: 30px;
    margin-top: 10px;
}

.who-visits-outro p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #e5dfd3;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .who-visits-grid {
        gap: 50px;
    }

    .who-visits-content-col h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .who-visits-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .who-visits-images-col {
        max-width: 450px;
        margin: 0 auto;
        height: 480px;
    }

    .main-img-wrapper-who {
        width: 85%;
        height: 85%;
    }

    .who-badge-luxury {
        bottom: 10%;
        right: 0%;
    }

    .who-visits-content-col {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .who-visits-images-col {
        height: 380px;
    }

    .who-visits-content-col h2 {
        font-size: 34px;
    }

    .who-visits-content-col h2 em {
        font-size: 40px;
    }

    .who-personas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .who-visits-outro {
        padding: 20px;
    }
}

/* Find Omeya (Location & SEO) Section */
.find-omeya-section {
    padding: 110px 0;
    background-color: #fbf7f0;
    position: relative;
    overflow: hidden;
}

.find-omeya-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* Content Area */
.find-omeya-content {
    display: flex;
    flex-direction: column;
}

.find-omeya-content h2 {
    font-family: var(--heading-font);
    font-size: 46px;
    color: #2b2520;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 400;
}

.find-omeya-content h2 em {
    font-family: 'Great Vibes', cursive;
    color: #c4a66a;
    font-style: normal;
    text-transform: none;
    font-size: 54px;
}

.find-omeya-text {
    font-size: 16px;
    color: #4a3e30;
    line-height: 1.85;
    margin-bottom: 30px;
}

.find-omeya-walkin {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid #c4a66a;
    box-shadow: 0 10px 30px rgba(43, 37, 32, 0.05);
    margin-bottom: 30px;
}

.find-omeya-walkin i {
    color: #c4a66a;
    font-size: 20px;
    margin-top: 3px;
}

.find-omeya-walkin p {
    font-size: 14.5px;
    color: #554a3e;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Visuals & Tags */
.find-omeya-visuals {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-image-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 20px;
    z-index: 2;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(43, 37, 32, 0.1);
    position: relative;
    z-index: 2;
}

.location-image-frame {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid #c4a66a;
    border-radius: 20px;
    z-index: 1;
}

/* SEO Tags Styling */
.seo-tags-container {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(196, 166, 106, 0.2);
    padding: 30px;
    border-radius: 15px;
}

.tags-heading {
    font-family: var(--heading-font);
    font-size: 18px;
    color: #2b2520;
    margin-bottom: 20px;
    font-weight: 500;
}

.seo-tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.seo-tag {
    background: #fff;
    border: 1px solid #e5dfd3;
    color: #554a3e;
    font-size: 13.5px;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.seo-tag:hover {
    background: #c4a66a;
    color: #fff;
    border-color: #c4a66a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(196, 166, 106, 0.2);
}

/* Responsive */
@media (max-width: 1199px) {
    .find-omeya-grid {
        gap: 40px;
    }

    .find-omeya-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .find-omeya-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .location-image-wrapper {
        height: 350px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .find-omeya-content h2 {
        font-size: 32px;
    }

    .find-omeya-content h2 em {
        font-size: 38px;
    }

    .location-image-wrapper {
        height: 260px;
    }

    .seo-tags-container {
        padding: 20px;
    }
}

/* ==========================================================
   ABOUT PAGE CUSTOM STYLES
   ========================================================== */

/* About Page Main Section (Matches Screenshot) */
.about-page-main {
    padding: 100px 0;
    background-color: #faf8f5;
    overflow: hidden;
}

.about-page-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side Visuals */
.about-visual-left {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    gap: 30px;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--heading-font);
    font-size: 110px;
    color: #eae3d3;
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
}

.about-image-composition {
    position: relative;
    width: 450px;
    height: 550px;
    margin: 0 auto;
}

.shape-dark-green {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 500px;
    background-color: #2a3a2e;
    /* elegant dark forest green */
    border-radius: 0 250px 250px 0;
    z-index: 1;
}

.shape-olive {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 220px;
    height: 220px;
    background-color: #b5b08b;
    /* muted olive green */
    border-radius: 50%;
    z-index: 2;
}

.about-model-img {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 340px;
    height: 480px;
    object-fit: cover;
    border-radius: 170px 170px 20px 20px;
    /* beautiful arch */
    z-index: 3;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Right Side Content */
.about-content-right {
    flex: 1;
    max-width: 550px;
}

.about-content-right h2 {
    font-family: var(--heading-font);
    font-size: 42px;
    color: #2b2520;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-description {
    font-size: 15.5px;
    color: #554a3e;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    border-top: 1px solid #e0d5c1;
    padding-top: 30px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #e8e3d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: #2b2520;
}

.feature-text h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    color: #2b2520;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-text p {
    font-size: 14px;
    color: #665b4f;
    line-height: 1.6;
    margin: 0;
}

.btn-outline-gold {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #c4a66a;
    color: #c4a66a;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: #c4a66a;
    color: #fff;
}

/* Extra Section (Our Promise) */
.about-extra-section {
    padding: 100px 0;
    background-color: #2b2520;
    color: #fdfaf6;
}

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

.extra-content h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    margin-bottom: 25px;
}

.extra-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #e5dfd3;
    margin-bottom: 30px;
}

.extra-list {
    list-style: none;
    padding: 0;
}

.extra-list li {
    font-size: 16px;
    color: #e5dfd3;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.extra-list li i {
    color: #c4a66a;
}

.extra-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.extra-img-1,
.extra-img-2 {
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

.extra-img-2 {
    margin-top: 50px;
}

.extra-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.extra-images img:hover {
    transform: scale(1.05);
}

/* Responsive Rules */
@media (max-width: 991px) {
    .about-page-container {
        flex-direction: column;
    }

    .vertical-text {
        font-size: 80px;
    }

    .about-extra-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .about-visual-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 20px;
    }

    .extra-images {
        grid-template-columns: 1fr;
    }

    .extra-img-2 {
        margin-top: 0;
    }
}

/* ==========================================================
   Services Page Detailed List
   ========================================================== */
.sp-detailed-services {
    padding: 120px 0;
    background-color: #fbf7f0;
}

.sp-services-header {
    margin-bottom: 80px;
    text-align: center;
}

.sp-services-header h2 {
    font-family: var(--heading-font);
    font-size: 48px;
    color: #383029;
    margin-bottom: 15px;
    font-weight: 400;
}

.sp-services-header h2 em {
    font-style: italic;
    color: #c4a66a;
}

.sp-services-header p {
    font-size: 18px;
    color: #6a5d53;
}

.sp-service-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.sp-service-item {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sp-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.sp-service-item.reverse {
    flex-direction: row-reverse;
}

.sp-service-img {
    flex: 0 0 45%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

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

.sp-service-item:hover .sp-service-img img {
    transform: scale(1.05);
}

.sp-service-content {
    flex: 1;
}

.sp-service-icon {
    background: rgba(196, 166, 106, 0.15);
    color: #c4a66a;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.sp-service-content h3 {
    font-family: var(--heading-font);
    font-size: 36px;
    color: #383029;
    margin-bottom: 20px;
    font-weight: 400;
}

.sp-service-content p {
    font-size: 16px;
    color: #6a5d53;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sp-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.sp-benefits li {
    font-size: 15px;
    color: #4a3e30;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-benefits li i {
    color: #c4a66a;
    font-size: 14px;
}

.sp-service-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sp-price-tag {
    font-size: 22px;
    font-family: var(--heading-font);
    color: #383029;
    font-weight: 600;
}

/* Responsive sp-service-item */
@media (max-width: 991px) {

    .sp-service-item,
    .sp-service-item.reverse {
        flex-direction: column;
        padding: 30px;
        gap: 40px;
    }

    .sp-service-img {
        width: 100%;
        height: 350px;
    }

    .sp-service-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .sp-services-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .sp-service-img {
        height: 250px;
    }

    .sp-service-content h3 {
        font-size: 28px;
    }

    .sp-detailed-services {
        padding: 80px 0;
    }
}

/* ==========================================================
   Inner Page Banner (Global for About, Services, Contact)
   ========================================================== */
.inner-page-banner {
    position: relative;
    width: calc(100% - 40px);
    /* Spacing on left and right */
    max-width: 1300px;
    /* Keep it constrained on very wide screens */
    margin: 100px auto 40px auto;
    /* Centers the banner with space above/below */
    height: 450px;
    background-image: url('../images/luxury_spa_interior.png');
    /* The single unified BG image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;

    /* Arch shape on all corners */
    border-radius: 120px;
    overflow: hidden;
}

/* Add an elegant dark overlay for text readability */
.inner-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 37, 32, 0.65);
    /* Rich dark brown/black overlay */
    z-index: 1;
}

.inner-page-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.inner-page-banner .banner-content h1 {
    font-family: var(--heading-font);
    font-size: 64px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.inner-page-banner .banner-content p {
    font-size: 18px;
    color: #e5dfd3;
    /* Soft cream text */
    line-height: 1.6;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .inner-page-banner {
        height: 350px;
        border-radius: 60px;
        width: calc(100% - 30px);
        margin: 80px auto 30px auto;
    }

    .inner-page-banner .banner-content h1 {
        font-size: 48px;
    }

    .inner-page-banner .banner-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .inner-page-banner {
        height: 300px;
        border-radius: 40px;
        width: calc(100% - 20px);
        margin: 80px auto 20px auto;
    }

    .inner-page-banner .banner-content h1 {
        font-size: 38px;
    }
}

/* ==========================================================
   Contact Page - Split Layout
   ========================================================== */
.sp-contact-section {
    padding: 80px 0 120px 0;
    background-color: #fbf7f0;
}

.sp-contact-wrapper {
    display: flex;
    align-items: stretch;
    gap: 60px;
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
}

.sp-contact-visual {
    flex: 0 0 45%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 600px;
}

.sp-visual-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.sp-visual-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sp-visual-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(56, 48, 41, 0.9), transparent);
    pointer-events: none;
}

.sp-floating-cards {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-float-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sp-float-card .icon-box {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a66a;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sp-float-card .info-text {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--primary-font);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sp-contact-form-container {
    flex: 1;
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: var(--heading-font);
    font-size: 42px;
    color: #383029;
    margin-bottom: 15px;
    font-weight: 500;
}

.form-header p {
    color: #6a5d53;
    font-size: 16px;
    line-height: 1.6;
}

.sp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-full,
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.sp-contact-form label {
    font-size: 15px;
    color: #695046;
    font-weight: 500;
}

.sp-contact-form input,
.sp-contact-form textarea {
    width: 100%;
    background-color: #f6f3ef;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
    color: #333;
    font-family: var(--primary-font);
    transition: all 0.3s ease;
}

.sp-contact-form input:focus,
.sp-contact-form textarea:focus {
    outline: none;
    border-color: #c4a66a;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(196, 166, 106, 0.1);
}

.sp-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-brown {
    background-color: #5d4a3e;
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-brown.w-100 {
    width: 100%;
    text-align: center;
}

.btn-brown:hover {
    background-color: #433329;
}

/* Responsive */
@media (max-width: 991px) {
    .sp-contact-wrapper {
        flex-direction: column;
        padding: 0;
        background: transparent;
        box-shadow: none;
        gap: 40px;
    }

    .sp-contact-visual {
        min-height: 400px;
        border-radius: 20px;
    }

    .sp-contact-form-container {
        padding: 30px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .sp-floating-cards {
        left: 20px;
        bottom: 20px;
    }

    .form-header h2 {
        font-size: 32px;
    }
}

/* ==========================================================
   Contact Page - Location & Map Section (Parallax)
   ========================================================== */
.sp-location-section {
    padding: 0 0 120px 0;
    background-color: #fbf7f0;
}

.sp-location-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.sp-location-card {
    flex: 0 0 62%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.sp-map-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 15px;
    min-height: 500px;
}

.location-parallax-img {
    height: 500px;
    background-attachment: fixed;
    /* Parallax Effect */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
}

/* Fallback for mobile since fixed attachment can be buggy on iOS */
@supports (-webkit-touch-callout: none) {
    .location-parallax-img {
        background-attachment: scroll;
    }
}

.location-parallax-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
}

.location-parallax-img h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 1px;
}

.location-details {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    flex: 1;
}

.loc-col {
    flex: 1;
}

.loc-col h4 {
    font-family: var(--heading-font);
    font-size: 24px;
    color: #383029;
    font-weight: 500;
    margin-bottom: 15px;
}

.loc-col p {
    font-size: 15px;
    color: #6a5d53;
    line-height: 1.6;
}

.sp-map-card iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .sp-location-wrapper {
        flex-direction: column;
    }

    .location-parallax-img {
        height: 300px;
        background-attachment: scroll;
        /* Disable parallax on smaller screens for performance */
    }

    .sp-map-card {
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .location-details {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .location-parallax-img h3 {
        font-size: 28px;
    }
}

/* ==========================================================
   Service Details Landing Pages
   ========================================================== */
.service-detail-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 100px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    overflow: hidden;
}

.service-detail-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 25, 22, 0.6);
    z-index: 1;
}

.service-detail-banner .banner-content {
    position: relative;
    z-index: 2;
}

.service-detail-banner h1,
.service-detail-banner h2 {
    font-family: var(--heading-font);
    font-size: 60px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 400;
}

.service-detail-content {
    padding: 80px 0;
    background-color: #fbf7f0;
}

.service-detail-layout {
    display: block;
}

.service-main-article {
    width: 100%;
    margin: 0;
    background: transparent;
    padding: 0;
}

.service-main-article h2 {
    font-family: var(--heading-font);
    font-size: 32px;
    color: #2b2b2b;
    margin-top: 60px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.3;
}

.service-main-article h2:first-child {
    margin-top: 0;
}

.service-main-article h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    color: #4a4a4a;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-main-article p {
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 2;
    color: #555555;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Service Page Inner Elements (Cards and Inline Images) */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.service-card {
    background: #fdfbf9;
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid #f2eee8;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    background: #fff;
}

.card-icon {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-top: 0 !important;
    font-size: 20px !important;
    color: #2b2b2b !important;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 12px;
    margin-bottom: 20px !important;
    display: inline-block;
    font-weight: 400 !important;
}

.service-card p {
    margin-bottom: 0 !important;
    font-size: 14.5px !important;
    line-height: 1.9 !important;
    color: #666;
    font-weight: 300;
}

/* Service Split Block (Left/Right Images) */
.service-split-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.service-split-block.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.split-text {
    flex: 1;
}

.split-text h2 {
    margin-top: 0 !important;
}

/* Parallax Breaker Section */
.service-parallax-breaker {
    width: 100%;
    height: 450px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0 0;
}

.service-parallax-breaker .breaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 48, 51, 0.7);
    z-index: 1;
}

.service-parallax-breaker .breaker-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.breaker-content h2 {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 0;
}

/* Service FAQ Accordion */
.service-faq-wrapper {
    margin: 50px 0 30px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-faq-item {
    background: #fff;
    border: 1px solid #f2eee8;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.service-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
    color: #2b2b2b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.service-faq-question:hover {
    background: #fdfbf9;
}

.service-faq-question::after {
    content: '\f067';
    /* FontAwesome Plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.service-faq-item.active .service-faq-question::after {
    content: '\f068';
    /* FontAwesome Minus */
    transform: rotate(180deg);
}

.service-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.service-faq-item.active .service-faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 500px;
}

.service-faq-answer p {
    margin: 0 !important;
}

/* Premium Thai Landing Section */
.premium-thai-landing {
    padding: 100px 0;
    background-color: #fcfbfa;
}

.ptl-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.ptl-image-col {
    flex: 1;
    position: relative;
}

.ptl-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.ptl-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.ptl-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #2b3033;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px 0 0 50px;
    font-family: var(--heading-font);
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ptl-content-col {
    flex: 1.2;
}

.ptl-subtitle {
    display: block;
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.ptl-title {
    font-family: var(--heading-font);
    font-size: 52px;
    font-weight: 300;
    color: #2b2b2b;
    line-height: 1.1;
    margin-bottom: 40px;
}

.ptl-title .highlight {
    font-weight: 400;
    color: #d4af37;
    font-size: 42px;
    display: block;
    margin-top: 10px;
}

.ptl-text-area {
    margin-bottom: 50px;
    position: relative;
}

.ptl-text-area::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, transparent);
}

.ptl-lead {
    font-size: 20px !important;
    color: #444;
    line-height: 1.8 !important;
    font-weight: 400;
    margin-bottom: 25px !important;
}

.ptl-text-area p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 20px;
}

.ptl-conclusion {
    font-weight: 500 !important;
    color: #2b3033 !important;
    font-size: 18px !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.ptl-availability {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ptl-availability i {
    color: #d4af37;
}

.ptl-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-ptl {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

/* Shimmer animation */
.btn-ptl::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-ptl:hover::before {
    left: 150%;
}

/* Icon wrapper inside button */
.btn-ptl .btn-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-ptl:hover .btn-icon-wrap {
    transform: rotate(15deg) scale(1.15);
}

/* ── CALL NOW – Luxury Gold ── */
.btn-ptl-outline {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #f5e6b8;
    border: 1px solid #c4a66a;
    box-shadow: 0 4px 18px rgba(196, 166, 106, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-ptl-outline .btn-icon-wrap {
    background: linear-gradient(135deg, #c4a66a, #e8d48a);
    box-shadow: 0 0 12px rgba(196, 166, 106, 0.5);
}

.btn-ptl-outline .btn-icon-wrap i {
    color: #1a1a1a;
    font-size: 14px;
}

.btn-ptl-outline:hover {
    background: linear-gradient(135deg, #c4a66a 0%, #e8d48a 100%);
    color: #1a1a1a;
    border-color: #c4a66a;
    box-shadow: 0 8px 28px rgba(196, 166, 106, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.btn-ptl-outline:hover .btn-icon-wrap {
    background: rgba(26, 26, 26, 0.15);
    box-shadow: none;
}

.btn-ptl-outline:hover .btn-icon-wrap i {
    color: #1a1a1a;
}

/* ── WHATSAPP – Luxury Green ── */
.btn-ptl-whatsapp {
    background: linear-gradient(135deg, #0d1f13 0%, #143620 100%);
    color: #a8f0bc;
    border: 1px solid #25D366;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-ptl-whatsapp .btn-icon-wrap {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
}

.btn-ptl-whatsapp .btn-icon-wrap i {
    color: #fff;
    font-size: 16px;
}

.btn-ptl-whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.btn-ptl-whatsapp:hover .btn-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.btn-ptl-whatsapp:hover .btn-icon-wrap i {
    color: #fff;
}

@media (max-width: 991px) {
    .ptl-layout {
        flex-direction: column;
        gap: 50px;
    }

    .ptl-text-area::before {
        display: none;
    }

    .ptl-title {
        font-size: 38px;
    }

    .ptl-title .highlight {
        font-size: 30px;
    }
}

/* Scrolling Overlay Section */
.scrolling-overlay-section {
    padding: 120px 0;
    background-color: #f6f5f2;
    /* Soft warm gray/beige */
}

.so-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.so-sticky-col {
    flex: 1;
    position: sticky;
    top: 150px;
}

.so-subtitle {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.so-title {
    font-family: var(--heading-font);
    font-size: 46px;
    font-weight: 300;
    color: #2b3033;
    line-height: 1.2;
    margin-bottom: 40px;
}

.so-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.so-image img {
    width: 100%;
    height: auto;
    display: block;
}

.so-scroll-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.so-card {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 150px;
    /* This creates the stacking overlay effect! */
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.so-card:nth-child(1) {
    top: 150px;
    z-index: 1;
}

.so-card:nth-child(2) {
    top: 180px;
    z-index: 2;
}

.so-card:nth-child(3) {
    top: 210px;
    z-index: 3;
}

.so-card:nth-child(4) {
    top: 240px;
    z-index: 4;
}

.so-card .lead-text {
    font-size: 22px;
    color: #2b3033;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.6;
}

.so-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.so-card p:last-child {
    margin-bottom: 0;
}

.so-quote {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.so-quote i {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
}

.so-quote p {
    font-style: italic;
    font-size: 18px;
    color: #2b3033;
    font-weight: 500;
}

.so-card.dark-card {
    background: #2b3033;
    color: #fff;
    border-top: none;
}

.so-card.dark-card h3 {
    font-family: var(--heading-font);
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.so-card.dark-card p {
    color: #b0b7bd;
}

.so-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .so-layout {
        flex-direction: column;
    }

    .so-sticky-col {
        position: relative;
        top: 0;
    }

    .so-card {
        position: relative;
        top: 0 !important;
    }
}

/* Timeline Benefits Section */
.timeline-benefits-section {
    padding: 120px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 48, 51, 0.85);
    /* Dark slate overlay */
}

.relative-z {
    position: relative;
    z-index: 2;
}

.tb-header {
    margin-bottom: 80px;
}

.tb-subtitle {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.tb-title {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
}

.tb-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.tb-row-2 {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.tb-row-2 .tb-card {
    flex: 0 1 calc(33.333% - 27px);
    /* Matches width of row-3 cards */
    max-width: none;
}

.tb-card {
    background: #fdfbf9;
    /* Soft light color matching their screenshot */
    padding: 50px;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    transition: transform 0.4s ease;
}

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

.tb-number {
    font-family: var(--heading-font);
    font-size: 50px;
    color: #2b3033;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(43, 48, 51, 0.1);
    padding-bottom: 15px;
    display: inline-block;
}

.tb-card h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    color: #2b2b2b;
    margin-bottom: 15px;
    font-weight: 400;
}

.tb-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {
    .tb-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tb-row-2 .tb-card {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tb-title {
        font-size: 38px;
    }

    .tb-row-3 {
        grid-template-columns: 1fr;
    }

    .tb-row-2 {
        flex-direction: column;
    }
}

/* Why Choose Thai Section */
.why-choose-thai-section {
    padding: 120px 0;
    background-color: #5c4a21;
    /* Matches the image's rich olive-brown */
    color: #fff;
}

.wct-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.wct-list-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wct-item {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.wct-item:first-child {
    padding-top: 0;
}

.wct-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wct-icon {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.wct-icon i {
    font-size: 26px;
    color: #5c4a21;
}

.wct-content h3 {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.wct-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

.wct-image-col {
    flex: 1;
    position: sticky;
    top: 100px;
}

.wct-header {
    margin-bottom: 40px;
}

.wct-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.wct-title {
    font-family: var(--heading-font);
    font-size: 46px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.wct-image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}

.wct-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.wct-location-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 20px;
    border-left: 3px solid #d4af37;
}

.wct-location-box h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.wct-location-box p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.wct-location-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .wct-layout {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .wct-image-col {
        position: relative;
        top: 0;
    }
}

/* Premium FAQ Section */
.premium-faq-section {
    padding: 120px 0;
    background-color: #f6ebd8;
    /* Matches the soft beige/cream of the uploaded image */
}

.pfaq-header {
    margin-bottom: 60px;
}

.pfaq-header h2 {
    font-family: var(--heading-font);
    font-size: 42px;
    color: #2b3033;
    font-weight: 300;
}

.pfaq-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.pfaq-image-col {
    flex: 1;
    position: sticky;
    top: 100px;
}

.pfaq-image-col img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-height: 800px;
}

.pfaq-accordion-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pfaq-item {
    background: transparent;
    border: 1px solid rgba(43, 48, 51, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.pfaq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pfaq-question:hover {
    background: rgba(255, 255, 255, 0.3);
}

.pfaq-question span {
    font-size: 18px;
    color: #2b3033;
    font-weight: 400;
}

.pfaq-question i {
    font-size: 16px;
    color: #2b3033;
    transition: transform 0.3s ease;
}

.pfaq-item.active .pfaq-question i {
    transform: rotate(45deg);
    /* Cross icon when open */
}

.pfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 255, 255, 0.4);
}

.pfaq-item.active .pfaq-answer {
    max-height: 500px;
    padding: 25px 30px;
    border-top: 1px solid rgba(43, 48, 51, 0.05);
}

.pfaq-answer p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {
    .pfaq-layout {
        flex-direction: column;
    }

    .pfaq-image-col {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}

/* Premium Centered CTA Section */
.premium-centered-cta {
    padding: 150px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.relative-z {
    position: relative;
    z-index: 2;
}

.pcc-card {
    background: #fff;
    padding: 70px 80px;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.pcc-subtitle {
    color: #5c4a21;
    /* Dark olive from previous section */
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.pcc-title {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 300;
    color: #5c4a21;
    /* Olive brown to match the image text */
    line-height: 1.2;
    margin-bottom: 30px;
}

.pcc-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pcc-location {
    font-weight: 600;
    color: #2b3033 !important;
    margin-top: 30px;
    font-size: 18px !important;
}

.pcc-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-pcc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 10px;
}

.btn-pcc-solid {
    background: #5c4a21;
    color: #fff;
    border: 2px solid #5c4a21;
}

.btn-pcc-solid:hover {
    background: #4a3b1a;
    border-color: #4a3b1a;
    color: #fff;
}

.btn-pcc-solid i {
    background: #fff;
    color: #5c4a21;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-pcc-solid:hover i {
    transform: translateX(3px) rotate(-45deg);
}

.btn-pcc-outline {
    background: transparent;
    color: #5c4a21;
    border: 1px solid rgba(92, 74, 33, 0.3);
}

.btn-pcc-outline:hover {
    border-color: #5c4a21;
    background: #fdfbf9;
    color: #5c4a21;
}

@media (max-width: 768px) {
    .pcc-card {
        padding: 50px 30px;
    }

    .pcc-title {
        font-size: 36px;
    }

    .pcc-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .service-detail-banner {
        height: 350px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .service-detail-banner h1,
    .service-detail-banner h2 {
        font-size: 40px;
    }

    .service-main-article {
        padding: 40px 20px;
    }
}

/* Service Page Inner Elements (Cards and Inline Images) */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    margin-top: 25px;
}

.service-card {
    background: #fbf7f0;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0ece3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.service-card h3 {
    margin-top: 0 !important;
    font-size: 22px !important;
    color: #383029 !important;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    margin-bottom: 15px !important;
    display: inline-block;
}

.service-card p {
    margin-bottom: 0 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.inline-service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* ==========================================================
   Vlog Page Styles
   ========================================================== */
.vlog-section {
    padding: 100px 0;
    background-color: #f8f1e7;
}

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

.vlog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

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

.vlog-thumbnail {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.vlog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.vlog-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b3033;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.vlog-card:hover .vlog-play-btn {
    background: #5c4a21;
    color: #fff;
}

.vlog-play-btn i {
    margin-left: 4px;
    /* Optical alignment for play icon */
}

.vlog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.vlog-category {
    font-size: 13px;
    font-weight: 600;
    color: #5c4a21;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.vlog-content h2 {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.vlog-meta-chips {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.chip {
    background: #f4ecdf;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

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

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

/* ==========================================================
   Arch Page Banner (Global Banner)
   ========================================================== */
.arch-page-banner {
    position: relative;
    background-color: #516454;
    padding: 160px 0 100px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.arch-page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/green_floral_pattern.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    /* Very faint and light */
    z-index: 1;
    pointer-events: none;
}

.arch-banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.arch-banner-content {
    flex: 1;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}

.arch-banner-content h1,
.arch-banner-content h2 {
    font-family: var(--heading-font);
    font-size: 64px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 500;
}

.arch-banner-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    max-width: 80%;
}

.arch-banner-breadcrumbs {
    font-size: 15px;
    color: #fff;
    font-weight: 300;
}

.arch-banner-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.arch-banner-breadcrumbs a:hover {
    color: #d4af37;
}

.arch-banner-breadcrumbs span {
    font-weight: 500;
}

.arch-banner-image-col {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.arch-wrapper {
    position: relative;
    padding-right: 20px;
    padding-top: 20px;
}

/* The arch outline */
.arch-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #e1dbce;
    border-radius: 200px 200px 0 0;
    z-index: 1;
}

.arch-image {
    width: 320px;
    height: 400px;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: translate(-15px, 15px);
}

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

@media (max-width: 991px) {
    .arch-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .arch-banner-content {
        padding-right: 0;
    }

    .arch-banner-divider {
        margin: 0 auto 20px auto;
    }

    .arch-banner-content h1,
    .arch-banner-content h2 {
        font-size: 42px;
    }

    .arch-image {
        width: 280px;
        height: 350px;
    }
}

/* ==========================================================
   Luxury Floating Contact Widget
   ========================================================== */
.luxury-contact-widget {
    position: fixed;
    bottom: 35px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.luxury-contact-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    color: #d4af37;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-contact-btn .btn-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1e2224;
    /* Rich dark background matching footer */
    border: 2px solid #d4af37;
    /* Premium Gold border */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

/* Pulsing ring animation for a premium look */
.luxury-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #d4af37;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
    animation: luxury-pulse 2s infinite;
}

.luxury-contact-btn.btn-whatsapp::before {
    border-color: #25D366;
    /* WhatsApp green pulse */
    animation-delay: 0.5s;
}

.luxury-contact-btn.btn-call::before {
    border-color: #d4af37;
    /* Gold pulse */
    animation-delay: 1.5s;
}

@keyframes luxury-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Elegant Text Label revealing on hover */
.luxury-contact-btn .btn-label {
    background: rgba(30, 34, 36, 0.95);
    color: #fff;
    border: 1px solid #d4af37;
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.luxury-contact-btn:hover .btn-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Hover effects for buttons */
.luxury-contact-btn:hover .btn-icon-wrapper {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.luxury-contact-btn.btn-call:hover .btn-icon-wrapper {
    background: #d4af37;
    color: #1e2224;
}

.luxury-contact-btn.btn-whatsapp:hover .btn-icon-wrapper {
    background: #25D366;
    /* Sleek transition to WhatsApp green on hover */
    color: #fff;
    border-color: #25D366;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .luxury-contact-widget {
        bottom: 25px;
        right: 25px;
        gap: 12px;
    }

    .luxury-contact-btn .btn-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .luxury-contact-btn::before {
        width: 48px;
        height: 48px;
    }

    /* Hide labels on mobile to avoid cluttering small screens */
    .luxury-contact-btn .btn-label {
        display: none;
    }
}

/* ============================================================
   MOBILE DRAWER  –  Self-contained premium off-canvas sidebar
   Inspired by: dark bg | white text | gold accents
   ============================================================ */

/* Dark semi-transparent backdrop */
#nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9990;
    opacity: 0;
    transition: opacity .35s ease;
}

#nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* Drawer panel */
#main-nav.mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 290px !important;
    max-width: 90vw !important;
    height: 100vh !important;
    background: #111111 !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    transition: transform .38s cubic-bezier(.16, 1, .3, 1) !important;
    visibility: hidden !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

#main-nav.mobile-drawer.active {
    transform: translateX(0) !important;
    visibility: visible !important;
}

/* Drawer header – logo + X */
#main-nav.mobile-drawer .drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 22px 20px !important;
    background: #1a1a1a !important;
    border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
}

#main-nav.mobile-drawer .drawer-logo img {
    height: 52px !important;
    width: auto !important;
    object-fit: contain !important;
}

#main-nav.mobile-drawer .drawer-close {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 22px !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 4px !important;
    transition: color .2s ease !important;
}

#main-nav.mobile-drawer .drawer-close:hover {
    color: #c4a66a !important;
}

/* Nav links */
#main-nav.mobile-drawer .nav-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 !important;
}

#main-nav.mobile-drawer .nav-menu>li {
    border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
}

#main-nav.mobile-drawer .nav-menu>li>a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 17px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    text-decoration: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: color .25s ease, background .25s ease !important;
}

#main-nav.mobile-drawer .nav-menu>li>a:hover,
#main-nav.mobile-drawer .nav-menu>li.active>a {
    color: #c4a66a !important;
    background: rgba(196, 166, 106, .06) !important;
}

#main-nav.mobile-drawer .dropdown-arrow {
    font-size: 12px !important;
    transition: transform .3s ease !important;
}

#main-nav.mobile-drawer .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg) !important;
}

/* Services sub-menu accordion */
#main-nav.mobile-drawer .dropdown-menu {
    display: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 6px 0 !important;
    background: #1a1a1a !important;
    border-top: 1px solid rgba(255, 255, 255, .05) !important;
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

#main-nav.mobile-drawer .nav-dropdown.open>.dropdown-menu {
    display: block !important;
}

#main-nav.mobile-drawer .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .04) !important;
}

#main-nav.mobile-drawer .dropdown-menu a {
    display: block !important;
    padding: 12px 30px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: .5px !important;
    color: rgba(255, 255, 255, .75) !important;
    text-decoration: none !important;
    text-transform: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: color .2s ease, padding-left .2s ease !important;
}

#main-nav.mobile-drawer .dropdown-menu a:hover,
#main-nav.mobile-drawer .dropdown-menu a.active {
    color: #c4a66a !important;
    padding-left: 36px !important;
}

/* Drawer footer – contact info + socials + CTA */
#main-nav.mobile-drawer .drawer-footer {
    padding: 22px 20px !important;
    border-top: 1px solid rgba(255, 255, 255, .07) !important;
    background: #1a1a1a !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

#main-nav.mobile-drawer .drawer-contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

#main-nav.mobile-drawer .drawer-contact-info a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, .75) !important;
    text-decoration: none !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    transition: color .2s ease !important;
}

#main-nav.mobile-drawer .drawer-contact-info a:hover {
    color: #c4a66a !important;
}

#main-nav.mobile-drawer .drawer-contact-info i {
    color: #c4a66a !important;
    width: 16px !important;
    text-align: center !important;
}

#main-nav.mobile-drawer .drawer-socials {
    display: flex !important;
    gap: 10px !important;
}

#main-nav.mobile-drawer .drawer-socials a {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .08) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    text-decoration: none !important;
    padding: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    transition: background .25s ease !important;
}

#main-nav.mobile-drawer .drawer-socials a:hover {
    background: #c4a66a !important;
}

#main-nav.mobile-drawer .drawer-cta {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    background: #c4a66a !important;
    color: #111111 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: background .25s ease !important;
}

#main-nav.mobile-drawer .drawer-cta:hover {
    background: #b39158 !important;
}

/* Hide drawer on desktop */
@media (min-width: 992px) {

    #main-nav.mobile-drawer,
    #nav-backdrop {
        display: none !important;
    }
}


/* ==========================================================================
   MOBILE DRAWER – new fixed full-height off-canvas nav
   ========================================================================== */

/* Backdrop */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 9998;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer panel */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    border-left: 2px solid #c4a66a;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.mobile-drawer.active {
    transform: translateX(0);
    visibility: visible;
}

/* Drawer header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 18px;
    border-bottom: 1px solid rgba(196, 166, 106, 0.2);
}

.drawer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.drawer-close {
    background: rgba(196, 166, 106, 0.08);
    border: none;
    color: #c4a66a;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.drawer-close:hover {
    background: rgba(196, 166, 106, 0.2);
    transform: rotate(90deg);
}

/* Nav menu inside drawer */
.mobile-drawer .nav-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    flex: 1;
}

.mobile-drawer .nav-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-drawer .nav-menu li:last-child {
    border-bottom: none;
}

.mobile-drawer .nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    font-size: 16px;
    font-weight: 500;
    color: #2b2520;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.mobile-drawer .nav-menu a:hover,
.mobile-drawer .nav-menu li.active>a {
    color: #c4a66a;
    background: rgba(196, 166, 106, 0.05);
}

/* Services accordion */
.mobile-drawer .dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: rgba(196, 166, 106, 0.04);
    border-top: 1px solid rgba(196, 166, 106, 0.1);
}

.mobile-drawer .nav-dropdown.open .dropdown-menu {
    display: block;
}

.mobile-drawer .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-drawer .dropdown-menu a {
    padding: 12px 32px;
    font-size: 14px;
    color: #4a3e30;
}

.mobile-drawer .dropdown-menu a:hover {
    color: #c4a66a;
    background: rgba(196, 166, 106, 0.08);
}

/* Drawer footer */
.drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(196, 166, 106, 0.2);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-contact-info a {
    font-size: 14px;
    color: #4a3e30;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.25s ease;
}

.drawer-contact-info a:hover {
    color: #c4a66a;
}

.drawer-contact-info i {
    color: #c4a66a;
    width: 16px;
}

.drawer-socials {
    display: flex;
    gap: 12px;
}

.drawer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(196, 166, 106, 0.1);
    color: #c4a66a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.drawer-socials a:hover {
    background: #c4a66a;
    color: #fff;
}

.drawer-cta {
    width: 100%;
    justify-content: center;
    background: #c4a66a !important;
    color: #15110e !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
}

.drawer-cta:hover {
    background: #b39158 !important;
}

/* Hide drawer on desktop */
@media (min-width: 992px) {

    .mobile-drawer,
    .nav-backdrop {
        display: none !important;
    }
}