/* Global Styles */
:root {
    --primary-color: rgb(21, 29, 18);
    --secondary-color: #333;
    --accent-color: rgb(21, 29, 18);
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --white-color: #ffffff;
    --black-color: #000000;
    --gray-color: #6c757d;
    --transition: all 0.3s ease;
}

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

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

html,
body {
    max-width: 100%;
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
        overflow-x: clip;
    }

    body > * {
        max-width: 100%;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: rgb(21, 29, 18);
}

.text-primary {
    color: rgb(21, 29, 18) !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

section {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 8px 0;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #ececec;
    z-index: 1030;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
    padding: 6px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-brand img {
    margin-right: 0;
    height: auto;
    width: auto;
    max-height: 50px;
    transition: var(--transition);
}

.navbar-toggler {
    border: 0;
}

.navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(21,29,18,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon {
    background-image: none;
    position: relative;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon::before {
    content: 'X';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(21, 29, 18, 0.95);
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white-color);
}

.brand-highlight {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    color: rgb(21, 29, 18);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    border-radius: 10px;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: rgb(22, 82, 57);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible {
    color: rgb(22, 82, 57);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

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

@media (min-width: 992px) {
    .navbar .container {
        max-width: 1120px;
        justify-content: center;
    }

    .navbar-brand {
        margin-right: 76px;
    }

    .navbar-collapse {
        flex-grow: 0;
        justify-content: center;
    }

    .navbar-nav.ms-auto {
        margin-left: 0 !important;
    }

    .navbar-nav .nav-link {
        margin: 0 14px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    min-height: calc(100svh - 80px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--white-color);
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-mobile {
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.hero-buttons .btn {
    margin: 0 !important;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-color);
}

.hero-highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--white-color);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.92);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition), box-shadow 0.25s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 0 0 999px rgba(22, 82, 57, 0.18), 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:focus-visible {
    box-shadow: inset 0 0 0 999px rgba(22, 82, 57, 0.18), 0 0 0 0.2rem rgba(22, 82, 57, 0.28);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Services Section */
.service-card {
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description-highlight {
    font-weight: 700;
    color: rgb(21, 29, 18);
}

.service-materials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.service-materials span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e1e1e1;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    font-weight: 700;
    text-align: center;
}

.services-section .section-subtitle {
    margin-bottom: 20px;
}

.services-section .service-card {
    padding: 26px 20px;
}

.services-section .service-icon {
    margin-bottom: 16px;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item video,
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-section {
    padding-top: clamp(1.75rem, 2.2vw, 2.25rem) !important;
    padding-bottom: clamp(1.75rem, 2.2vw, 2.25rem) !important;
}

.gallery-feature-layout {
    --gallery-feature-gap: 0.55rem;
    --gallery-stack-item-height: clamp(82px, 8.5vh, 98px);
    align-items: stretch;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-feature-layout > [class*="col-"] {
    display: flex;
}

.gallery-feature-video-col,
.gallery-feature-stack-col {
    display: flex;
}

body.home-impact .gallery-feature-layout .gallery-feature-video-col .gallery-item-vertical-video {
    width: 100%;
    height: calc(var(--gallery-stack-item-height) * 2 + var(--gallery-feature-gap));
}

.gallery-right-stack {
    width: 100%;
    margin: 0;
    row-gap: var(--gallery-feature-gap);
}

.gallery-right-stack > .col-12 {
    display: flex;
    padding: 0;
}

body.home-impact .gallery-feature-layout .gallery-right-stack .gallery-item {
    flex: 1;
    width: 100%;
    height: var(--gallery-stack-item-height);
}

.gallery-feature-layout .gallery-overlay {
    padding: 8px;
}

.gallery-feature-layout .gallery-overlay h3 {
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.gallery-feature-layout .gallery-overlay p {
    font-size: 0.72rem;
    line-height: 1.25;
    margin-bottom: 0;
}

.gallery-item-vertical-video {
    background: #111111;
}

.gallery-item-vertical-video .gallery-video {
    object-fit: cover;
    object-position: center;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.gallery-item:hover video,
.gallery-item:hover .gallery-video {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    padding: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

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

/* Map & CTA Section */
.map-cta-section {
    background: var(--light-color);
}

.reviews-marquee-section {
    background: linear-gradient(180deg, #f7f8f8 0%, #eef2f1 100%);
    overflow: hidden;
}

.reviews-marquee {
    overflow: hidden;
    padding: 0 0 6px;
}

.reviews-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: reviews-scroll 34s linear infinite;
    will-change: transform;
}

.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

.review-card {
    width: 260px;
    min-height: 150px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 14px 14px 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: #f5b301;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.45;
    color: #1f2937;
    margin-bottom: 10px;
}

.review-meta strong {
    display: block;
    color: #111827;
    font-size: 0.88rem;
}

.review-meta span {
    color: #5b6472;
    font-size: 0.8rem;
}

@keyframes reviews-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 7px));
    }
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coverage-list {
    list-style: none;
    padding-left: 0;
}

.coverage-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.coverage-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.parallax-divider {
    position: relative;
    height: 88vh;
    min-height: 520px;
    overflow: clip;
    background: #111111;
}

.parallax-divider-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.parallax-divider-media {
    position: absolute;
    inset: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/equipo-trabajando.jpeg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.parallax-divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 29, 18, 0.18) 0%, rgba(21, 29, 18, 0.52) 100%);
    z-index: 1;
}

/* Guarantees Section */
.guarantee-card {
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* About Page Styles */
.about-hero-section {
    position: relative;
    min-height: calc(100vh - 56px);
    min-height: calc(100svh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    color: var(--white-color);
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.9)), url('../assets/images/equipo trabajando.png');
    background-size: cover;
    background-position: center;
}

.about-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.7vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--white-color);
}

.about-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.92);
}

.story-image,
.budget-image {
    max-width: 620px;
}

.story-image img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.material-item {
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.material-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.material-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.material-name {
    font-size: 1.3rem;
}

.budget-factors {
    list-style: none;
    padding-left: 0;
}

.budget-factors li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.budget-factors i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 25px;
}

.budget-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9f7 100%);
}

