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

:root {
    --primary-color: #1b4332;
    --dark-green: #1b4332;
    --medium-green: #2d6a4f;
    --light-green: #40916c;
    --accent-green: #52b788;
    --lighter-green: #74c69d;
    --gold: #c8a882;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f1f8f4;
    --white: #ffffff;
    --light-bg: #e8f5e9;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.header-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header-nav .nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./WhatsApp Image 2025-12-03 at 16.19.16.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.6) 0%, rgba(46, 125, 50, 0.5) 50%, rgba(76, 175, 80, 0.4) 100%);
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-logo-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
}

.hero-text {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    min-height: 44px;
    justify-content: center;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.button-icon svg {
    width: 10px;
    height: 12px;
    fill: var(--primary-color);
}

/* Leaves Breeze Animation */
.leaves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    will-change: transform;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform-origin: center center;
}

/* Vary leaf sizes for more natural look */
.leaf-one,
.leaf-three,
.leaf-five,
.leaf-seven {
    font-size: 1.8rem;
    opacity: 0.5;
}

.leaf-two,
.leaf-four,
.leaf-six,
.leaf-eight {
    font-size: 2.2rem;
    opacity: 0.7;
}

/* Individual leaf positions and animations */
.leaf-one {
    top: 15%;
    left: 10%;
    animation: breeze-float-1 8s ease-in-out infinite;
    animation-delay: 0s;
}

.leaf-two {
    top: 25%;
    left: 20%;
    animation: breeze-float-2 10s ease-in-out infinite;
    animation-delay: 1s;
}

.leaf-three {
    top: 35%;
    left: 5%;
    animation: breeze-float-3 9s ease-in-out infinite;
    animation-delay: 2s;
}

.leaf-four {
    top: 45%;
    left: 15%;
    animation: breeze-float-1 11s ease-in-out infinite;
    animation-delay: 0.5s;
}

.leaf-five {
    top: 20%;
    right: 10%;
    animation: breeze-float-2 9s ease-in-out infinite;
    animation-delay: 1.5s;
}

.leaf-six {
    top: 30%;
    right: 20%;
    animation: breeze-float-3 10s ease-in-out infinite;
    animation-delay: 2.5s;
}

.leaf-seven {
    top: 40%;
    right: 5%;
    animation: breeze-float-1 8s ease-in-out infinite;
    animation-delay: 3s;
}

.leaf-eight {
    top: 50%;
    right: 15%;
    animation: breeze-float-2 12s ease-in-out infinite;
    animation-delay: 1s;
}

/* Breeze animation keyframes - gentle swaying and floating */
@keyframes breeze-float-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(40px, -10px) rotate(-3deg);
    }
    75% {
        transform: translate(20px, -20px) rotate(4deg);
    }
}

@keyframes breeze-float-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    20% {
        transform: translate(-15px, -20px) rotate(-4deg);
    }
    40% {
        transform: translate(-30px, -15px) rotate(3deg);
    }
    60% {
        transform: translate(-20px, -25px) rotate(-2deg);
    }
    80% {
        transform: translate(-10px, -18px) rotate(2deg);
    }
}

@keyframes breeze-float-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    30% {
        transform: translate(25px, -12px) rotate(6deg);
    }
    60% {
        transform: translate(50px, -8px) rotate(-4deg);
    }
    90% {
        transform: translate(30px, -18px) rotate(3deg);
    }
}

