@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    --primary: #F5C767;
    --secondary: #FFA500;
    --dark: #202A3C;
    --light: #ffffff;
    --whatsapp: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f9f9f9;
    line-height: 1.6;
    margin-top: 53px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark);
    padding: 0.8rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    height: 54px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo img {
    max-height: 35px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 1rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

.nav-links .active a {
    color: var(--primary);
}

.nav-links .active a::before {
    visibility: visible;
    transform: scaleX(1);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.nav-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 1001;
    width: 0;
    transition: width 0.3s ease;
    box-shadow: 0 1px 5px rgba(46, 204, 113, 0.5);
}

.dropdown {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: 1px solid rgba(52, 152, 219, 0.2);
    overflow: hidden;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.95);
}

.dropdown-links {
    list-style: none;
    padding: 10px 0;
}

.dropdown-links li {
    margin: 0;
    transition: background 0.2s ease;
}

.dropdown-links li:first-child {
    border-radius: 10px 10px 0 0;
}

.dropdown-links li:last-child {
    border-radius: 0 0 10px 10px;
}

.dropdown-links li:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.dropdown-links a {
    color: var(--light);
    display: block;
    font-size: 0.9rem;
    padding: 10px 20px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.dropdown-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-links a::before {
    display: none;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.has-dropdown > a {
    padding-right: 18px !important;
}

.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.has-dropdown:hover > a {
    color: var(--primary);
}

@media screen and (max-width: 1024px) {
    .navbar {
        padding: 0.8rem 2rem;
    }

    .nav-links li {
        margin: 0 0.7rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .logo img {
        max-height: 30px;
    }

    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background: var(--dark);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 280px;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
        z-index: 1010;
        box-shadow: -5px 0 25px rgba(0,0,0,0.25);
        padding-top: 80px;
        overflow-y: auto;
    }

    .nav-links li {
        margin: 0.5rem 1.5rem;
        width: 80%;
        opacity: 0;
        transition: opacity 0.2s ease-out;
    }

    .burger {
        display: block;
        z-index: 1011;
        position: relative;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--primary);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--primary);
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background: rgba(20, 30, 40, 1);
        box-shadow: none;
        border: none;
        border-radius: 5px;
        margin-top: 5px;
        margin-left: 0;
        left: 0;
    }

    .dropdown::before {
        display: none;
    }

    .dropdown.show-dropdown {
        max-height: 500px;
    }

    .dropdown-links {
        padding: 5px 0;
    }

    .dropdown-links li {
        margin: 0;
        width: 100%;
    }

    .dropdown-links a {
        color: var(--light);
        font-size: 0.9rem;
        padding: 12px 15px;
        transition: all 0.2s ease;
        border-left: 2px solid transparent;
    }

    .dropdown-links a:hover {
        color: var(--primary);
        border-left: 2px solid var(--primary);
        background: rgba(52, 152, 219, 0.1);
        transform: translateX(3px);
    }

    .has-dropdown > a::after {
        content: '\f054';
        right: 5px;
        transition: transform 0.3s ease;
    }

    .has-dropdown.active > a::after {
        transform: translateY(-50%) rotate(90deg);
    }

    .has-dropdown {
        width: 100%;
    }

    .has-dropdown > a {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1005;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    }

    .nav-links .active a {
        color: var(--primary);
        position: relative;
    }

    .nav-links .active a::before {
        visibility: visible;
        transform: scaleX(0);
        width: 4px;
        height: 100%;
        left: -10px;
        top: 0;
    }

    .nav-links li.nav-visible {
        opacity: 1;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2530 100%);
    color: var(--light);
    padding: 3rem 0 1rem;
    font-family: 'Quicksand', sans-serif;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer .about p {
    margin: 1rem 0;
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.logo-img {
    max-height: 60px;
    width: auto;
}

.social-icons {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--light);
    border-radius: 50%;
    color: var(--dark);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-1px);
    color: var(--dark);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-section ul a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateX(5px);
}

