/* ============================================
   GLOBAL STYLES & RESET - EXACT REACT MATCH
   ============================================ */

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

:root {
    /* Primary Colors - Blue (Exact Tailwind from React) */
    --blue-50: #eff6ff;
    --blue-200: #bfdbfe;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;

    /* Secondary Colors - Green (Exact Tailwind from React) */
    --green-50: #f0fdf4;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;

    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;

    /* Other colors */
    --yellow-400: #fbbf24;
    --purple-600: #9333ea;
    --pink-600: #db2777;

    /* Shadows (Exact Tailwind) */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions (Exact Tailwind timing) */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-very-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
    background-color: var(--gray-50);
}

html {
    scroll-behavior: smooth;
}

*:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

*:focus-visible {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.025em;
}

.navbar.scrolled .nav-logo {
    color: var(--blue-900);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .hamburger {
    background: var(--gray-700);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.navbar .nav-link:hover {
    color: var(--blue-200);
}

.navbar.scrolled .nav-link:hover {
    color: var(--blue-600);
}

.btn-whatsapp {
    background: linear-gradient(to right, var(--green-600), var(--green-700));
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp:hover {
    background: linear-gradient(to right, var(--green-700), var(--green-800));
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem 1rem 1.5rem;
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        color: var(--gray-700);
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        transition: var(--transition);
    }

    .nav-link:hover {
        background: var(--blue-50);
        color: var(--gray-700);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.pexels.com/photos/1732414/pexels-photo-1732414.jpeg') center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
    max-width: 64rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--blue-200);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.025em;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(to right, var(--green-500), var(--green-600));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: var(--shadow-2xl);
    animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--green-600), var(--green-700));
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.5);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
        line-height: 1;
    }
}

/* ============================================
   FARMS SECTION
   ============================================ */

.farms-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}
.farm-info-box {
    background: #e8f0ff; /* soft blue */
    color: var(--blue-600);
    font-size: 1.15rem;
    font-weight: 600;
    max-width: 45rem;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-align: center;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out forwards;
}

.farms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .farms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .farms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   FARM CARD
   ============================================ */

.farm-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    height: 400px;
}

.farm-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.farm-card-image {
    position: relative;
    height: 100%;
}

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

.farm-card:hover .farm-card-image img {
    transform: scale(1.1);
}

.farm-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
    opacity: 0.7;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.farm-card:hover .farm-card-overlay {
    opacity: 0.9;
}

.farm-card-content {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.farm-card-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--blue-900);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
}

.farm-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.farm-card-hover {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.farm-card:hover .farm-card-hover {
    opacity: 1;
    transform: translateY(-8px);
}

.farm-card-link {
    color: var(--blue-400);
    font-weight: 600;
}

.farm-card-arrow {
    color: var(--blue-400);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.farm-card:hover .farm-card-arrow {
    transform: translateX(0.5rem);
}

.farm-card-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, var(--blue-500), var(--blue-600));
    color: var(--white);
    padding: 0.75rem;
    border: none;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.farm-card:hover .farm-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.farm-card-btn:hover {
    background: linear-gradient(to right, var(--blue-600), var(--blue-700));
    transform: scale(1.05);
}

/* ============================================
   DETAIL PAGE
   ============================================ */

.detail-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-50);
    z-index: 2000;
    overflow-y: auto;
}

.detail-container {
    min-height: 100vh;
}

.detail-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    padding: 1rem 2rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--blue-600);
}

.back-btn svg {
    transition: var(--transition);
}

.back-btn:hover svg {
    transform: translateX(-4px);
}

/* ============================================
   IMAGE SLIDER
   ============================================ */

.farm-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 800px;
    background: var(--black);

    /* FIX mobile fullscreen + volume */
    overflow: visible !important;
}


.slider-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: var(--black);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
    transition: var(--transition);
    z-index: 10;
    color: var(--gray-700);
}

.farm-slider:hover .slider-btn {
    opacity: 1;
}

.slider-prev {
    left: 1rem;
    transform: translate(-1rem, -50%);
}

.farm-slider:hover .slider-prev {
    transform: translate(0, -50%);
}