/* Glass Effect */
.glass-effect {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.glass-effect-pjs {
    background: linear-gradient(-155deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 15px;
    padding: 1.5rem;
}

/* Moving Border */
.moving-border {
    position: relative;
    color: white;
}

.moving-border::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: moveBorder 4s linear infinite alternate;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

@keyframes moveBorder {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.moving-border-raaga {
    position: relative;
    color: white;
    z-index: 2;
}

.moving-border-raaga::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(27, 67, 50, 0) 0%, rgba(27, 67, 50, 0.2) 30%, var(--primary-color) 50%, rgba(27, 67, 50, 0.2) 80%, rgba(27, 67, 50, 0) 100%);
    background-size: 200% 100%;
    animation: moveBorderraaga 4s linear infinite alternate;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

@keyframes moveBorderraaga {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Icon Headings */
.icon-heading {
    position: relative;
    display: inline-block;
}

.icon-heading::before {
    content: "";
    position: absolute;
    top: -0.3em;
    left: -.5em;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-green));
    -webkit-mask: url("https://hasirufarms.com/wp-content/uploads/2025/08/Leaf-Icon-1-1-1.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask: url("https://hasirufarms.com/wp-content/uploads/2025/08/Leaf-Icon-1-1-1.svg") no-repeat center;
    mask-size: contain;
}

.light-icon-heading {
    position: relative;
    display: inline-block;
}

.light-icon-heading::before {
    content: "";
    position: absolute;
    top: -0.3em;
    left: -.5em;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lighter-green), var(--light-green));
    -webkit-mask: url("https://hasirufarms.com/wp-content/uploads/2025/08/Leaf-Icon-1-1-1.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask: url("https://hasirufarms.com/wp-content/uploads/2025/08/Leaf-Icon-1-1-1.svg") no-repeat center;
    mask-size: contain;
}

/* Gradient Button */
.gradient-button {
    display: inline-flex;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.gradient-button .elementor-button,
.gradient-button {
    background: linear-gradient(270deg, var(--light-green), var(--primary-color), var(--light-green));
    background-size: 600% 600%;
    animation: gradientLoop 6s ease infinite;
    color: var(--white);
    font-weight: 600;
}

@keyframes gradientLoop {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Sticky Navigation */
.sticky-nav-section {
    position: sticky;
    top: 70px;
    z-index: 999;
    margin-bottom: 2rem;
}

.sticky-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
}

.project-nav {
    display: flex;
    list-style: none;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.project-nav::-webkit-scrollbar {
    display: none;
}

.project-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: var(--transition);
    white-space: nowrap;
}

.project-nav a:hover {
    background: rgba(27, 67, 50, 0.1);
    color: var(--primary-color);
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
    position: relative;
}

.carousel-section {
    padding-top: 40px;
}

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

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.section-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    text-align: center;
}

.card-text {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}

/* Retreat Section - New Layout */
.retreat-section {
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 50%, #c8e6c9 100%);
}

/* Why Choose Section - New Grid Layout */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-choose-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.why-choose-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.retreat-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.retreat-content {
    padding-right: 1rem;
    padding-top: 0;
}

.retreat-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.2;
}

.retreat-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.retreat-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.retreat-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.retreat-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.retreat-feature-item .feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.15), rgba(76, 175, 80, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(27, 67, 50, 0.2);
}

.retreat-feature-item .feature-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.retreat-feature-item .feature-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.retreat-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

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

.visual-card .visual-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.visual-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.visual-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.column-left {
    padding: 2rem;
}

.column-right {
    padding: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Development Grid */
.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.dev-item {
    text-align: center;
    padding: 2rem;
}

.dev-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dev-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Text and Carousel Section */
.text-carousel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content {
    padding: 2.5rem;
}

.text-content .section-heading {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

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

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 70%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    height: 30%;
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-light);
}

.gallery-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.gallery-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Highlights Section */
.highlight-section {
    background: var(--primary-color);
}

.highlight-section .section-heading {
    color: var(--white);
    margin-bottom: 3rem;
}

.highlights-subsection {
    margin-bottom: 4rem;
}

.highlights-subsection:last-child {
    margin-bottom: 0;
}

.subsection-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.subsection-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    min-height: 100px;
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-text {
    color: var(--white);
    font-weight: 500;
    line-height: 1.6;
}

.highlight-text small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.25rem;
    font-weight: 400;
}

/* Pricing Section */
.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.pricing-table-wrapper {
    padding: 2rem;
}

.pricing-table-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table {
        min-width: 500px;
    }
}

.pricing-table tr {
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

.pricing-table td {
    padding: 1rem;
    font-size: 1rem;
}

.pricing-table tr td:first-child {
    color: var(--text-light);
}

.pricing-table tr td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-table .highlight-row td {
    background: rgba(27, 67, 50, 0.1);
}

.pricing-table .total-row td {
    background: linear-gradient(135deg, var(--primary-color), var(--medium-green));
    color: var(--white);
    font-size: 1.2rem;
    padding: 1.5rem 1rem;
}

.payment-plan {
    padding: 2rem;
}

.payment-plan h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.plan-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(27, 67, 50, 0.05);
    border-radius: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--medium-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.step-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-total {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* Location Section - Interactive Map */
.location-section {
    background: var(--bg-light);
}

/* Location Filters */
.location-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--medium-green));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 67, 50, 0.3);
}

/* Map Container */
.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-height: 500px;
}

.map-background {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(76, 175, 80, 0.03) 2px, rgba(76, 175, 80, 0.03) 4px);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 2rem;
}

/* Center Marker (Prashantha Vana) */
.map-center-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    transition: var(--transition);
}

.map-center-marker:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.map-center-marker:hover .center-pin {
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.6);
}

