/* Eden Park By Dror - Custom Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

iframe {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    /* Minimalist Color Palette - Black & White Focused */
    --primary-color: #000000; /* Black */
    --secondary-color: #ffffff; /* White */
    --accent-color: #000000; /* Black */
    --accent-light: #ffffff; /* White */
    --accent-dark: #1a1a1a; /* Dark Gray */
    --warm-color: #f5f5f5; /* Light Gray */
    --warm-light: #ffffff; /* White */
    --text-light: #ffffff;
    --text-dark: #000000; /* Black */
    --text-muted: #666666;
    --text-light-muted: rgba(255, 255, 255, 0.9);
    --border-color: #e5e5e5;
    --border-light: rgba(255, 255, 255, 0.2);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 10px 30px rgba(0, 0, 0, 0.2);
    --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: transparent;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Touch optimization */
* {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

button, a, input, textarea, select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Navbar */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.navbar-modern.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 3px;
}

.navbar-logo span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 3px;
    letter-spacing: 2px;
    font-weight: 300;
}

.navbar-actions {
    display: flex;
    gap: 40px;
    align-items: center;
}

.navbar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-light);
    transition: width 0.3s ease;
}

.navbar-link:hover {
    color: var(--text-light);
}

.navbar-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent !important;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: transparent !important;
    border: none;
    outline: none;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    transform: none;
    pointer-events: none;
    z-index: -1;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: block;
}

iframe#hero-video {
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: block;
    width: 100vw !important;
    height: 100vh !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.video-overlay-youtube {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: transparent;
}

/* Overlay to cover YouTube controls area */
.video-wrapper::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    z-index: 1;
    pointer-events: none;
}

.video-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    z-index: 1;
    pointer-events: none;
}

/* Hide all YouTube UI elements */
.ytp-chrome-top,
.ytp-title,
.ytp-watermark,
.ytp-pause-overlay,
.ytp-gradient-top,
.ytp-gradient-bottom,
.ytp-show-cards-title,
.ytp-chrome-bottom,
.ytp-chrome-controls,
.ytp-left-controls,
.ytp-right-controls,
.ytp-pause-button,
.ytp-play-button,
.ytp-volume-panel,
.ytp-time-display,
.ytp-progress-bar-container,
.ytp-progress-bar,
.ytp-scroll-min,
.ytp-scroll-max,
.ytp-settings-button,
.ytp-fullscreen-button,
.ytp-impression-link,
.ytp-watch-later-button,
.ytp-share-button,
.ytp-overflow-button,
.ytp-endscreen-content,
.ytp-cards-teaser,
.ytp-ce-element,
.ytp-ce-shadow,
.ytp-ce-size-1920,
.ytp-ce-size-1280,
.ytp-ce-size-853,
.ytp-ce-size-640,
.ytp-ce-size-426,
.ytp-ce-size-256,
.ytp-ce-size-128,
.ytp-ce-size-64,
.ytp-ce-size-32,
.ytp-ce-size-16,
.ytp-ce-size-8,
.ytp-ce-size-4,
.ytp-ce-size-2,
.ytp-ce-size-1,
.ytp-ce-element-show,
.ytp-ce-element-hide,
.ytp-ce-covering-overlay,
.ytp-ce-covering-image,
.ytp-ce-shadow,
.ytp-ce-shadow-show,
.ytp-ce-shadow-hide,
.ytp-ce-covering-icon,
.ytp-ce-size-1920 .ytp-ce-shadow,
.ytp-ce-size-1280 .ytp-ce-shadow,
.ytp-ce-size-853 .ytp-ce-shadow,
.ytp-ce-size-640 .ytp-ce-shadow,
.ytp-ce-size-426 .ytp-ce-shadow,
.ytp-ce-size-256 .ytp-ce-shadow,
.ytp-ce-size-128 .ytp-ce-shadow,
.ytp-ce-size-64 .ytp-ce-shadow,
.ytp-ce-size-32 .ytp-ce-shadow,
.ytp-ce-size-16 .ytp-ce-shadow,
.ytp-ce-size-8 .ytp-ce-shadow,
.ytp-ce-size-4 .ytp-ce-shadow,
.ytp-ce-size-2 .ytp-ce-shadow,
.ytp-ce-size-1 .ytp-ce-shadow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Additional CSS to hide YouTube elements */
#movie_player > div,
#movie_player > div > div,
.ytp-chrome-top,
.ytp-chrome-bottom,
.ytp-chrome-controls,
.ytp-left-controls,
.ytp-right-controls {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: transparent !important;
    border: none;
    outline: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    text-align: left;
    color: var(--text-light);
    z-index: 10;
    max-width: 1200px;
    padding: 0 40px;
    pointer-events: auto;
    position: relative;
    margin-top: 100px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
    line-height: 1.1;
}

