/* Eden Park By Dror - Custom Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nature-Inspired Green Color Palette */
    --primary-color: #1a3d2e; /* Deep Forest Green */
    --secondary-color: #f0f7f3; /* Light Mint Green */
    --accent-color: #2d8659; /* Emerald Green */
    --accent-light: #5fb889; /* Fresh Green */
    --accent-dark: #0f251a; /* Darkest Green */
    --warm-color: #e8f5ef; /* Warm Green Tint */
    --warm-light: #ffffff; /* White */
    --text-light: #ffffff;
    --text-dark: #1a3d2e; /* Forest Green */
    --text-muted: #5a7c6b;
    --text-light-muted: rgba(255, 255, 255, 0.9);
    --border-color: #c8d5ce;
    --border-light: rgba(45, 134, 89, 0.3);
    --shadow: 0 20px 60px rgba(26, 61, 46, 0.08);
    --shadow-hover: 0 30px 80px rgba(45, 134, 89, 0.2);
    --shadow-green: 0 10px 30px rgba(45, 134, 89, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Minimalist Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(240, 247, 243, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(45, 134, 89, 0.2);
    box-shadow: 0 2px 10px rgba(26, 61, 46, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.nav-logo span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0px;
    margin-bottom: 1px;
    font-weight: 300;
    line-height: 1.3;
}

/* Menu Items */
.menu-items {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.menu-link:hover::before {
    width: 80%;
}

.menu-link:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.menu-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-title {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Menu */
.menu-trigger {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: var(--text-light);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-menu-panel.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
}

.mobile-menu-close i {
    color: var(--text-light);
    font-size: 1.2rem;
}

.mobile-menu-header {
    padding: 80px 30px 40px;
    background: var(--primary-color);
    color: var(--text-light);
}

.mobile-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mobile-menu-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.mobile-menu-items {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu-item {
    margin-bottom: 5px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background: var(--warm-light);
    transform: translateX(10px);
}

.mobile-menu-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-link:hover .mobile-menu-icon {
    background: var(--accent-dark);
    transform: scale(1.1);
}

.mobile-menu-icon i {
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-link:hover .mobile-menu-icon i {
    color: var(--text-light);
}

.mobile-menu-text {
    display: flex;
    flex-direction: column;
}

.mobile-menu-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.mobile-menu-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-left: 60px;
}

.hero-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.hero-image,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border: none;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.521);
    z-index: -1.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.hero-content {
    text-align: left;
    color: var(--text-light);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    margin-left: 0;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 200;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 8px;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: translateX(0);
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 1s ease-out;
    animation: underlineExpand 1s ease-out 1s forwards;
}

@keyframes underlineExpand {
    to {
        width: 200px;
    }
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    animation: slideInRight 1s ease-out 0.4s both;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light-muted);
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: var(--text-light);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: var(--warm-color);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--warm-light) 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 2;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    max-width: 600px;
}

.text-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.text-block p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    text-align: center;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 124, 89, 0.1);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-detail {
    font-size: 0.8rem;
    color: #4a4a4a;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 80, 22, 0.8));
    padding: 30px;
    color: var(--text-light);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Location Section */
.location {
    background: var(--text-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.location-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--warm-light);
    border-radius: 15px;
    transition: var(--transition);
}

.location-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.location-feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    text-align: center;
}

.location-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.location-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.location-map {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder small {
    font-size: 1rem;
    opacity: 0.8;
}

/* Amenities Section */
.amenities {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.amenities-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.amenities-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.8);
    z-index: 2;
}

.amenities .section-header {
    position: relative;
    z-index: 3;
}

.amenities .section-header h2 {
    color: var(--text-light);
}

.amenities .section-header p {
    color: var(--text-light-muted);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 3;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
    background: var(--accent-light);
    transform: scale(1.1);
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.amenity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.amenity-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light-muted);
}