.footer-section ul a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary);
    width: 18px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.about-hero {
    background: var(--primary);
    color: var(--dark);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: justify;
    line-height: 1.6rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.story-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 199, 103, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.story-image:hover::before {
    opacity: 1;
}

.mission-section {
    text-align: center;
    padding: 6rem 0;
    background-color: rgba(236, 240, 241, 0.5);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    z-index: 1;
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.mission-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: 1;
}

.mission-statement::before {
    content: '\201C';
    font-family: 'Quicksand', sans-serif;
    font-size: 5rem;
    color: var(--dark);
    opacity: 0.5;
    position: absolute;
    left: -40px;
    top: -40px;
    z-index: 3;
}

.mission-statement::after {
    content: '\201D';
    font-family: 'Quicksand', sans-serif;
    font-size: 5rem;
    color: var(--dark);
    opacity: 0.5;
    position: absolute;
    right: -40px;
    bottom: -70px;
    z-index: 3;
}

.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: height 0.5s ease;
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: transform 0.5s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
    color: var(--secondary);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.value-card h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.value-card p {
    color: #666;
    font-size: 1rem;
}

.unique-section {
    background-color: #fff;
    padding: 5rem 0;
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.unique-item {
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    background-color: rgba(236, 240, 241, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    overflow: hidden;
}

.unique-item:hover {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary);
}

.unique-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.5s ease;
}

.unique-item:hover .unique-icon {
    transform: rotate(360deg);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.unique-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
}

.unique-item p {
    color: #666;
    font-size: 1rem;
    text-align: left;
}

.goal-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--primary);
    color: var(--dark);
    position: relative;
}

.goal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.goal-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.goal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.goal-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background: var(--dark);
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--dark);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background: var(--light);
    color: var(--dark);
}