.map-center-marker:hover .center-label {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.center-pin {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 5px 15px rgba(27, 67, 50, 0.4);
    margin: 0 auto 0.5rem;
    position: relative;
}

.center-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
}

.center-label {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--medium-green));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Map Markers */
.map-marker {
    position: absolute;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}

.map-marker:hover {
    z-index: 15;
    transform: scale(1.2);
}

.marker-pin {
    width: 30px;
    height: 30px;
    background: var(--light-green);
    border: 3px solid var(--white);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: var(--transition);
}

.map-marker:hover .marker-pin {
    background: var(--primary-color);
    transform: rotate(-45deg) scale(1.1);
}

.map-marker[data-location="school"] .marker-pin {
    background: #2196F3;
}

.map-marker[data-location="hospital"] .marker-pin {
    background: #f44336;
}

.map-marker[data-location="mall"] .marker-pin {
    background: #FF9800;
}

.map-marker[data-location="metro"] .marker-pin {
    background: #9C27B0;
}

.map-marker[data-location="school"] .marker-pulse {
    background: #2196F3;
}

.map-marker[data-location="hospital"] .marker-pulse {
    background: #f44336;
}

.map-marker[data-location="mall"] .marker-pulse {
    background: #FF9800;
}

.map-marker[data-location="metro"] .marker-pulse {
    background: #9C27B0;
}

.marker-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
}

.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light-green);
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Location Info Panel */
.location-info-panel {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 20;
    max-width: 400px;
}

.location-info-panel.active {
    transform: translateY(0);
    opacity: 1;
}