.faq-about-header {
    margin-bottom: 30px;
}

.faq-about-subtitle {
    max-width: 820px;
    margin: 10px auto 0;
    color: #3d4a40;
}

.faq-about-accordion {
    border-radius: 14px;
    overflow: hidden;
}

.faq-item {
    border: 1px solid rgba(21, 29, 18, 0.15);
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(21, 29, 18, 0.06);
}

.faq-item .accordion-button {
    font-family: 'Manrope', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: rgb(21, 29, 18);
    background-color: #ffffff;
    padding: 18px 20px;
}

.faq-item .accordion-button:not(.collapsed) {
    background: #edf2ee;
    color: rgb(21, 29, 18);
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(21, 29, 18, 0.2);
}

.faq-item .accordion-button::after {
    filter: hue-rotate(35deg) saturate(1.5);
}

.faq-item .accordion-body {
    font-family: 'Manrope', sans-serif;
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2d3a2f;
    background: #ffffff;
    padding: 18px 20px 22px;
}

/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    min-height: calc(100vh - 56px);
    min-height: calc(100svh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    color: var(--white-color);
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/Handies.png');
    background-size: cover;
    background-position: center;
}

.contact-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.7vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--white-color);
}

.contact-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.92);
}

.hero-section .hero-highlight,
.about-hero-title .hero-highlight,
.contact-hero-title .hero-highlight {
    color: #ffffff;
}

.contact-info-card {
    background: var(--white-color);
}

.contact-icons-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
}

.contact-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid rgba(21, 29, 18, 0.18);
    color: rgb(21, 29, 18);
    font-size: 2rem;
    transition: var(--transition);
}

.contact-icon-link:hover {
    background: rgb(21, 29, 18);
    color: #ffffff;
    border-color: rgb(21, 29, 18);
    transform: translateY(-4px);
}

.contact-method {
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--light-color);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-form-card {
    background: var(--white-color);
}

.contact-form-card .btn-primary {
    background: rgb(22, 82, 57);
    border-color: rgb(22, 82, 57);
    color: #ffffff;
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.18);
}

