/* ============================================
   RESET & BASE STYLES - NATURE THEME
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nature Theme Colors */
    --nature-green: #2D5016;
    --nature-green-light: #4A7C2A;
    --nature-green-dark: #1A3009;
    --river-blue: #1E88E5;
    --river-blue-light: #42A5F5;
    --river-blue-dark: #1565C0;
    --wood-brown: #6B4423;
    --wood-brown-light: #8B5A3C;
    --wood-brown-dark: #4A2C1A;
    --earth-brown: #8B6F47;
    --cream: #F5F5DC;
    --cream-light: #FFFEF7;
    --sky-blue: #87CEEB;
    --leaf-green: #90EE90;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #F5F5DC;
    --text-muted: #B8D4A0;
    --text-dark: #1A3009;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2D5016 0%, #4A7C2A 50%, #1E88E5 100%);
    --gradient-nature: linear-gradient(135deg, #2D5016 0%, #1E88E5 100%);
    --gradient-river: linear-gradient(135deg, #1E88E5 0%, #42A5F5 50%, #87CEEB 100%);
    --gradient-forest: linear-gradient(135deg, #1A3009 0%, #2D5016 50%, #4A7C2A 100%);
    --gradient-sky: linear-gradient(135deg, #87CEEB 0%, #42A5F5 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 48, 9, 0.2);
    --shadow-md: 0 4px 16px rgba(26, 48, 9, 0.3);
    --shadow-lg: 0 8px 32px rgba(26, 48, 9, 0.4);
    --shadow-glow: 0 0 40px rgba(30, 136, 229, 0.4);
    --shadow-nature: 0 8px 24px rgba(45, 80, 22, 0.4);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--nature-green-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   WATER BACKGROUND ANIMATION
   ============================================ */
.water-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.water-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, transparent 70%);
    animation: wave 20s infinite linear;
}

.wave1 {
    top: -50%;
    left: -50%;
    animation-duration: 25s;
}

.wave2 {
    top: -30%;
    left: -30%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.wave3 {
    top: -40%;
    left: -40%;
    animation-duration: 35s;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Nature Elements */
.nature-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--leaf-green);
    border-radius: 0 100% 0 100%;
    opacity: 0.3;
    animation: floatLeaf 15s infinite ease-in-out;
}

.leaf-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.leaf-2 {
    left: 80%;
    top: 60%;
    animation-delay: 5s;
}

.leaf-3 {
    left: 50%;
    top: 80%;
    animation-delay: 10s;
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(30, 136, 229, 0.3);
    border-radius: 50%;
    animation: ripple 3s infinite;
}

.ripple-1 {
    left: 20%;
    top: 40%;
    animation-delay: 0s;
}

.ripple-2 {
    left: 70%;
    top: 60%;
    animation-delay: 1.5s;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 48, 9, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 48, 9, 0.95);
    box-shadow: var(--shadow-md);
}

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

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-nature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--river-blue);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--river-blue-light);
}

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

/* Admin Login Button */
.nav-link-login {
    background: var(--gradient-river);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    color: var(--text-primary) !important;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.nav-link-login::after {
    display: none; /* Remove underline effect */
}

.nav-link-login:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary) !important;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-forest);
    z-index: -1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.hero-background-image.active {
    opacity: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 48, 9, 0.7) 0%, rgba(30, 136, 229, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    background: var(--gradient-nature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-main {
    font-size: 1.2em;
    color: var(--river-blue-light);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--river-blue-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-nature);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--river-blue);
}

.btn-secondary:hover {
    background: var(--river-blue);
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover .btn-shine {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--river-blue);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--river-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(30, 136, 229, 0.2);
    border-radius: 50px;
    color: var(--river-blue-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   DECORATIVE ELEMENTS & ANIMATIONS
   ============================================ */

/* Section Dividers dengan Animasi */
.section-divider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--river-blue) 20%,
        var(--river-blue) 80%,
        transparent
    );
    animation: dividerLine 3s infinite;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--nature-green-dark);
    border: 3px solid var(--river-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(30, 136, 229, 0.5);
}

