@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary: #0B6623;
    --primary-dark: #086420;
    --primary-light: #1a8c34;
    --accent-green: #A8D867;
    --text-dark: #1a1a1a;
    --text-gray: #5a5a5a;
    --text-light: #ffffff;
    --border-color: #e8e8e8;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --shadow-light: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-heavy: 0 20px 50px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    color: var(--text-gray);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-light);
    border-bottom-color: transparent;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: subtleBounce 3s ease-in-out infinite;
}

@keyframes subtleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-phone {
    padding: 0.8rem 1.8rem;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-watermark {
    position: absolute;
    width: 600px;
    height: 600px;
    object-fit: contain;
    opacity: 0.25;
    z-index: 2;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: drop-shadow(0 15px 40px rgba(11, 102, 35, 0.2));
}

.hero-decoration {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overline-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary);
    text-transform: uppercase;
}

.overline-bar {
    width: 40px;
    height: 1px;
    background: var(--primary);
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.title-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.title-sub {
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -1px;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.stat {
    padding: 0 2.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.scroll-down span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.scroll-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-top: none;
    border-left: none;
    transform: rotate(-45deg);
    animation: slide 1.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes slide {
    0%, 100% { opacity: 0; transform: rotate(-45deg) translateY(-5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(-45deg) translateY(5px); }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.title-decoration {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

.carousel-wrapper {
    position: relative;
    margin-bottom: 5rem;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: var(--shadow-heavy);
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 3rem 2rem 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.carousel-item.active .carousel-overlay {
    transform: translateY(0);
    opacity: 1;
}

.carousel-overlay p {
    font-size: 1.3rem;
    font-weight: 600;
    color: white !important;
    letter-spacing: 0.5px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control svg {
    width: 24px;
    height: 24px;
}

.carousel-control.prev {
    left: 1.5rem;
}

.carousel-control.next {
    right: 1.5rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.6);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

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

.gallery-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out backwards;
}

.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.2s; }
.gallery-card:nth-child(3) { animation-delay: 0.3s; }

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #000;
}

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

.gallery-card:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-overlay-expand {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 102, 35, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover .gallery-overlay-expand {
    opacity: 1;
}

.expand-icon {
    font-size: 2.5rem;
    color: white;
    animation: expandPulse 0.4s ease;
}

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

.gallery-info {
    padding: 1.5rem;
    text-align: center;
}

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

.gallery-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.stat-plus,
.stat-percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-left: 0.3rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.stat-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    animation: fadeInUp 0.8s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.1s; }
.service-card:nth-child(5) { animation-delay: 0.2s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-medium);
    transform: translateY(-8px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 8rem 2rem;
    background: white;
}

.pricing-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: var(--text-gray);
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: white;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.1s; }

.pricing-card.hidden {
    display: none;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.pricing-header h3 {
    font-size: 1.4rem;
}

.price-badge {
    padding: 0.4rem 0.8rem;
    background: var(--border-color);
    color: var(--text-gray);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-badge.premium {
    background: var(--accent-green);
    color: var(--text-dark);
}

.pricing-card.featured .price-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.pricing-body {
    margin-bottom: 2rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-card.featured .price-main {
    color: var(--accent-green);
}

.price-desc {
    font-size: 0.9rem;
    font-weight: 500;
}

.price-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.pricing-card.featured .price-divider {
    border-top-color: rgba(255,255,255,0.2);
}

.price-extra {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 0.95rem;
}

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

.pricing-card.featured .price-value {
    color: var(--accent-green);
}

.price-features {
    list-style: none;
    padding: 1rem 0;
}

.price-features li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.pricing-card.featured .price-features li {
    color: rgba(255,255,255,0.8);
}

.payment-info {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.payment-info h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-method {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.location-text {
    animation: fadeInUp 0.8s ease-out;
}

.location-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.location-main {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.location-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.2;
}

.location-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-item a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s ease;
}

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

.location-visual {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.map-link {
    text-decoration: none;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.map-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.map-link:hover .map-container {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(11, 102, 35, 0.25);
}

.map-icon-large {
    width: 100%;
    height: 100%;
    display: block;
}

.map-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 102, 35, 0.95), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.map-link:hover .map-info-overlay {
    transform: translateY(0);
    opacity: 1;
}

.map-info-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.map-info-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0.3rem 0;
}

.map-click-hint {
    font-size: 0.85rem !important;
    color: var(--accent-green) !important;
    margin-top: 1rem;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(20px) translateY(20px); }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 8rem 2rem;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    animation: fadeInUp 0.8s ease-out backwards;
}

.contact-info-cards .info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-cards .info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-cards .info-card:nth-child(3) { animation-delay: 0.1s; }
.contact-info-cards .info-card:nth-child(4) { animation-delay: 0.2s; }

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-light);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.info-card a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-dark);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

.form-group input,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 102, 35, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.btn-submit {
    margin-top: 0.5rem;
}

.whatsapp-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #25D366, #20ba58);
    border-radius: 8px;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.whatsapp-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white !important;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    color: #25D366;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 16px rgba(11, 102, 35, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
    .hero-watermark {
        width: 350px;
        height: 350px;
        left: 50%;
        transform: translateX(-50%);
        top: 5%;
        opacity: 0.2;
    }

    .navbar-container {
        padding: 0.8rem 1rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .brand-text {
        font-size: 0.75rem;
    }

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

    .title-sub {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

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

    .services-grid,
    .pricing-grid,
    .contact-wrapper,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .carousel-control {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-image {
    max-width: 85vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 10px;
}

.lightbox-nav.next {
    right: 10px;
}

.lightbox-info {
    color: white;
    text-align: center;
    font-size: 1rem;
    max-width: 85vw;
}

.lightbox-title {
    color: white !important;
    font-weight: 600;
}

@media (max-width: 480px) {
    .title-main {
        font-size: 1.8rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .pricing-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .nav-menu {
        display: none;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 60vh;
    }
}