/* Services Section */
.services {
    background: var(--secondary-color);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.services-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.services .section-header {
    position: relative;
    z-index: 3;
}

.services .section-header h2 {
    color: var(--text-dark);
}

.services .section-header p {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 3;
}

.service-card {
    background: linear-gradient(135deg, var(--warm-color) 0%, var(--secondary-color) 100%);
    border: 2px solid rgba(45, 134, 89, 0.1);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(26, 61, 46, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 134, 89, 0.15) 0%, transparent 70%);
    transition: transform 0.6s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: translate(50%, 50%);
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card:nth-child(7) { animation-delay: 0.35s; }
.service-card:nth-child(8) { animation-delay: 0.4s; }
.service-card:nth-child(9) { animation-delay: 0.45s; }
.service-card:nth-child(10) { animation-delay: 0.5s; }
.service-card:nth-child(11) { animation-delay: 0.55s; }
.service-card:nth-child(12) { animation-delay: 0.6s; }
.service-card:nth-child(13) { animation-delay: 0.65s; }
.service-card:nth-child(14) { animation-delay: 0.7s; }
.service-card:nth-child(15) { animation-delay: 0.75s; }
.service-card:nth-child(16) { animation-delay: 0.8s; }
.service-card:nth-child(17) { animation-delay: 0.85s; }
.service-card:nth-child(18) { animation-delay: 0.9s; }
.service-card:nth-child(n+19) { animation-delay: 0.95s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(45, 134, 89, 0.2);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, var(--warm-color) 100%);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 40px rgba(45, 134, 89, 0.4);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon::after {
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.15);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    background: transparent;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover h3 {
    color: var(--accent-color);
    letter-spacing: 0.5px;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--text-dark);
}

/* Gallery Section */
.gallery {
    background: var(--text-light);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.gallery .container {
    position: relative;
    z-index: 3;
    background: var(--text-light);
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .gallery {
        padding-bottom: 0 !important;
    }
    
    .gallery .container {
        padding-bottom: 0 !important;
    }
}

.gallery-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.gallery-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0);
    z-index: 2;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.gallery-title {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f3 100%);
    padding: 60px 0 100px 0;
}

.gallery-carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 124, 89, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 124, 89, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.gallery-masonry {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    z-index: 1;
}

.gallery-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85) rotateY(5deg);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    pointer-events: none;
    z-index: 1;
    filter: blur(8px);
    perspective: 1000px;
}

.gallery-item-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    align-items: center !important;
    justify-items: start !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.gallery-item.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg) !important;
    pointer-events: all;
    z-index: 2;
    filter: blur(0px);
}