@keyframes dividerLine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Animated Background Pattern */
.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.section-pattern::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(45deg, var(--river-blue) 1px, transparent 1px),
        linear-gradient(-45deg, var(--river-blue) 1px, transparent 1px),
        linear-gradient(45deg, var(--nature-green) 1px, transparent 1px),
        linear-gradient(-45deg, var(--nature-green) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 30px 30px, 30px 30px;
    background-position: 0 0, 25px 25px, 0 0, 15px 15px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape-decoration {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 15s infinite ease-in-out;
}

.shape-decoration.circle {
    width: 200px;
    height: 200px;
    border: 3px solid var(--river-blue);
    border-radius: 50%;
}

.shape-decoration.triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 150px solid var(--nature-green);
}

.shape-decoration.square {
    width: 150px;
    height: 150px;
    border: 3px solid var(--river-blue);
    transform: rotate(45deg);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

/* Animated Border Lines */
.section-animated-border {
    position: relative;
}

.section-animated-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--river-blue),
        var(--nature-green),
        var(--river-blue)
    );
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite;
}

.section-animated-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--river-blue),
        var(--nature-green),
        var(--river-blue)
    );
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite reverse;
}

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

/* Dotted Lines Animation */
.dotted-line {
    position: relative;
    height: 2px;
    margin: 2rem 0;
    overflow: hidden;
}

.dotted-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        var(--river-blue) 0,
        var(--river-blue) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: dottedMove 2s linear infinite;
}

@keyframes dottedMove {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Section Background Glow */
.section-glow {
    position: relative;
}

.section-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(30, 136, 229, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Decorative Corner Elements */
.section-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--river-blue);
    opacity: 0.2;
    z-index: 1;
}

.section-corner.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.section-corner.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.section-corner.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.section-corner.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Animated Underline untuk Section Title */
.section-title {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-nature);
    animation: titleUnderline 1s ease-out 0.5s forwards;
    z-index: 1;
}

@keyframes titleUnderline {
    to {
        width: 100%;
    }
}

/* About Section */
.about-section {
    background: var(--nature-green-dark);
    position: relative;
    overflow: hidden;
}

/* Menu Section */
.menu-section {
    background: var(--nature-green);
    position: relative;
    overflow: hidden;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.menu-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
    position: relative;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(30, 136, 229, 0.1),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.menu-card:hover::before {
    left: 100%;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--river-blue);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-info {
    padding: 1.5rem;
}

.menu-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.menu-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--river-blue-light);
}

/* Facilities Section */
.facilities-section {
    background: var(--nature-green-dark);
    position: relative;
    overflow: hidden;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.facility-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--river-blue);
}

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

.facility-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* Gallery Section */
.gallery-section {
    background: var(--nature-green);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Posts Section */
.posts-section {
    background: var(--nature-green-dark);
    position: relative;
    overflow: hidden;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.post-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(30, 136, 229, 0.1),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.post-card:hover::before {
    left: 100%;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--river-blue);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--river-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.post-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.post-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--nature-green);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(30, 136, 229, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(30, 136, 229, 0.1),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--river-blue);
}

.testimonial-stars,
.testimonial-text,
.testimonial-author {
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Location Section */
.location-section {
    background: var(--nature-green-dark);
    position: relative;
    overflow: hidden;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.location-details {
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.detail-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.detail-text p {
    color: var(--text-muted);
    line-height: 1.8;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-nature);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--nature-green-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(30, 136, 229, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-nature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 136, 229, 0.2);
    color: var(--text-muted);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.float-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 48, 9, 0.98);
        flex-direction: column;
        justify-content: start;
        padding: 2rem;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    /* Admin Login Button Mobile */
    .nav-link-login {
        width: fit-content;
        text-align: center;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

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

    .cta-title {
        font-size: 2rem;
    }
}