.contact-form-card .btn-primary:hover,
.contact-form-card .btn-primary:focus-visible {
    background: rgb(18, 66, 46);
    border-color: rgb(18, 66, 46);
    color: #ffffff;
    box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.14), 0 10px 20px rgba(0, 0, 0, 0.2);
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.coverage-area {
    padding: 20px;
    border-radius: 8px;
    background: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.coverage-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.coverage-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #ffffff;
    color: rgb(21, 29, 18);
    border-top: 1px solid #e7e7e7;
}

.footer .row:first-child {
    align-items: flex-start;
}

@media (min-width: 992px) {
    .footer .row:first-child {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        column-gap: 72px;
        align-items: flex-start;
    }

    .footer .row:first-child > [class*='col-lg-4'] {
        width: auto;
        max-width: none;
        margin-bottom: 0 !important;
    }

    .footer .row:first-child > [class*='col-lg-4']:nth-child(2) {
        justify-self: center;
    }

    .footer .row:first-child > [class*='col-lg-4']:nth-child(3) {
        justify-self: end;
    }
}

.footer .row:last-child {
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: rgb(21, 29, 18);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #3d3d3d;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
}

.footer-divider {
    border-color: rgba(0, 0, 0, 0.12);
    margin: 30px 0;
}

.copyright {
    color: #4a4a4a;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.developer-credit {
    color: #4a4a4a;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding-right: 130px;
    margin-bottom: 0;
}

.developer-logo {
    height: 70px;
    width: auto;
}

#developer-link {
    color: rgb(21, 29, 18);
    font-weight: 600;
}