.gallery-item.active .gallery-item-content {
    animation: slideInContent 0.8s ease-out 0.3s both;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-item:hover {
    transform: translate(-50%, -50%) scale(1.02) rotateY(0deg) !important;
}

.gallery-item:hover .gallery-item-content {
    transform: translateZ(20px) !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
}

.gallery-item:hover .gallery-image-wrapper {
    box-shadow: 0 20px 50px rgba(74, 124, 89, 0.25), 0 0 0 1px rgba(74, 124, 89, 0.1);
    transform: translateZ(10px);
}

.gallery-item:hover .gallery-text {
    transform: translateZ(10px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(74, 124, 89, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 1;
    pointer-events: all;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    opacity: 1;
    pointer-events: all;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(74, 124, 89, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(74, 124, 89, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    width: 24px;
    border-radius: 5px;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100% !important;
    max-width: 650px !important;
    height: auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(74, 124, 89, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.gallery-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(74, 124, 89, 0.03) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.gallery-image-full {
    width: 100%;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

.gallery-item img {
    width: 100% !important;
    height: auto !important;
    max-height: 650px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 8px;
    filter: brightness(1) contrast(1.02) saturate(1.05);
    position: relative;
    z-index: 1;
}

.gallery-item.active img {
    animation: imageReveal 1s ease-out 0.4s both;
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(0.95);
        filter: brightness(0.8) blur(4px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1) contrast(1.02) saturate(1.05) blur(0px);
    }
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.gallery-text {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    background: transparent;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    width: 100% !important;
}

.gallery-text-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.gallery-item.active .gallery-text-content {
    opacity: 1;
    transform: translateX(0);
    animation: textReveal 0.8s ease-out 0.5s both;
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(74, 124, 89, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left !important;
    width: 100% !important;
    background-clip: text;
    position: relative;
    display: block !important;
}

.gallery-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0 !important;
    transform: none !important;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
    animation: underlineExpand 0.8s ease-out 1s both;
}

@keyframes underlineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

.gallery-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin: 0 !important;
    font-weight: 300;
    position: relative;
    padding-left: 20px !important;
    border-left: 2px solid rgba(74, 124, 89, 0.2) !important;
    transition: all 0.4s ease;
    text-align: left !important;
    width: 100% !important;
}

.gallery-item:hover .gallery-text p {
    border-left-color: rgba(74, 124, 89, 0.4) !important;
    padding-left: 25px !important;
    color: var(--text-dark);
}

.gallery-item-minimal .gallery-image-wrapper {
    width: 100%;
    grid-column: 1 / -1;
}

.gallery-text::before {
    display: none;
}

.gallery-text-content {
    position: relative;
    z-index: 1;
}

.gallery-text-content {
    position: relative;
    z-index: 1;
}

.gallery-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.gallery-text .separator {
    width: 60px;
    height: 2px;
    background: var(--text-dark);
    margin-bottom: 25px;
}

.gallery-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    max-width: 100%;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(45, 80, 22, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 1rem;
    color: var(--text-light-muted);
    margin-bottom: 20px;
}

.view-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--accent-light);
    color: var(--text-light);
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Plants Section */
.plants {
    background: var(--secondary-color);
    position: relative;
    overflow: visible;
}

.plants .container {
    position: relative;
    z-index: 10;
}

.plants-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.plants-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0);
    z-index: 2;
    pointer-events: none;
}

.plants-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.plants-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
    min-height: 200px;
    visibility: visible !important;
    opacity: 1 !important;
}

.plant-item {
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.6s ease-out forwards;
    visibility: visible !important;
    display: block !important;
}

.plant-item:nth-child(1) { animation-delay: 0.05s; }
.plant-item:nth-child(2) { animation-delay: 0.1s; }
.plant-item:nth-child(3) { animation-delay: 0.15s; }
.plant-item:nth-child(4) { animation-delay: 0.2s; }
.plant-item:nth-child(5) { animation-delay: 0.25s; }
.plant-item:nth-child(6) { animation-delay: 0.3s; }
.plant-item:nth-child(7) { animation-delay: 0.35s; }
.plant-item:nth-child(8) { animation-delay: 0.4s; }
.plant-item:nth-child(9) { animation-delay: 0.45s; }
.plant-item:nth-child(10) { animation-delay: 0.5s; }
.plant-item:nth-child(11) { animation-delay: 0.55s; }
.plant-item:nth-child(12) { animation-delay: 0.6s; }
.plant-item:nth-child(13) { animation-delay: 0.65s; }
.plant-item:nth-child(14) { animation-delay: 0.7s; }
.plant-item:nth-child(15) { animation-delay: 0.75s; }
.plant-item:nth-child(16) { animation-delay: 0.8s; }
.plant-item:nth-child(17) { animation-delay: 0.85s; }
.plant-item:nth-child(18) { animation-delay: 0.9s; }
.plant-item:nth-child(n+19) { animation-delay: 0.95s; }

.plant-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.plant-image-container {
    position: relative;
    height: 400px;
    min-height: 400px;
    overflow: hidden;
    background: var(--secondary-color);
}

.plant-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95);
}

.plant-item:hover .plant-image-container img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.plant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(45, 80, 22, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.plant-item:hover .plant-overlay {
    opacity: 1;
}

.plant-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.plant-info p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin-bottom: 15px;
}

.view-plant-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--accent-light);
    color: var(--text-light);
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.view-plant-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.plant-details {
    padding: 25px;
}

.plant-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.plant-details p {
    display: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.plant-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: scale(1.1);
}

.action-btn i {
    font-size: 1rem;
}

/* Plants Modal */
.plants-modal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    margin: 5vh auto;
}

.plants-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plants-modal-header {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--text-light);
    padding: 25px 30px;
    text-align: center;
}

.plants-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.plants-modal-header p {
    font-size: 1rem;
    opacity: 0.9;
    display: none;
}