.slider-next {
    right: 1rem;
    transform: translate(1rem, -50%);
}

.farm-slider:hover .slider-next {
    transform: translate(0, -50%);
}

.slider-btn:hover {
    background: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 32px;
    background: var(--white);
}

.slider-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
}

.slider-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.slider-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--blue-200);
    font-size: 1.125rem;
}







.slider-stars {
    color: var(--yellow-400);
}

@media (max-width: 768px) {
    .slider-title {
        font-size: 2rem;
    }

    .slider-info {
        left: 1rem;
        bottom: 1rem;
    }

}

/* ============================================
   DETAIL CONTENT
   ============================================ */

.detail-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .detail-content {
        grid-template-columns: 2fr 1fr;
    }
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.detail-section {
    animation: fadeInUp 0.8s ease-out forwards;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .detail-title {
        font-size: 2.25rem;
    }
}

.detail-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-900);
}

/* ============================================
   AMENITIES GRID
   ============================================ */

/* ============================================
   AMENITIES GRID (FIXED FOR HTML VERSION)
   ============================================ */

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

.amenity-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.amenity-icon {
    width: 48px;
    height: 48px;
    background: #eef2ff;   /* Light blue box */
    color: #2563eb;        /* Blue icon */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    flex-shrink: 0;
}

.amenity-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;  /* Dark text */
}


/* ============================================
   MAP CONTAINER
   ============================================ */

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--blue-700);
}