.info-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.close-info {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-info:hover {
    background: rgba(27, 67, 50, 0.1);
    color: var(--primary-color);
}

.info-panel-content {
    text-align: left;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.info-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(27, 67, 50, 0.05);
}

.info-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.info-value {
    color: var(--primary-color);
    font-weight: 600;
}

.info-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Location List */
.location-list {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-height: 600px;
    overflow-y: auto;
}

.location-list::-webkit-scrollbar {
    width: 8px;
}

.location-list::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.location-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.location-list::-webkit-scrollbar-thumb:hover {
    background: var(--light-green);
}

.list-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.location-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-item:hover {
    background: rgba(27, 67, 50, 0.05);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.location-item.active {
    background: rgba(27, 67, 50, 0.1);
    border-color: var(--primary-color);
}

.item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.item-time {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Contact Section */
.contact-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Site Visit Layout */
.site-visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.site-visit-content {
    padding-right: 2rem;
}

.site-visit-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.site-visit-text:last-child {
    margin-bottom: 0;
}

.contact-info-inline {
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-info-inline .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-inline .contact-item:last-child {
    margin-bottom: 0;
}

.contact-info-inline .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-inline .contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-inline .contact-details p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-inline .contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Site Visit Form */
.site-visit-form-wrapper {
    max-width: 100%;
}

.site-visit-form {
    padding: 2.5rem;
    border-radius: 20px;
}

.form-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form .form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.contact-form .form-group input {
    padding: 12px 15px;
    border: 2px solid rgba(27, 67, 50, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.contact-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.contact-form .form-group input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.contact-form .form-group input[type="date"] {
    cursor: pointer;
}

/* Responsive Form */
@media (max-width: 968px) {
    .site-visit-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-visit-content {
        padding-right: 0;
    }

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

@media (max-width: 768px) {
    .site-visit-form {
        padding: 2rem 1.5rem;
    }

    .form-heading {
        font-size: 1.75rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
    }

    .contact-form .form-group input {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .site-visit-form {
        padding: 1.5rem 1.25rem;
    }

    .form-heading {
        font-size: 1.5rem;
    }
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thank-you-message {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.9;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-container {
        padding: 1rem 15px;
    }

    .header-brand a {
        font-size: 1.3rem;
    }

    .logo-image {
        max-height: 45px;
    }

    .header-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .header-nav.active {
        left: 0;
    }

    .header-nav .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .content-section {
        padding: 50px 15px;
    }

    .hero-section {
        padding-top: 70px;
        min-height: 90vh;
    }

    .hero-logo {
        top: 30%;
    }

    .hero-logo h1 {
        font-size: 3rem;
        padding: 0 20px;
    }

    .hero-logo-image {
        max-width: 500px;
    }

    .hero-content {
        top: 60%;
        left: 0;
        transform: translateY(-50%);
        max-width: 95%;
        padding: 1.5rem;
        text-align: left;
        margin-left: 15px;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-button {
        padding: 10px 25px;
        font-size: 0.9rem;
        display: inline-flex;
    }

    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .section-text {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .sticky-nav-section {
        top: 60px;
    }

    .sticky-nav {
        padding: 0.75rem 15px;
    }

    .project-nav {
        gap: 0.5rem;
    }

    .project-nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .column-left,
    .column-right {
        padding: 1.5rem;
    }

    .retreat-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .retreat-content {
        padding-right: 0;
    }

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

    .retreat-heading {
        text-align: center;
        font-size: 2.5rem;
    }

    .retreat-description {
        text-align: center;
        font-size: 1.1rem;
    }

    .text-carousel-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-content {
        padding: 1.5rem;
    }

    .carousel-container {
        height: 400px;
        margin-top: 2rem;
    }

    .gallery-carousel-wrapper {
        height: 450px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

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

    .pricing-table-wrapper,
    .payment-plan {
        padding: 1.5rem;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem 15px;
    }

    .header-brand a {
        font-size: 1.2rem;
    }

    .logo-image {
        max-height: 40px;
    }

    .content-section {
        padding: 40px 15px;
    }

    .hero-section {
        min-height: 85vh;
        padding-top: 60px;
    }

    .hero-logo {
        top: 28%;
    }

    .hero-logo h1 {
        font-size: 2.5rem;
        padding: 0 15px;
    }

    .hero-logo-image {
        max-width: 400px;
    }

    .hero-content {
        top: 62%;
        left: 0;
        transform: translateY(-50%);
        max-width: 95%;
        padding: 1.25rem;
        text-align: left;
        margin-left: 15px;
    }

    .hero-button {
        display: inline-flex;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .section-heading {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        padding: 0 10px;
    }

    .section-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

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

    .stat-box {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .development-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-item {
        padding: 1.25rem;
        min-height: auto;
    }

    .highlight-icon {
        font-size: 2rem;
    }

    .highlight-text {
        font-size: 0.95rem;
    }

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

    .map-wrapper {
        min-height: 400px;
        margin-bottom: 2rem;
    }

    .map-background {
        min-height: 400px;
    }

    .location-filters {
        gap: 0.5rem;
        padding: 0 10px;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .location-info-panel {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 1rem;
        max-width: 100%;
        padding: 1.25rem;
    }

    .location-list {
        padding: 1.5rem;
        max-height: 500px;
    }

    .text-carousel-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-content {
        padding: 1.25rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .carousel-container {
        height: 350px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .gallery-carousel-wrapper {
        height: 350px;
    }

    .gallery-carousel-container {
        margin: 2rem auto 0;
    }

    .text-content .section-heading {
        text-align: center;
        font-size: 1.8rem;
    }

    .retreat-heading {
        font-size: 2rem;
    }

    .why-choose-item {
        padding: 1.5rem 1rem;
    }

    .why-choose-icon {
        font-size: 2.5rem;
    }

    .why-choose-item h3 {
        font-size: 1.3rem;
    }

    .retreat-description {
        font-size: 1rem;
    }

    .retreat-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }

    .retreat-feature-item:hover {
        transform: translateY(-5px);
    }

    .retreat-feature-item .feature-icon {
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .retreat-feature-item .feature-content h3 {
        font-size: 1.1rem;
    }

    .retreat-feature-item .feature-content p {
        font-size: 0.9rem;
    }

    .visual-card {
        padding: 2rem 1.5rem;
    }

    .visual-card .visual-icon {
        font-size: 3rem;
    }

    .visual-card h3 {
        font-size: 1.3rem;
    }

    .visual-card p {
        font-size: 0.95rem;
    }

    .pricing-table-wrapper h3,
    .payment-plan h3 {
        font-size: 1.5rem;
    }

    .pricing-table {
        font-size: 0.85rem;
    }

    .pricing-table td {
        padding: 0.75rem 0.4rem;
    }

    .plan-step {
        padding: 1.25rem;
        gap: 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-amount {
        font-size: 1.1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        font-size: 1.75rem;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.95rem;
    }

    .thank-you-message {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .leaf {
        font-size: 1.5rem;
    }

    .subsection-heading {
        font-size: 1.75rem;
    }

    .subsection-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.6rem 12px;
    }

    .header-brand a {
        font-size: 1.1rem;
    }

    .logo-image {
        max-height: 35px;
    }

    .content-section {
        padding: 35px 12px;
    }

    .hero-section {
        min-height: 80vh;
        padding-top: 55px;
    }

    .hero-logo {
        top: 25%;
    }

    .hero-logo h1 {
        font-size: 2rem;
        padding: 0 12px;
    }

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

    .hero-content {
        top: 60%;
        left: 0;
        transform: translateY(-50%);
        max-width: 98%;
        padding: 1rem;
        text-align: left;
        margin-left: 12px;
    }

    .hero-button {
        display: inline-flex;
    }

    .hero-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .hero-button {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .button-text {
        font-size: 0.8rem;
    }

    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding: 0 8px;
    }

    .section-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 8px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 8px;
    }

    .sticky-nav {
        padding: 0.6rem 12px;
    }

    .project-nav {
        gap: 0.4rem;
    }

    .project-nav a {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }

    .column-left,
    .column-right {
        padding: 1.25rem;
    }

    .retreat-heading {
        font-size: 1.75rem;
    }

    .retreat-description {
        font-size: 0.95rem;
    }

    .retreat-feature-item {
        padding: 1rem;
    }

    .retreat-feature-item .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }

    .retreat-feature-item .feature-content h3 {
        font-size: 1rem;
    }

    .retreat-feature-item .feature-content p {
        font-size: 0.85rem;
    }

    .visual-card {
        padding: 1.5rem 1rem;
    }

    .visual-card .visual-icon {
        font-size: 2.5rem;
    }

    .visual-card h3 {
        font-size: 1.2rem;
    }

    .visual-card p {
        font-size: 0.9rem;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .text-content {
        padding: 1rem;
    }

    .content-text {
        font-size: 0.95rem;
    }

    .feature-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .carousel-container {
        height: 300px;
    }

    .slide-content {
        padding: 1.25rem;
    }

    .slide-content h3 {
        font-size: 1.3rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .gallery-carousel-wrapper {
        height: 300px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .gallery-prev {
        left: 8px;
    }

    .gallery-next {
        right: 8px;
    }

    .gallery-dots {
        bottom: 15px;
        gap: 8px;
    }

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

    .highlight-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .highlight-icon {
        font-size: 1.75rem;
    }

    .highlight-text {
        font-size: 0.9rem;
    }

    .highlight-text small {
        font-size: 0.8rem;
    }

    .subsection-heading {
        font-size: 1.5rem;
    }

    .subsection-text {
        font-size: 0.95rem;
    }

    .pricing-table-wrapper,
    .payment-plan {
        padding: 1.25rem;
    }

    .pricing-table-wrapper h3,
    .payment-plan h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .pricing-table {
        font-size: 0.8rem;
    }

    .pricing-table td {
        padding: 0.6rem 0.3rem;
    }

    .pricing-table .total-row td {
        font-size: 1rem;
        padding: 1.25rem 0.5rem;
    }

    .plan-step {
        padding: 1rem;
        gap: 0.75rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 0.95rem;
    }

    .step-note {
        font-size: 0.85rem;
    }

    .step-amount {
        font-size: 1rem;
    }

    .plan-total {
        padding: 1.25rem;
        font-size: 1.1rem;
    }

    .map-wrapper {
        min-height: 350px;
    }

    .map-background {
        min-height: 350px;
    }

    .map-placeholder {
        padding: 1.5rem;
    }

    .location-filters {
        gap: 0.4rem;
        padding: 0 8px;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .location-list {
        padding: 1.25rem;
        max-height: 400px;
    }

    .list-heading {
        font-size: 1.5rem;
    }

    .location-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .item-icon {
        font-size: 1.75rem;
    }

    .item-content h4 {
        font-size: 1rem;
    }

    .item-time {
        font-size: 0.85rem;
    }

    .location-info-panel {
        padding: 1rem;
    }

    .info-title {
        font-size: 1.1rem;
    }

    .info-name {
        font-size: 1.3rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .contact-info {
        padding: 1.25rem;
    }

    .contact-item {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .thank-you-message {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .footer-container {
        padding: 0 12px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }

    .icon-heading::before,
    .light-icon-heading::before {
        width: 30px;
        height: 30px;
        top: -0.4em;
        left: -0.7em;
    }

    .leaf {
        font-size: 1.25rem;
    }
}

/* Pricing Form Modal */
.pricing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.pricing-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10002;
}

.modal-close:hover {
    background: rgba(27, 67, 50, 0.1);
    color: var(--primary-color);
}

.modal-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pricing-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid rgba(27, 67, 50, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .modal-heading {
        font-size: 1.75rem;
    }

    .modal-subtitle {
        font-size: 0.95rem;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1.5rem 1.25rem;
    }

    .modal-heading {
        font-size: 1.5rem;
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 1.75rem;
        width: 35px;
        height: 35px;
    }
}
