/* ============================================
   simple&verdeok paisajismo - Custom Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --color-primary: #2d5a27;
    --color-primary-dark: #1e3d1a;
    --color-primary-light: #4a8c42;
    --color-secondary: #8b7355;
    --color-accent: #c4a76c;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #faf9f7;
    --color-bg-light: #f5f3ef;
    --color-white: #ffffff;
    --color-border: #e5e0d8;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ---------- Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--section-padding);
}

/* ---------- Section Headers ---------- */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(45, 90, 39, 0.1);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-badge-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
#mainNav {
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

#mainNav.scrolled {
    background-color: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.brand-simple {
    color: var(--color-dark);
}

.brand-ampersand {
    color: var(--color-accent);
}

.brand-verde {
    color: var(--color-primary);
}

#mainNav:not(.scrolled) .brand-simple,
#mainNav:not(.scrolled) .brand-ampersand {
    color: var(--color-white);
}

.navbar-nav .nav-link {
    color: var(--color-white);
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 4px;
}

#mainNav.scrolled .nav-link {
    color: var(--color-text);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

#mainNav:not(.scrolled) .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
@media (max-width: 991px) {
    #mainNav {
        background-color: var(--color-white);
        padding: 15px 0;
    }
    
    #mainNav .brand-simple,
    #mainNav .brand-ampersand {
        color: var(--color-dark) !important;
    }
    
    .navbar-nav .nav-link {
        color: var(--color-text);
        padding: 12px 16px;
    }
    
    .navbar-collapse {
        background-color: var(--color-white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .btn-whatsapp {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/images/hero.jpg') center/cover no-repeat;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-white);
    text-wrap: balance;
}

.text-highlight {
    color: var(--color-accent);
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background-color: var(--color-white);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content {
    padding-left: 30px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background-color: var(--color-bg-light);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(45, 90, 39, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 991px) {
    .stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        justify-content: center;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .stats-card {
        flex-direction: column;
        gap: 20px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background-color: var(--color-bg-light);
}

.services-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--color-border);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.service-card {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--color-primary-dark);
    gap: 12px;
}

.service-item.hidden {
    display: none;
}

/* ============================================
   DIFFERENTIALS SECTION
   ============================================ */
.differentials-section {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    position: relative;
}

.differentials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-leaves.png') repeat;
    opacity: 0.05;
}

.differentials-section .container {
    position: relative;
    z-index: 2;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.differential-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.differential-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.differential-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.differential-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.differential-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Timeline */
.work-method {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.timeline-content h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex: 0 0 100%;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }
    
    .timeline-number {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background-color: var(--color-white);
}

.gallery-tabs .nav-link {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    margin: 0 5px;
}

.gallery-tabs .nav-link.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.gallery-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--color-white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
}

/* Before/After Slider */
.before-after-card {
    background: var(--color-bg-light);
    border-radius: 16px;
    overflow: hidden;
}

.ba-slider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
}

.ba-label {
    position: absolute;
    bottom: 15px;
    padding: 6px 15px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.ba-before .ba-label {
    left: 15px;
}

.ba-after .ba-label {
    right: 15px;
}

.ba-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--color-white);
    transform: translateX(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-handle i {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ba-info {
    padding: 20px;
    text-align: center;
}

.ba-info h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.ba-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Lightbox */
#lightboxModal .modal-content {
    background: transparent;
}

#lightboxImage {
    max-height: 80vh;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background-color: var(--color-bg-light);
}

.testimonial-card {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.testimonial-stars {
    color: #f5c518;
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background-color: var(--color-white);
}

.contact-card-link {
    display: block;
}

.contact-card {
    background: var(--color-bg-light);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.contact-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    color: var(--color-white);
}

.contact-icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.contact-icon.instagram { background: linear-gradient(135deg, #e1306c, #833ab4); }
.contact-icon.email { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)); }
.contact-icon.location { background: linear-gradient(135deg, var(--color-secondary), #6d5a46); }

.contact-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-action {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-card:hover .contact-action {
    gap: 10px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-light);
    padding: 50px;
    border-radius: 20px;
}

.contact-form-wrapper h3 {
    font-family: var(--font-body);
    font-weight: 600;
}

.form-control,
.form-select {
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 15px;
    font-size: 1rem;
    background-color: var(--color-white);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-floating > label {
    padding: 15px;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo .brand-simple,
.footer-logo .brand-ampersand {
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--color-primary-light);
    font-size: 1.1rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 0.9rem;
    margin: 0;
}

.credits {
    font-size: 0.9rem;
    margin: 0;
}

.credits a {
    color: var(--color-primary-light);
    font-weight: 500;
}

.credits a:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--color-white);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   UTILITIES & RESPONSIVE
   ============================================ */
.bg-light {
    background-color: var(--color-bg-light) !important;
}

/* Reveal animations on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .about-image {
        height: 350px;
    }
    
    .gallery-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