#developer-link:hover {
    text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white-color);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: var(--white-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    .navbar {
        min-height: 64px;
        padding: 6px 0;
    }

    .navbar-brand img {
        max-height: 32px;
    }

    .navbar-toggler {
        border: 0;
        padding: 4px 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    section {
        padding: 56px 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar .container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        min-height: 52px;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar-toggler {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }

    .navbar-collapse {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        margin-top: 8px;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        z-index: auto;
    }


    .navbar-collapse:not(.show) {
        display: none !important;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-toggler[aria-expanded='true'] {
        top: 8px;
        transform: none;
        right: 24px;
        z-index: 1041;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 8px 0;
        margin: 4px 0;
        text-align: center;
    }

    .navbar-collapse .navbar-nav {
        align-items: center;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-section {
        min-height: calc(100vh - 64px);
        min-height: calc(100svh - 64px);
        padding: 32px 0;
        max-width: 100vw;
        overflow-x: hidden;
        overflow-x: clip;
    }

    .hero-content {
        width: min(100%, 560px);
        margin: 0 auto;
        padding-left: 16px;
        padding-right: 16px;
        text-align: center;
    }

    .impact-kicker,
    .hero-title,
    .hero-description {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
        object-position: center top;
    }

    .video-background,
    .hero-video,
    .hero-content {
        max-width: 100vw;
    }
    
    .hero-title {
        font-size: 2.55rem;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        line-height: 1.25;
    }

    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
    
    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
    }
    
    .about-hero-title,
    .contact-hero-title {
        font-size: clamp(2.2rem, 11vw, 3rem);
        font-weight: 700;
    }

    .about-hero-subtitle,
    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-section,
    .contact-hero-section {
        min-height: calc(100vh - 46px);
        min-height: calc(100svh - 46px);
        padding: 40px 20px;
    }

    .service-materials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px 20px !important;
    }

    .contact-method {
        padding: 16px 12px;
    }

    .contact-icons-row {
        gap: 12px;
    }

    .contact-icon-link {
        width: 62px;
        height: 62px;
        font-size: 1.8rem;
    }

    .parallax-divider {
        height: 72vh;
        min-height: 420px;
    }

    .parallax-divider-sticky {
        height: 72vh;
    }

    .map-container iframe {
        min-height: 300px;
    }
    
    .gallery-item {
        height: 150px;
    }

    .gallery-feature-layout {
        --gallery-stack-item-height: 150px;
    }

    .story-image,
    .budget-image {
        max-width: 100%;
    }

    .faq-item .accordion-button {
        font-size: 1.02rem;
        padding: 16px;
    }

    .faq-item .accordion-body {
        padding: 14px 16px 18px;
        font-size: 0.98rem;
    }

    .story-image img,
    .budget-image img {
        max-height: 420px;
    }
    
    .developer-credit {
        justify-content: flex-start;
        margin-top: 10px;
        padding-right: 138px;
    }

    .footer {
        padding-bottom: 108px !important;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        min-height: 60px;
        padding: 5px 0;
    }

    .navbar-brand img {
        max-height: 28px;
    }

    .navbar-collapse {
        margin-top: 6px;
        padding: 0;
        border-radius: 0;
    }


    .navbar .container {
        min-height: 48px;
    }

    .navbar-toggler {
        right: 16px;
    }

    .navbar-toggler[aria-expanded='true'] {
        right: 20px;
    }

    section {
        padding: 48px 0;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-section {
        min-height: calc(100vh - 60px);
        min-height: calc(100svh - 60px);
        padding: 24px 0;
        max-width: 100vw;
    }

    .hero-content {
        width: min(100%, 420px);
        margin: 0 auto;
        padding-left: 12px;
        padding-right: 12px;
        text-align: center;
    }

    .impact-kicker,
    .hero-title,
    .hero-description {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        line-height: 1.25;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
    
    .section-title {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .about-hero-section,
    .contact-hero-section {
        min-height: calc(100vh - 44px);
        min-height: calc(100svh - 44px);
        padding: 32px 16px;
    }

    .about-hero-title,
    .contact-hero-title {
        font-size: clamp(2.1rem, 11.5vw, 2.8rem);
        font-weight: 700;
    }

    .service-materials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-info-card,
    .contact-form-card {
        padding: 22px 16px !important;
    }

    .contact-method-info,
    .footer-contact li,
    .footer-links a {
        overflow-wrap: anywhere;
    }

    .contact-icons-row {
        gap: 8px;
    }

    .contact-icon-link {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .parallax-divider {
        height: 62vh;
        min-height: 340px;
    }

    .parallax-divider-sticky {
        height: 62vh;
    }

    .story-image img,
    .budget-image img {
        max-height: 320px;
    }

    .faq-about-header {
        margin-bottom: 22px;
    }

    .faq-about-subtitle {
        font-size: 0.98rem;
    }

    .faq-item {
        margin-bottom: 10px;
        border-radius: 10px !important;
    }

    .faq-item .accordion-button {
        font-size: 0.98rem;
        line-height: 1.4;
        padding: 14px;
    }

    .faq-item .accordion-body {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 12px 14px 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    .developer-logo {
        height: 72px;
    }

    .developer-credit {
        padding-right: 146px;
    }
}

/* Impact Home Redesign */
body.home-impact {
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

body.home-impact h1 {
    font-size: clamp(2.2rem, 4.7vw, 4.8rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 1px;
}

body.home-impact h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.4rem);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.8px;
}

body.home-impact h3 {
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.6px;
}

body.home-impact p,
body.home-impact li,
body.home-impact label,
body.home-impact .lead,
body.home-impact .section-subtitle,
body.home-impact .form-control,
body.home-impact .form-select,
body.home-impact .form-check-label {
    font-family: 'Manrope', sans-serif;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.6;
}

body.home-impact .btn,
body.home-impact button,
body.home-impact input[type='submit'] {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2px;
}

body.home-impact .story-section p,
body.home-impact .budget-section p,
body.home-impact .mission-text,
body.home-impact .contact-form-section p,
body.home-impact .contact-section p,
body.home-impact .coverage-section p,
body.home-impact .footer p,
body.home-impact .form-check-label,
body.home-impact .form-label {
    line-height: 1.7;
}

body.home-impact h1,
body.home-impact h2,
body.home-impact h3,
body.home-impact h4,
body.home-impact h5,
body.home-impact h6,
body.home-impact .brand-text {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

body.home-impact .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #ececec;
}

body.home-impact .navbar.scrolled {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
}

body.home-impact .brand-highlight,
body.home-impact .navbar-nav .nav-link:hover,
body.home-impact .navbar-nav .nav-link.active {
    color: rgb(21, 29, 18);
}

body.home-impact .navbar-nav .nav-link::after {
    background: rgb(21, 29, 18);
}

body.home-impact .impact-hero {
    min-height: 92vh;
}

body.home-impact .video-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.40) 40%,
        rgba(0, 0, 0, 0.55) 70%,
        rgba(0, 0, 0, 0.78) 100%
    );
}

body.home-impact .hero-content {
    max-width: 980px;
    padding: 0 24px;
}

body.home-impact .impact-kicker {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

body.home-impact .hero-title {
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-wrap: balance;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

body.home-impact .hero-description {
    font-size: 1.15rem;
    max-width: 780px;
    color: rgba(255, 255, 255, 0.88);
}

body.home-impact .impact-metrics {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

body.home-impact .impact-metrics div {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 12px 10px;
    animation: metricRise 0.8s ease both;
}

body.home-impact .impact-metrics strong {
    display: block;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1;
}

body.home-impact .impact-metrics span {
    font-size: 0.95rem;
}

body.home-impact .btn-primary {
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #111111;
    font-weight: 800;
}

body.home-impact .contact-form-card .btn-primary {
    background: rgb(22, 82, 57);
    border: 2px solid rgb(22, 82, 57);
    color: #ffffff;
    font-weight: 700;
}

body.home-impact .contact-form-card .btn-primary:hover,
body.home-impact .contact-form-card .btn-primary:focus-visible {
    background: rgb(18, 66, 46);
    border-color: rgb(18, 66, 46);
    color: #ffffff;
    box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.14), 0 12px 24px rgba(0, 0, 0, 0.28);
}

body.home-impact .btn-primary:hover {
    background: #111111;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

body.home-impact .btn-outline-light {
    border-width: 2px;
    font-weight: 700;
}

body.home-impact .btn-dark {
    background: #111111;
    border-color: #111111;
}

body.home-impact .btn-dark:hover {
    background: #000000;
    border-color: #000000;
}

body.home-impact .cta-alt-btn {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
}

body.home-impact .section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

body.home-impact .section-title::after {
    background: rgb(21, 29, 18);
    width: 90px;
}

body.home-impact .impact-subtitle {
    font-weight: 700;
    color: rgb(21, 29, 18);
    font-size: 1.35rem;
}

body.home-impact .impact-subheading {
    color: rgb(21, 29, 18);
    letter-spacing: 0.5px;
}

body.home-impact .impact-card,
body.home-impact .impact-gallery-item,
body.home-impact .map-container {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

body.home-impact .impact-card {
    background: linear-gradient(165deg, #ffffff, #f6f6f6);
}

body.home-impact .service-description,
body.home-impact .section-subtitle {
    font-size: 1.08rem;
}

body.home-impact .gallery-item {
    height: 240px;
}

body.home-impact .gallery-overlay {
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82));
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    padding: 12px;
}

body.home-impact .gallery-item:hover .gallery-overlay,
body.home-impact .gallery-item:focus-within .gallery-overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

body.home-impact .gallery-overlay h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

body.home-impact .gallery-overlay p {
    color: #ffffff;
    max-width: 92%;
    font-size: 1rem;
    line-height: 1.4;
}

@media (min-width: 992px) {
    body.home-impact .gallery-section {
        padding-top: 1.2rem !important;
        padding-bottom: 1.5rem !important;
    }

    body.home-impact .gallery-section .row.mb-3 {
        margin-bottom: 0.5rem !important;
    }

    body.home-impact .gallery-feature-layout {
        --gallery-feature-gap: 0.45rem;
        --gallery-stack-item-height: 74px;
        max-width: 600px;
    }

    body.home-impact .gallery-feature-layout .gallery-feature-video-col .gallery-item-vertical-video {
        height: calc(var(--gallery-stack-item-height) * 2 + var(--gallery-feature-gap));
    }

    body.home-impact .gallery-feature-layout .gallery-right-stack .gallery-item {
        height: var(--gallery-stack-item-height);
    }

    body.home-impact .gallery-feature-layout .gallery-overlay {
        padding: 10px 12px;
    }

    body.home-impact .gallery-feature-layout .gallery-overlay h3 {
        font-size: 1.12rem;
        margin-bottom: 4px;
    }

    body.home-impact .gallery-feature-layout .gallery-overlay p {
        font-size: 0.88rem;
        line-height: 1.3;
    }
}

@media (hover: none), (max-width: 991.98px) {
    body.home-impact .gallery-overlay {
        inset: auto 0 0 0;
        display: block;
        text-align: left;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.9));
        padding: 10px;
    }
}
body.home-impact .map-cta-section {
    background: linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
}

body.home-impact .coverage-list li {
    font-weight: 600;
}

body.home-impact .coverage-list i {
    color: rgb(21, 29, 18);
}

body.home-impact .cta-impact-section {
    background: linear-gradient(140deg, #0b0b0b 0%, #1a1a1a 100%);
}

body.home-impact .cta-impact-section .section-title,
body.home-impact .cta-impact-section .section-subtitle {
    color: #ffffff;
}

body.home-impact .cta-impact-section .section-title::after {
    background: #ffffff;
}

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

@media (max-width: 992px) {
    body.home-impact .impact-metrics {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    body.home-impact h1 {
        font-size: clamp(2.35rem, 11.5vw, 3.2rem);
        font-weight: 700;
    }

    body.home-impact h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        font-weight: 700;
    }

    body.home-impact h3 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        font-weight: 700;
    }

    body.home-impact p,
    body.home-impact li,
    body.home-impact label,
    body.home-impact .lead,
    body.home-impact .section-subtitle,
    body.home-impact .form-control,
    body.home-impact .form-select,
    body.home-impact .form-check-label {
        font-size: 1rem;
    }

    body.home-impact .impact-hero {
        min-height: calc(100vh - 64px);
        min-height: calc(100svh - 64px);
    }

    body.home-impact .hero-title {
        font-size: clamp(2.45rem, 12vw, 3.3rem);
        font-weight: 700;
        line-height: 1.03;
    }

    body.home-impact .hero-content {
        padding: 28px 22px;
        border-radius: 12px;
        margin: 0 auto;
        text-align: center;
    }

    body.home-impact .hero-description {
        font-size: 1rem;
    }

    body.home-impact .impact-kicker {
        font-size: 0.82rem;
        max-width: 100%;
        white-space: normal;
    }

    body.home-impact .gallery-item {
        height: 160px;
    }

    body.home-impact .gallery-feature-layout {
        --gallery-stack-item-height: clamp(82px, 8.5vh, 98px);
    }
}

@media (max-width: 991.98px) {
    .gallery-feature-layout {
        --gallery-stack-item-height: 150px;
        max-width: 100%;
    }

    body.home-impact .gallery-feature-layout .gallery-feature-video-col .gallery-item-vertical-video {
        height: 250px;
        min-height: 250px;
    }

    body.home-impact .gallery-feature-layout .gallery-right-stack .gallery-item {
        height: 150px;
    }
}

@media (max-width: 576px) {
    body.home-impact h1 {
        font-size: 2.25rem;
        font-weight: 700;
    }

    body.home-impact h2 {
        font-size: 1.95rem;
        font-weight: 700;
    }

    body.home-impact h3 {
        font-size: 1.35rem;
        font-weight: 700;
    }

    body.home-impact p,
    body.home-impact li,
    body.home-impact label,
    body.home-impact .lead,
    body.home-impact .section-subtitle,
    body.home-impact .form-control,
    body.home-impact .form-select,
    body.home-impact .form-check-label {
        font-size: 0.98rem;
    }

    body.home-impact .hero-content {
        padding: 18px 16px;
        margin: 0 auto;
        text-align: center;
    }

    body.home-impact .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.03;
    }

    body.home-impact .impact-metrics {
        max-width: 100%;
    }

    body.home-impact .impact-metrics strong {
        font-size: 1.2rem;
    }
}