.title-main {
    display: block;
    font-size: 5.5rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    font-family: 'Inter', sans-serif;
}

.hero-info {
    display: flex;
    gap: 60px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
    letter-spacing: 2px;
}

.hero-attraction {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light-muted);
    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: center;
    flex-wrap: wrap;
}

.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);
}

/* Modern Section Styles */
.section-header-modern {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: 2px;
}

/* About Section Modern */
.about-section {
    background: var(--text-light);
    padding: 120px 0;
}

.about-content-modern {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.detail-value {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.about-cta-wrapper {
    margin-top: 80px;
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.cta-button-about {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-about::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-about:hover::before {
    left: 100%;
}

.cta-button-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--accent-dark);
}

.cta-button-about i {
    font-size: 1.3rem;
}

/* Gallery Section Modern */
.gallery-section-modern {
    background: var(--warm-color);
    padding: 120px 0;
}

.gallery-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Leisure Card Styles - Alternating Layout */
.leisure-card {
    background: var(--text-light);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.leisure-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.leisure-card:nth-child(even) > * {
    direction: ltr;
}

.leisure-card:nth-child(1) { animation-delay: 0.1s; }
.leisure-card:nth-child(2) { animation-delay: 0.2s; }
.leisure-card:nth-child(3) { animation-delay: 0.3s; }
.leisure-card:nth-child(4) { animation-delay: 0.4s; }
.leisure-card:nth-child(5) { animation-delay: 0.5s; }
.leisure-card:nth-child(6) { animation-delay: 0.6s; }
.leisure-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leisure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    z-index: 2;
    transition: width 0.6s ease;
}

.leisure-card:nth-child(even)::before {
    left: auto;
    right: 0;
}

.leisure-card:hover::before {
    width: 8px;
}

.leisure-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.leisure-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    cursor: pointer;
    background: var(--warm-color);
}

.leisure-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%);
    z-index: 1;
    transition: opacity 0.6s ease;
}

.leisure-card:hover .leisure-card-image::after {
    opacity: 0;
}

.leisure-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.leisure-card:hover .leisure-card-image img {
    transform: scale(1.15) rotate(2deg);
    filter: grayscale(0%);
}

.leisure-card-content {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    position: relative;
    background: var(--text-light);
}

.leisure-card-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.leisure-card-number {
    position: absolute;
    top: 60px;
    left: 80px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: 0;
}

.leisure-card:nth-child(even) .leisure-card-number {
    left: auto;
    right: 80px;
}

.leisure-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.leisure-card:hover .leisure-card-title {
    color: var(--primary-color);
}

.leisure-card-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin: 0;
    font-weight: 300;
    position: relative;
    z-index: 1;
    max-width: 90%;
}

.leisure-card:nth-child(even) .leisure-card-description {
    margin-left: auto;
    margin-right: 0;
}

.leisure-card-divider {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 10px 0;
    transition: width 0.6s ease;
    position: relative;
    z-index: 1;
}

.leisure-card:hover .leisure-card-divider {
    width: 100px;
}

/* Plants Section Modern */
.plants-section-modern {
    background: var(--text-light);
    padding: 120px 0;
}

.plants-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.plant-card-modern {
    background: var(--text-light);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.plant-card-modern:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.plant-card-modern:nth-child(even) > * {
    direction: ltr;
}

.plant-card-modern:nth-child(1) { animation-delay: 0.2s; }
.plant-card-modern:nth-child(2) { animation-delay: 0.4s; }

.plant-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    z-index: 2;
    transition: width 0.6s ease;
}