@media screen and (max-width: 992px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .process-section {
        padding: 3rem 0 5rem;
        background-color: rgba(236, 240, 241, 0.3);
    }

    .process-grid {
        flex-direction: column;
        gap: 3rem;
        position: relative;
    }

    .process-item {
        flex-direction: column;
    }

    .process-number {
        margin-bottom: 1rem;
    }

    .process-grid::before {
        display: none;
    }
    .goal-content h2 {
        font-size: 2rem;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 6rem 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .intro-content h2,
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 3rem 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .story-section {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        text-align: center;
    }

    .story-image {
        margin-bottom: 2rem; /* Add margin below image on smaller screens */
    }
}

.service-hero {
    background: var(--primary);
    color: var(--dark);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.service-hero h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.service-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.intro-section {
    padding: 4rem 0 2rem;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.intro-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.process-section {
    padding: 3rem 0 5rem;
    background-color: rgba(236, 240, 241, 0.3);
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.process-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    z-index: 1;
}

.process-content {
    flex-grow: 1;
}

.process-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.process-content p {
    color: #555;
    line-height: 1.6;
}

.process-grid::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 40px;
    width: 2px;
    background: var(--primary);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: height 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    color: var(--secondary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-card p {
    color: #666;
    font-size: 1rem;
    flex-grow: 1;
}

.why-choose-us {
    padding: 5rem 0;
    background-color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    background-color: rgba(236, 240, 241, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    overflow: hidden;
}

.why-item:hover {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.5s ease;
}

.why-item:hover .why-icon {
    transform: rotate(360deg);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
}

.why-item p {
    color: #666;
    font-size: 1rem;
    text-align: left;
}

.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--primary);
    color: var(--dark);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.2s;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s forwards;
    animation-delay: 0.2s;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 0.8s forwards;
    animation-delay: 0.2s;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s forwards;
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width: 992px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .process-item {
        flex-direction: column;
    }

    .process-number {
        margin-bottom: 1rem;
    }

    .process-grid::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .service-hero {
        padding: 6rem 1rem;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .intro-content h2,
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 3rem 0;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 6rem 3rem;
    background: var(--primary);
    color: var(--light);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content, .hero-image {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    color: var(--dark);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(-15deg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: height 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    color: var(--secondary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.feature-list i {
    color: var(--secondary);
    margin-right: 10px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary);
}

.learn-more:hover i {
    transform: translateX(5px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    text-align: left;
}

.feature-content p {
    color: #666;
    font-size: 1rem;
    text-align: left;
}

.stats-section {
    background-color: var(--dark);
    color: var(--light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media screen and (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 5rem 2rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-image img {
        transform: perspective(1000px) rotateY(0);
        max-width: 80%;
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 1rem;
    }
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.form-status {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--dark);
}

.form-status.success {
    color: var(--secondary);
}

.form-status.error {
    color: var(--primary);
}

/* Form status styles */
.form-status {
    margin-top: 20px;
    font-weight: 500;
  }
  
  .success-message {
    color: #28a745;
    background-color: #e8f5e9;
    padding: 12px 16px;
    border-radius: 4px;
    border-left: 4px solid #28a745;
    display: flex;
    align-items: center;
  }
  
  .error-message {
    color: #dc3545;
    background-color: #ffebee;
    padding: 12px 16px;
    border-radius: 4px;
    border-left: 4px solid #dc3545;
    display: flex;
    align-items: center;
  }
  
  .success-message i, .error-message i {
    margin-right: 8px;
    font-size: 18px;
  }
  
  /* Spinner animation for submit button */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .fa-spinner {
    animation: spin 1s linear infinite;
  }

/* Contact Methods Cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    transform: translateY(-40px);
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    width: 10px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.contact-icon::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed white;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.4rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
}

.action-link {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.action-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.action-link:hover {
    color: var(--primary);
}

.action-link:hover::after {
    width: 100%;
}

/* Contact Form and Info Sections */
.contact-sections {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .contact-sections {
        grid-template-columns: 1fr;
    }
}

.form-section, .info-section {
    border-radius: 12px;
    overflow: hidden;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
}

.contact-form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
    40% {transform: translateX(5px);}
    60% {transform: translateX(3px);}
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.form-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    border-radius: 1.5px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02) inset;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(245, 199, 103, 0.15);
    outline: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #ddd;
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-status {
    margin-top: 25px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.contact-info-card h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30%;
    width: 40%;
    height: 3px;
    background: var(--primary);
    border-radius: 1.5px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 199, 103, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--secondary);
    font-size: 20px;
}

.info-text h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
    line-height: 1.5;
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.social-icons {
    display: flex;
    gap: 12px;
    
}


/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.faq-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background: var(--primary);
    border-radius: 1.5px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--secondary);
    position: absolute;
    right: 30px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(245, 199, 103, 0.1);
}

.faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    text-align: center;
}

.map-section h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.map-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background: var(--primary);
    border-radius: 1.5px;
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.4rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-form-container, .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-methods {
        transform: translateY(-20px);
    }
}


.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  
  .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }
  
  .alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
  }
  
  .alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
  }
  
  .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }
  
  .input-error {
    border: 1px solid #dc3545 !important;
    background-color: #fff8f8;
  }

/*  Whatsapp */

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--dark);
    color: var(--light);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--dark);
}

.whatsapp-icon:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp);
    opacity: 0.8;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Sitemap */

/* Sitemap Styles */
.sitemap-container {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 20px;
    font-family: 'Arial', sans-serif;
}

.sitemap-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.sitemap-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

.sitemap-section {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.sitemap-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.sitemap-list li:hover {
    transform: translateX(5px);
}

.sitemap-list a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    display: inline-block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.sitemap-list a:hover {
    color: var(--secondary);
}

.sitemap-list i {
    margin-right: 10px;
    color: var(--secondary);
}

.services-list li {
    border-left: 3px solid var(--secondary);
    padding-left: 15px;
    margin-bottom: 25px;
}

.service-description {
    margin-top: 5px;
    margin-left: 30px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sitemap-title {
        font-size: 2rem;
    }
    
    .sitemap-section h2 {
        font-size: 1.5rem;
    }
    
    .sitemap-list a {
        font-size: 1rem;
    }
}