/* ============================================
   DETAIL SIDEBAR
   ============================================ */

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(to bottom right, var(--blue-50), #eef2ff);
    border: 2px solid var(--blue-200);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out forwards;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.pricing-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.pricing-days {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.pricing-amount-container {
    text-align: right;
}

.pricing-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-amount.weekday {
    color: var(--blue-600);
}

.pricing-amount.weekend {
    color: var(--green-600);
}

.pricing-per {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

/* Booking Card */
.booking-card {
    background: linear-gradient(to right, var(--green-600), var(--green-700));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    color: var(--white);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.15s;
}

.booking-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-reserve {
    width: 100%;
    background: var(--white);
    color: var(--green-700);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.btn-reserve:hover {
    background: var(--gray-50);
    transform: scale(1.05);
}

.booking-card-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Contact Card */
/* =============================
   CONTACT SECTION - FULL MATCH
============================= */

.contact-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
}

/* Wrapper (Big card) */
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1.25rem;
    padding: 3rem 3.5rem;
    box-shadow: var(--shadow-2xl);
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

/* Two columns */
.contact-card-left,
.contact-card-right {
    flex: 1;
}

/* Titles */
.contact-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

/* Labels */
.contact-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.contact-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-phone:hover {
    color: var(--blue-700);
}

/* Location */
.contact-location {
    font-size: 1.1rem;
    color: var(--gray-900);
}

/* Right-side text */
.contact-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

/* Green Button */
.contact-book-btn {
    background: linear-gradient(to right, var(--green-600), var(--green-700));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.contact-book-btn:hover {
    background: linear-gradient(to right, var(--green-700), var(--green-800));
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 2rem;
    }

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

    .contact-book-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}



/* Social Card */
.social-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.45s;
}

.social-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.instagram-link:hover {
    color: var(--blue-600);
}

.instagram-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--purple-600), var(--pink-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.instagram-link:hover .instagram-icon {
    transform: scale(1.1);
}

/* Badge Card */
.badge-card {
    background: linear-gradient(to bottom right, #dcfce7, var(--blue-50));
    border: 2px solid #86efac;
    border-radius: 1rem;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.badge-check {
    color: var(--green-600);
    font-weight: 700;
    font-size: 1.125rem;
}

.badge-stars {
    color: var(--yellow-400);
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ============================================
   HOMEPAGE LOCATION SECTION (NEW)
============================================ */

.location-section {
    padding: 4rem 0;
    background: var(--white);
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.location-wrapper {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.location-map-box {
    flex: 2;
}

.location-map-box iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.location-info-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.location-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.location-phone {
    display: block;
    color: var(--blue-600);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 2rem;
}

.location-phone:hover {
    color: var(--blue-700);
}

.location-follow-title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.insta-card {
    display: inline-block;
    background: linear-gradient(45deg, #f56040, #fcaf45, #e1306c, #833ab4);
    color: #fff;
    padding: 0.85rem 1.3rem;
    border-radius: 0.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-decoration: none;
}

.license-box {
    background: #eaffea;
    border: 1px solid #47d147;
    padding: 1rem;
    text-align: center;
    border-radius: 0.75rem;
}

.map-link-home {
    display: inline-block;
    margin-top: 1rem;
    color: var(--blue-600);
    font-weight: 600;
    text-decoration: none;
}










/* ============================================
   BOOKING MODAL
   ============================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    max-width: 48rem;
    width: 100%;
    padding: 2rem;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--gray-900);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, var(--green-600), var(--green-700));
    border-radius: 50%;
    color: var(--white);
    margin-bottom: 1rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--green-600);
    font-weight: 600;
    font-size: 1.125rem;
}

.modal-footer-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

/* ============================================
   BOOKING FORM
   ============================================ */

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-label {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--green-600);
}

.form-display {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--green-600);
}

/* Pricing Summary */
.pricing-summary {
    background: linear-gradient(to bottom right, var(--green-50), var(--blue-50));
    border: 2px solid #86efac;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.pricing-title {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--gray-900);
}

.pricing-total {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    font-weight: 600;
}

.pricing-total span:last-child {
    color: var(--green-600);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-300);
    color: var(--gray-600);
}

.btn-submit.active {
    background: linear-gradient(to right, var(--green-600), var(--green-700));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-submit.active:hover {
    background: linear-gradient(to right, var(--green-700), var(--green-800));
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-submit:disabled {
    cursor: not-allowed;
}

/* ============================
   FOOTER STYLING
============================ */

.footer {
    background: linear-gradient(135deg, #0c1b3b, #0a2349, #0c1b3b 80%);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1.2;
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.footer-license {
    font-size: 1rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1rem;
}

.footer-stars {
    font-size: 1.5rem;
    color: #fbbf24;
}



/* MIDDLE COLUM */
.footer-links {
    flex: 0.8;
}

.footer-links h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}



/* RIGHT COLUMN */
.footer-social {
    flex: 1;
}

.footer-social h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.footer-social p {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 1.2rem;
}

/* Instagram Button */
.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #ff4f81, #c63bda);
    padding: 0.9rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.insta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Icon */
.insta-icon {
    width: 22px;
    height: 22px;
}



/* BOTTOM COPYRIGHT */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.95rem;
    color: #d1d5db;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}



/* MOBILE VIEW */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-logo {
        text-align: left;
    }
}


/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* ============================================
   UTILITIES
   ============================================ */

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

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

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366; /* WhatsApp Green */
    padding: 12px 18px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    z-index: 5000;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-text {
    font-size: 1rem;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 40px;
    padding: 6px 12px;  /* smaller padding */
    display: flex;
    align-items: center;
    gap: 6px; /* smaller gap */
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transform: scale(0.85);  /* 15% smaller button */
}

.whatsapp-icon {
    width: 28px;  /* smaller icon */
    height: 28px;
}

.whatsapp-text {
    font-size: 13px; /* smaller text */
    font-weight: 600;
}


/* Enable mobile video controls */
.slider-container,
.slider-media {
    pointer-events: auto !important;
}

.slider-info,
.slider-dots,
.slider-title,
.slider-subtitle,
.slider-stars {
    pointer-events: none !important;
}

.slider-btn {
    pointer-events: auto !important;
}
.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue-200);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
    animation: fadeInUp 0.8s ease-out forwards;
}

.farm-insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff5f6d, #ff3d8e, #d633ff);
    padding: 12px 22px;
    border-radius: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.farm-insta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 120, 0.3);
}

.farm-insta-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}















/* ------------------------------------------------
   MOBILE VIEW OPTIMIZED (ONLY for screens ≤ 768px)
-------------------------------------------------*/
@media (max-width: 768px) {

    /* NAVBAR FIX — reduce top spacing */
    .navbar {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .nav-container {
        padding-top: 0 !important;
    }

    /* Logo + text alignment left */
    .nav-logo {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 6px;
        padding-left: 10px;
        margin-top: 0 !important;     /* removes space above logo */
    }

    /* Smaller logo only on mobile */
    .nav-logo img {
        height: 38px !important;
        width: auto !important;
        margin: 0 !important;
    }

    /* Smaller brand text */
    .nav-logo .logo-text {
        font-size: 14px !important;
        font-weight: 600;
        white-space: nowrap;
        margin: 0 !important;
    }

    /* HERO TITLE — perfect fit for mobile */
    .hero-title {
        font-size: 24px !important;    /* fits perfectly */
        line-height: 30px !important;
        margin-top: 5px !important;
        padding: 0 10px !important;
        word-break: break-word;
        text-align: center;            /* keeps balance */
    }

    /* HERO SUBTITLE */
    .hero-subtitle {
        font-size: 16px !important;
        line-height: 22px !important;
        padding: 0 12px !important;
        text-align: center;
        margin-top: 5px !important;
    }

    /* BUTTON FIX */
    .hero-btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
        border-radius: 30px;
        margin-top: 10px !important;
    }

    /* HERO SECTION SPACING */
    .hero-section {
        padding-top: 50px !important;      /* perfect spacing */
        padding-bottom: 40px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Darker overlay for mobile readability */
    .hero-section::before {
        background: rgba(0, 0, 0, 0.38) !important;
    }

    /* WhatsApp button smaller */
    .whatsapp-btn {
        transform: scale(0.85);
        bottom: 15px !important;
    }
}



/* MOBILE VIEW: Logo ON TOP, Text BELOW */
@media (max-width: 768px) {

    .nav-logo {
        display: flex !important;
        flex-direction: column !important;   /* logo on top, text below */
        align-items: flex-start !important;  /* left align */
        justify-content: flex-start !important;
        gap: 2px;  
        margin-top: 0 !important;
        padding-left: 10px !important;
    }

    /* Slightly bigger logo */
.nav-logo img {
    height: 88px !important;   /* earlier 38px — now increased   */
    width: auto !important;
    margin: 0 !important;
}

/* Slightly bigger text */
.nav-logo .logo-text {
    font-size: 21px !important;  /* earlier 14px — now increased */
    font-weight: 600;
    white-space: nowrap;
    margin: 0 !important;
}

}



.other-services {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.other-services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.service-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  width: 320px;
  height: 470px;              /* ✅ FIXED HEIGHT = buttons never escape */
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease-in-out;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;   /* ✅ pushes buttons to bottom INSIDE */
  overflow: hidden;                  /* ✅ hard-stop overflow */
}


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

.service-card img {
  width: 150px;
  margin: 0 auto 20px;
  display: block;
}



.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
  text-align: center;
}

.service-card p {
  font-size: 15px;
  color: #555;
  text-align: center;
  margin-bottom: 0;
}
.service-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 18px;
}



.service-links a {
  width: 110px;
  padding: 10px 6px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: #111;
  color: white;
  border-radius: 10px;
  font-size: 12.5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-links a img {
  width: 18px;
  height: 18px;
}

.service-links a:hover {
  background: #444;
}
.service-links a span {
  font-weight: 500;
}








.icon-btn {
   display: flex;              /* ✅ Left-right layout */
  align-items: center;       /* ✅ Vertical center */
  justify-content: center;
  gap: 10px;                  /* ✅ Space between icon & text */
  margin: 6px;
  padding: 12px 18px;
  background: #111;
  color: white;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  min-width: 160px;          /* ✅ Same width for both buttons */
}

.icon-btn img {
  width: 18px;               /* ✅ Instagram logo size */
  height: 18px;
}

.icon-btn span {
  font-weight: 500;
}


.icon-btn i {
  font-size: 15px;
}

.icon-btn:hover {
  background: #333;
}

/* ✅ Instagram brand effect (optional but looks premium) */
.icon-btn.insta {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.icon-btn.insta:hover {
  opacity: 0.85;
}
.icon-btn.insta-img img {
  width: 18px;
  height: 18px;
}