.plant-card-modern:nth-child(even)::before {
    left: auto;
    right: 0;
}

.plant-card-modern:hover::before {
    width: 8px;
}

.plant-card-modern:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.plant-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    cursor: pointer;
    background: var(--warm-color);
}

.plant-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%);
    z-index: 1;
    transition: opacity 0.6s ease;
}

.plant-card-modern:hover .plant-card-image::after {
    opacity: 0;
}

.plant-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--warm-color);
    padding: 20px;
}

.plant-card-modern:hover .plant-card-image img {
    transform: scale(1.05);
}

.plant-card-content {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    position: relative;
    background: var(--text-light);
}

.plant-card-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.plant-card-number {
    position: absolute;
    top: 60px;
    left: 80px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: 0;
}

.plant-card-modern:nth-child(even) .plant-card-number {
    left: auto;
    right: 80px;
}

.plant-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
    line-height: 1.3;
    word-wrap: break-word;
}

.plant-card-modern:hover .plant-card-title {
    color: var(--primary-color);
}

.plant-card-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin: 0;
    font-weight: 300;
    position: relative;
    z-index: 1;
    max-width: 90%;
}

.plant-card-modern:nth-child(even) .plant-card-description {
    margin-left: auto;
    margin-right: 0;
}

.plant-card-divider {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 10px 0;
    transition: width 0.6s ease;
    position: relative;
    z-index: 1;
}

.plant-card-modern:hover .plant-card-divider {
    width: 100px;
}

.plant-view-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    max-width: fit-content;
}

.plant-view-button:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateX(5px);
}

.plant-view-button i {
    transition: transform 0.4s ease;
}

.plant-view-button:hover i {
    transform: translateX(5px);
}


/* Attraction Section Modern */
.attraction-section-modern {
    background: var(--primary-color);
    padding: 120px 0;
    text-align: center;
}

.attraction-content {
    max-width: 900px;
    margin: 0 auto;
}

.attraction-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.3;
}

.attraction-text-modern {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Contact Form Section Modern */
.contact-form-section-modern {
    background: var(--text-light);
    padding: 120px 0;
}

.form-wrapper-modern {
    max-width: 700px;
    margin: 0 auto;
}

.form-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 2px;
}

.form-subtitle-modern {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 300;
}

.form-humanization {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 300;
}

.corretora-photo-wrapper {
    text-align: center;
    margin: 40px 0 60px 0;
}

.corretora-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.corretora-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Profile Card */
.profile-card {
    background: #e8f5e9;
    border-radius: 16px;
    padding: 25px 30px;
    margin: 60px auto 60px;
    max-width: 650px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.profile-card-image {
    flex-shrink: 0;
    position: relative;
}

.profile-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-photo-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-photo-placeholder i {
    font-size: 3rem;
    color: #4caf50;
}

.profile-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.profile-profession {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.profile-creci {
    font-size: 0.85rem;
    color: #000000;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.profile-specialization {
    font-size: 0.9rem;
    color: #000000;
    margin: 0;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: 4px;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.form-input-modern {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-input-modern:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-btn-modern:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.submit-btn-modern i {
    font-size: 1rem;
}

/* Modal Modern */
.modal-modern {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease-out;
}

.modal-content-modern {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96%;
}

.modal-content-modern img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-close-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    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: var(--transition);
    backdrop-filter: blur(10px);
    min-width: 44px;
    min-height: 44px;
}

/* Modal mobile optimization */
@media (max-width: 768px) {
    .modal-modern {
        padding: 10px;
    }
    
    .modal-content-modern {
        margin: 5% auto;
        width: 95%;
        max-width: 100%;
        height: 90%;
    }
    
    .modal-content-modern img {
        max-height: 90vh;
    }
    
    .modal-close-modern {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}

.modal-close-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* 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: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: 600;
}

.text-block p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.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;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* 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: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-light);
}

.service-card:hover .service-card-content {
    transform: scale(1.1);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon i {
    color: var(--text-light);
    transform: scale(1.1);
}

.service-card:hover h3 {
    color: var(--text-light);
    transform: translateY(-10px);
}

.service-card:hover .service-summary {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
    margin: 0;
}

.service-card:hover .service-details {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    margin-top: 20px;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: all 0.6s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
    position: relative;
}

.service-summary {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 50px;
    overflow: hidden;
    margin-bottom: 0;
}

.service-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.service-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Gallery Section */
.gallery {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.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;
}


/* Carousel Styles - Minimalist */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 3;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    overflow: visible;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 60px 0;
}

.carousel-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    transition: opacity 0.4s ease;
    display: block;
    margin: 0 auto;
}