.plants-modal-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--secondary-color);
    overflow: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.plants-modal-body img {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.plants-modal-body img.zoomed {
    transform: scale(2.5);
    cursor: zoom-out;
    max-width: none;
    max-height: none;
}

.plants-modal-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.plants-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.plants-modal-body::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.plants-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

.plants-modal-footer {
    background: var(--text-light);
    padding: 20px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    border-top: 1px solid var(--border-color);
}

.zoom-btn,
.download-btn,
.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.zoom-btn:hover,
.zoom-btn.active,
.download-btn:hover,
.share-btn:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.plants-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.plants-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Experience Section */
.experience-section {
    background: var(--secondary-color);
    padding: 100px 0;
}

.experience-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.experience-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: var(--text-light);
    padding: 100px 0;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.contact-humanization {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-style: italic;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    background: var(--warm-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(74, 124, 89, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--text-light);
}

.item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.item-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.item-small {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.contact-form {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--text-light);
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* Floating Projects Menu */
.floating-projects-menu {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.projects-menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(26, 61, 46, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1001;
}

.projects-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(26, 61, 46, 0.4);
    background: var(--accent-dark);
}

.projects-menu-toggle i {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.floating-projects-menu.active .projects-menu-toggle i {
    transform: rotate(180deg);
}

.projects-menu-dropdown {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(26, 61, 46, 0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.floating-projects-menu.active .projects-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.projects-menu-item {
    display: block;
    padding: 16px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.projects-menu-item:last-child {
    border-bottom: none;
}

.projects-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.projects-menu-item:hover {
    background: var(--warm-color);
    color: var(--primary-color);
    padding-left: 28px;
}

.projects-menu-item:hover::before {
    transform: scaleY(1);
}

.projects-menu-item span {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin-bottom: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.close:hover {
    background: var(--accent-dark);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

#modalImage {
    width: 100%;
    height: auto;
    display: block;
}

.modal-info {
    padding: 30px;
}

.modal-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.modal-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    max-width: 320px;
    width: auto;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-cta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-cta-icon i {
    font-size: 1.2rem;
}

.floating-cta-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.floating-cta-arrow {
    margin-left: auto;
}

.floating-cta-arrow i {
    font-size: 1rem;
}

/* Lead Capture Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
}

.modal-container {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 500px;
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 30px;
    text-align: center;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-content {
    padding: 40px;
}

.modal-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.lead-form .form-group {
    margin-bottom: 20px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--secondary-color);
    transition: var(--transition);
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-items {
        display: none;
    }
    
    .menu-trigger {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        padding: 30px 0 0 0 !important;
    }
    
    .gallery .container {
        padding: 20px 20px 10px 20px !important;
    }
    
    .gallery-header {
        margin-bottom: 20px !important;
    }
    
    .gallery-subtitle {
        margin-bottom: 3px !important;
        font-size: 0.8rem !important;
    }
    
    .gallery-title {
        font-size: 1.8rem !important;
        margin: 0 !important;
    }
    
    .gallery-masonry {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        min-height: 350px !important;
    }
    
    .gallery-item {
        max-width: 95% !important;
    }
    
    .gallery-item-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
        align-items: center !important;
    }
    
    .gallery-image-wrapper {
        max-width: 100% !important;
        padding: 10px !important;
    }
    
    .gallery-item img {
        max-height: 400px !important;
    }
    
    .gallery-text {
        text-align: center !important;
        padding: 0 10px !important;
    }
    
    .gallery-text h3 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .gallery-text p {
        font-size: 1rem !important;
    }
    
    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .carousel-prev {
        left: 10px !important;
    }
    
    .carousel-next {
        right: 10px !important;
    }
    
    .carousel-dots {
        bottom: 20px !important;
        padding: 6px 12px !important;
    }
    
    .carousel-dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .carousel-dot.active {
        width: 20px !important;
    }
    
    .gallery-item:not(:last-child) {
        margin-bottom: 0 !important;
        border-bottom: none !important;
    }
    
    .gallery-carousel-wrapper {
        padding: 0 !important;
        margin: 0 !important;
        margin-bottom: 0 !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    .gallery {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .plants {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .gallery-item {
        max-width: 95% !important;
    }
    
    .gallery-text p {
        text-align: center;
        max-width: 100%;
        margin: 0 !important;
    }
    
    .gallery-text-content {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .plants-grid {
        grid-template-columns: 1fr;
    }
    
    .plants-categories {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .plants-modal .modal-content {
        margin: 2vh auto;
        max-width: 95vw;
        max-height: 96vh;
    }
    
    .plants-modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: calc(100% - 40px);
        width: auto;
        min-width: 280px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .floating-projects-menu {
        bottom: 20px;
        left: 20px;
    }
    
    .projects-menu-toggle {
        width: 50px;
        height: 50px;
    }
    
    .projects-menu-toggle i {
        font-size: 1.2rem;
    }
    
    .projects-menu-dropdown {
        min-width: 180px;
        bottom: 65px;
    }
    
    .projects-menu-item {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .floating-projects-menu {
        bottom: 15px;
        left: 15px;
    }
    
    .projects-menu-toggle {
        width: 48px;
        height: 48px;
    }
    
    .projects-menu-toggle i {
        font-size: 1.1rem;
    }
    
    .projects-menu-dropdown {
        min-width: 160px;
        bottom: 60px;
    }
    
    .projects-menu-item {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    
    .amenity-card,
    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-container {
        margin: 10% auto;
        width: 95%;
    }
}

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .menu-items {
        gap: 20px;
    }
    
    .menu-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .services-grid,
    .gallery-masonry,
    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .location-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Enhancements (768px and below) */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    .nav-logo span {
        font-size: 0.7rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .gallery {
        padding: 30px 0 0 0 !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .gallery .container {
        padding-bottom: 0 !important;
    }
    
    .gallery-carousel-wrapper {
        margin-bottom: 0 !important;
    }
    
    .gallery + .plants,
    .gallery ~ .plants {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .plants {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    section.plants {
        padding-top: 0 !important;
        padding: 0 0 60px 0 !important;
    }
    
    .plants .container {
        padding-top: 0 !important;
    }
    
    .gallery + .plants .container,
    .gallery ~ .plants .container {
        padding-top: 0 !important;
    }
    
    #gallery + #plants {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    #gallery {
        margin-bottom: 0 !important;
    }
    
    #plants {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero {
        min-height: 500px;
        padding-left: 20px;
        height: 100vh;
    }
    
    .hero-video-wrapper {
        width: 100%;
        height: 100%;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        letter-spacing: 1px;
    }
    
    .hero-buttons {
        width: 100%;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .gallery .section-header {
        margin-bottom: 15px !important;
    }
    
    .gallery .section-header.gallery-header {
        margin-bottom: 15px !important;
    }
    
    .plants .section-header {
        margin-bottom: 20px !important;
        padding-top: 0 !important;
    }
    
    #gallery + #plants .section-header {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    #gallery + #plants .container {
        padding-top: 0 !important;
    }
    
    .location-features {
        gap: 15px;
    }
    
    .location-map {
        height: 300px;
    }
    
    .filter-btn,
    .category-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .service-card {
        min-height: 250px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
}

/* Mobile Enhancements (480px and below) */
@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        height: 100vh;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
    
    .hero-title {
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .gallery {
        padding: 25px 0 0 0 !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .gallery .container {
        padding: 15px 15px 0 15px !important;
    }
    
    .gallery-carousel-wrapper {
        margin-bottom: 0 !important;
    }
    
    .plants {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    section.plants {
        padding-top: 0 !important;
        padding: 0 0 40px 0 !important;
    }
    
    .plants .container {
        padding-top: 0 !important;
    }
    
    .gallery + .plants .container,
    .gallery ~ .plants .container {
        padding-top: 0 !important;
    }
    
    #gallery + #plants {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    #gallery {
        margin-bottom: 0 !important;
    }
    
    #plants {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .gallery-header {
        margin-bottom: 15px !important;
    }
    
    .gallery-subtitle {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
    }
    
    .gallery-title {
        font-size: 1.6rem !important;
    }
    
    .gallery-masonry {
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
    }
    
    .gallery-carousel-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .gallery-masonry {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .gallery-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        z-index: auto !important;
    }
    
    .gallery-item.active {
        display: flex !important;
        position: relative !important;
    }
    
    .carousel-btn,
    .carousel-prev,
    .carousel-next {
        display: none !important;
    }
    
    .carousel-dots {
        display: none !important;
    }
    
    .gallery-image-wrapper {
        position: relative !important;
        width: 100% !important;
        min-height: 45vh !important;
        height: 45vh !important;
        max-height: 350px !important;
        margin: 0 !important;
    }
    
    .gallery-item img {
        width: 100% !important;
        height: 100% !important;
    }
    
    .gallery-text {
        width: 100% !important;
        position: relative !important;
    }
    
    .gallery-text {
        padding: 15px 12px 12px 12px !important;
        min-height: 0 !important;
        margin: 0 !important;
    }
    
    .gallery-text h3 {
        font-size: 1.2rem !important;
        margin-bottom: 6px !important;
    }
    
    .gallery-text .separator {
        margin: 8px auto 10px auto !important;
        width: 25px;
    }
    
    .gallery-text p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .services-grid,
    .plants-grid,
    .amenities-grid {
        gap: 15px;
    }
    
    .service-card {
        min-height: 220px;
    }
    
    .service-card-content {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .gallery-item {
        min-height: 220px;
    }
    
    .plant-image-container {
        height: 200px;
    }
    
    .location-map {
        height: 250px;
    }
    
    .map-placeholder i {
        font-size: 2rem;
    }
    
    .map-placeholder p {
        font-size: 1.2rem;
    }
    
    .floating-cta {
        bottom: 10px;
        right: 10px;
        left: auto;
        padding: 12px 15px;
        max-width: calc(100% - 20px);
        width: auto;
        min-width: 250px;
    }
    
    .floating-cta-icon {
        width: 35px;
        height: 35px;
    }
    
    .floating-cta-title {
        font-size: 0.85rem;
    }
    
    .mobile-menu-panel {
        width: 100%;
    }
    
    .mobile-menu-header {
        padding: 60px 20px 30px;
    }
    
    .modal-content,
    .modal-container {
        width: 95%;
    }
    
    .modal-header,
    .modal-content {
        padding: 25px 20px;
    }
}

/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
}