.carousel-item:hover img {
    opacity: 0.9;
}

.carousel-overlay {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--text-dark);
    opacity: 0.4;
}

.carousel-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-btn i {
    font-size: 1.2rem;
    font-weight: 300;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    z-index: 3;
    position: relative;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 3px;
}

.carousel-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Plants Section */
.plants {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.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;
}


.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 3;
}

.plant-item {
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}


.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: 250px;
    overflow: hidden;
}

.plant-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plant-item:hover .plant-image-container img {
    transform: scale(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 {
    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;
}

.plants-modal-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--secondary-color);
}

.plants-modal-body img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.plants-modal-footer {
    background: var(--text-light);
    padding: 20px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    border-top: 1px solid var(--border-color);
}

.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);
}

.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);
}

/* 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 60px;
    line-height: 1.8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.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(0, 0, 0, 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(0, 0, 0, 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(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 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;
    border: 1px solid var(--border-color);
}

.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(--primary-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.85);
    animation: fadeIn 0.3s ease-out;
}

.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);
}

.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: 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: 300px;
}

.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);
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
    
    /* Optimize images */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Navbar mobile optimization */
    .navbar-container {
        padding: 12px 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-logo h2 {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
    
    .navbar-logo span {
        font-size: 0.7rem;
    }
    
    .navbar-actions {
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .navbar-link {
        font-size: 0.75rem;
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Hero section mobile */
    .hero-content {
        padding: 0 15px;
        text-align: center;
        margin-top: 120px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .title-main {
        font-size: 2.5rem;
        letter-spacing: 2px;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    
    .title-sub {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .hero-info {
        justify-content: center;
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .info-label {
        font-size: 0.7rem;
    }
    
    .info-value {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        text-align: center;
        margin: 0 auto 30px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* Section headers */
    .section-header-modern {
        margin-bottom: 50px;
    }
    
    .section-label {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    /* Sections padding */
    .about-section,
    .gallery-section-modern,
    .plants-section-modern,
    .attraction-section-modern,
    .contact-form-section-modern {
        padding: 60px 0;
    }
    
    /* About section */
    .about-content-modern {
        padding: 0 10px;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }
    
    .detail-value {
        font-size: 1.6rem;
    }
    
    .about-cta-wrapper {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .cta-button-about {
        padding: 18px 35px;
        font-size: 1rem;
        min-height: 50px;
    }
    
    /* Service cards */
    .service-card {
        min-height: 250px;
    }
    
    .service-card-content {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-summary,
    .service-details p {
        font-size: 0.9rem;
    }
    
    /* Plant cards mobile */
    .plant-card-modern {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 40px;
    }
    
    .plant-card-modern:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .plant-card-image {
        min-height: 300px;
        order: 1;
    }
    
    .plant-card-content {
        padding: 30px 20px;
        order: 2;
    }
    
    .plant-card-number {
        top: 25px;
        left: 20px;
        font-size: 3rem;
    }
    
    .plant-card-modern:nth-child(even) .plant-card-number {
        right: auto;
        left: 20px;
    }
    
    .plant-card-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .plant-card-description {
        font-size: 0.95rem;
        max-width: 100%;
        line-height: 1.7;
    }
    
    .plant-card-modern:nth-child(even) .plant-card-description {
        margin-left: 0;
    }
    
    .plant-view-button {
        padding: 14px 28px;
        font-size: 0.9rem;
        min-height: 44px;
        margin-top: 15px;
    }
    
    /* Gallery cards mobile */
    .gallery-grid-modern {
        gap: 0;
    }
    
    .leisure-card {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 40px;
    }
    
    .leisure-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .leisure-card-image {
        min-height: 300px;
        order: 1;
    }
    
    .leisure-card-content {
        padding: 30px 20px;
        order: 2;
    }
    
    .leisure-card-number {
        top: 25px;
        left: 20px;
        font-size: 3rem;
    }
    
    .leisure-card:nth-child(even) .leisure-card-number {
        right: auto;
        left: 20px;
    }
    
    .leisure-card-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .leisure-card-description {
        font-size: 0.95rem;
        max-width: 100%;
        line-height: 1.7;
    }
    
    .leisure-card:nth-child(even) .leisure-card-description {
        margin-left: 0;
    }
    
    /* Attraction section mobile */
    .attraction-section-modern {
        padding: 50px 0;
    }
    
    .attraction-title {
        font-size: 1.75rem;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .attraction-text-modern {
        font-size: 1rem;
        padding: 0 15px;
        line-height: 1.7;
    }
    
    /* Contact form section mobile */
    .form-wrapper-modern {
        padding: 0 10px;
    }
    
    .form-title-modern {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .form-subtitle-modern {
        font-size: 1rem;
    }
    
    .form-humanization {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-top: 15px;
    }
    
    /* Contact form inputs mobile */
    .contact-form-modern {
        gap: 25px;
    }
    
    .form-group-modern {
        gap: 8px;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    .form-input-modern {
        padding: 14px 0;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .submit-btn-modern {
        padding: 16px 30px;
        font-size: 0.95rem;
        min-height: 50px;
        margin-top: 15px;
    }
    
    .corretora-photo {
        width: 150px;
        height: 150px;
    }
    
    .corretora-photo-wrapper {
        margin: 30px 0 50px 0;
    }
    
    /* Profile card mobile */
    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        margin: 40px auto 40px;
        gap: 20px;
        max-width: 95%;
    }
    
    .profile-photo,
    .profile-photo-placeholder {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .profile-photo-placeholder i {
        font-size: 2.5rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-profession {
        font-size: 0.9rem;
    }
    
    .profile-creci {
        font-size: 0.8rem;
    }
    
    .profile-specialization {
        font-size: 0.85rem;
        margin-top: 6px;
    }
    
    .form-humanization {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .images-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .attraction-section {
        padding: 60px 0;
    }
    
    .attraction-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .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;
    }
    
    .carousel-item {
        padding: 40px 0;
    }
    
    .carousel-item img {
        max-width: 100%;
        max-height: 70vh;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        opacity: 0.5;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
    
    /* Floating projects menu mobile */
    .floating-projects-menu {
        bottom: 15px;
        left: 15px;
    }
    
    .projects-menu-toggle {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
    
    .projects-menu-toggle i {
        font-size: 1.2rem;
    }
    
    .projects-menu-dropdown {
        min-width: 180px;
        bottom: 65px;
        left: 0;
    }
    
    .projects-menu-item {
        padding: 16px 20px;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .carousel-dots {
        margin-top: 30px;
    }
    
    .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: 20px;
        max-width: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Navbar extra small */
    .navbar-container {
        padding: 10px 12px;
    }
    
    .navbar-logo h2 {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .navbar-logo span {
        font-size: 0.65rem;
    }
    
    .navbar-actions {
        gap: 12px;
    }
    
    .navbar-link {
        font-size: 0.7rem;
        padding: 6px 0;
    }
    
    /* Hero extra small */
    .hero-content {
        padding: 0 12px;
        margin-top: 100px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        margin-bottom: 15px;
    }
    
    .title-main {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
    
    .title-sub {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .hero-info {
        gap: 25px;
        margin-bottom: 20px;
    }
    
    .info-label {
        font-size: 0.65rem;
    }
    
    .info-value {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 5px;
        margin-bottom: 25px;
    }
    
    /* Sections extra small */
    .section-header-modern {
        margin-bottom: 40px;
    }
    
    .section-label {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-section,
    .gallery-section-modern,
    .plants-section-modern,
    .attraction-section-modern,
    .contact-form-section-modern {
        padding: 50px 0;
    }
    
    /* Cards extra small */
    .leisure-card-image,
    .plant-card-image {
        min-height: 250px;
    }
    
    .leisure-card-content,
    .plant-card-content {
        padding: 25px 15px;
    }
    
    .leisure-card-number,
    .plant-card-number {
        top: 20px;
        left: 15px;
        font-size: 2.5rem;
    }
    
    .leisure-card-title,
    .plant-card-title {
        font-size: 1.4rem;
    }
    
    .leisure-card-description,
    .plant-card-description {
        font-size: 0.9rem;
    }
    
    /* Form extra small */
    .form-title-modern {
        font-size: 1.75rem;
    }
    
    .form-subtitle-modern {
        font-size: 0.95rem;
    }
    
    .form-humanization {
        font-size: 0.85rem;
    }
    
    .form-input-modern {
        font-size: 0.9rem;
        padding: 12px 0;
    }
    
    .submit-btn-modern {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
    
    /* Profile card extra small */
    .profile-card {
        padding: 20px 15px;
        margin: 30px auto;
    }
    
    .profile-photo,
    .profile-photo-placeholder {
        width: 90px;
        height: 90px;
    }
    
    .profile-name {
        font-size: 1.3rem;
    }
    
    .profile-profession {
        font-size: 0.85rem;
    }
    
    .profile-creci {
        font-size: 0.75rem;
    }
    
    .profile-specialization {
        font-size: 0.8rem;
    }
    
    /* Floating menu extra small */
    .floating-projects-menu {
        bottom: 12px;
        left: 12px;
    }
    
    .projects-menu-toggle {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
    
    .projects-menu-toggle i {
        font-size: 1.1rem;
    }
    
    .projects-menu-dropdown {
        min-width: 160px;
        bottom: 60px;
    }
    
    .projects-menu-item {
        padding: 14px 18px;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    /* Modal extra small */
    .modal-content-modern {
        margin: 3% auto;
        width: 98%;
        height: 94%;
    }
    
    .modal-close-modern {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Attraction extra small */
    .attraction-title {
        font-size: 1.5rem;
        padding: 0 12px;
    }
    
    .attraction-text-modern {
        font-size: 0.95rem;
        padding: 0 12px;
    }
    
    /* CTA button extra small */
    .cta-button-about {
        padding: 16px 30px;
        font-size: 0.95rem;
    }
    
    .featured-images {
        padding: 60px 0;
    }
    
    .images-container {
        gap: 20px;
        padding: 0 15px;
    }
    
    .gallery-grid-modern {
        gap: 0;
    }
    
    .leisure-card {
        margin-bottom: 40px;
    }
    
    .leisure-card-image {
        min-height: 300px;
    }
    
    .leisure-card-content {
        padding: 30px 20px;
    }
    
    .leisure-card-number {
        top: 30px;
        left: 20px;
        font-size: 3rem;
    }
    
    .leisure-card:nth-child(even) .leisure-card-number {
        right: auto;
        left: 20px;
    }
    
    .leisure-card-title {
        font-size: 1.5rem;
    }
    
    .leisure-card-description {
        font-size: 0.9rem;
    }
    
    .plant-card-modern {
        margin-bottom: 40px;
    }
    
    .plant-card-image {
        min-height: 300px;
    }
    
    .plant-card-content {
        padding: 30px 20px;
    }
    
    .plant-card-number {
        top: 30px;
        left: 20px;
        font-size: 3rem;
    }
    
    .plant-card-modern:nth-child(even) .plant-card-number {
        right: auto;
        left: 20px;
    }
    
    .plant-card-title {
        font-size: 1.5rem;
    }
    
    .plant-card-description {
        font-size: 0.9rem;
    }
    
    .plant-view-button {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .attraction-section {
        padding: 50px 0;
    }
    
    .attraction-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .contact-form-section {
        padding: 50px 0;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 25px;
        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;
    }
    
    .amenity-card,
    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-container {
        margin: 10% auto;
        width: 95%;
    }
    
    .carousel-item {
        padding: 30px 0;
    }
    
    .carousel-item img {
        max-width: 100%;
        max-height: 60vh;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        opacity: 0.5;
    }
    
    .carousel-btn i {
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        margin-top: 25px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 5px;
        height: 5px;
    }
    
    .carousel-dot.active {
        width: 16px;
    }
}
