/* ===== LANDING PAGE SPECIFIC STYLES ===== */

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

.logo-subtitle {
    display: none;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .logo-subtitle {
        display: inline;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav a {
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.mobile-nav a {
    color: var(--foreground);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
}

/* ===== Safety Exit Button ===== */
.safety-exit-btn {
    position: fixed;
    top: 5.5rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: hsl(0, 84.2%, 60.2%);
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.safety-exit-btn:hover {
    background-color: hsl(0, 84.2%, 50%);
    transform: scale(1.05);
}

.safety-exit-btn svg {
    width: 1rem;
    height: 1rem;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    color: white;
    border-radius: 9999px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(4, 107, 96, 0.85);
}

.hero-decoration {
    position: absolute;
    border-radius: 9999px;
    filter: blur(48px);
}

.hero-decoration-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background-color: rgba(212, 175, 55, 0.2);
}

.hero-decoration-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(4, 137, 121, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-label-line {
    width: 3rem;
    height: 2px;
    background-color: var(--secondary);
}

.hero-label-text {
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-highlight {
    display: block;
    margin-top: 0.5rem;
    color: var(--secondary);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.625;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-badge-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--secondary);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    display: block;
}

/* ===== Text Content ===== */
.text-content {
    color: var(--muted-foreground);
    line-height: 1.625;
}

.text-content p {
    margin-bottom: 1rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* ===== Feature Cards ===== */
.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    background-color: rgba(4, 107, 96, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.feature-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Security Cards ===== */
.security-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-icon {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.security-icon.bg-primary {
    background-color: var(--primary);
}

.security-card:hover .security-icon.bg-primary {
    background-color: var(--teal-light);
}

.security-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.security-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.security-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* ===== About Section ===== */
.about-image-wrapper {
    position: relative;
}

.about-image-container {
    aspect-ratio: 4/5;
    background: linear-gradient(to bottom right, rgba(4, 107, 96, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.about-corner {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-color: var(--secondary);
}

.about-corner-top {
    top: 1rem;
    right: 1rem;
    border-top: 4px solid var(--secondary);
    border-right: 4px solid var(--secondary);
    border-top-right-radius: 1rem;
}

.about-corner-bottom {
    bottom: 1rem;
    left: 1rem;
    border-bottom: 4px solid var(--secondary);
    border-left: 4px solid var(--secondary);
    border-bottom-left-radius: 1rem;
}

.about-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .expertise-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--foreground);
}

.expertise-icon {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    color: var(--primary);
}

.expertise-item span {
    font-size: 0.875rem;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.timeline-line {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary));
    transform: translateX(-50%);
}

@media (min-width: 1024px) {
    .timeline-line {
        display: block;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .timeline-item {
        display: flex;
        align-items: center;
        margin-bottom: 0;
        padding: 1.5rem 0;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        padding-right: 3rem;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .timeline-item:nth-child(even) .timeline-content {
        padding-left: 3rem;
    }
}

.timeline-content {
    flex: 1;
}

@media (min-width: 1024px) {
    .timeline-item:nth-child(odd) .timeline-card {
        margin-left: auto;
    }
}

.timeline-card {
    max-width: 32rem;
}

.timeline-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .timeline-item:nth-child(odd) .timeline-header {
        flex-direction: row-reverse;
    }
}

.timeline-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.timeline-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
}

.timeline-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.timeline-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.625;
}

.timeline-dot {
    display: none;
}

@media (min-width: 1024px) {
    .timeline-dot {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 1.5rem;
        height: 1.5rem;
        background-color: var(--secondary);
        border: 4px solid var(--background);
        border-radius: 9999px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* ===== Testimonials ===== */
.testimonial-card {
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    color: rgba(212, 175, 55, 0.3);
}

.testimonial-text {
    position: relative;
    z-index: 10;
    color: var(--muted-foreground);
    line-height: 1.625;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(4, 107, 96, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.testimonial-location {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

/* ===== Services ===== */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .services-wrapper {
        grid-template-columns: 1fr 2fr;
    }
}

.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-tab {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: left;
    font-weight: 500;
    border: 1px solid var(--border);
    background-color: var(--card);
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tab:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.service-tab.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-tab svg {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    color: var(--primary);
}

.service-tab.active svg {
    color: var(--secondary);
}

.services-content {
    height: 100%;
}

.service-panel {
    display: none;
}

.service-panel.active {
    display: block;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon.bg-primary {
    background-color: var(--primary);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.service-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--foreground);
}

.service-text {
    color: var(--muted-foreground);
    line-height: 1.625;
    font-size: 1.125rem;
}

/* ===== Differentials ===== */
.differential-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.differential-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--secondary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.differential-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--secondary-foreground);
}

.differential-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.differential-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FAQ ===== */
.faq-wrapper {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.5);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    color: var(--muted-foreground);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* ===== Solutions ===== */
.solution-card {
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
}

.solution-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s ease;
}

.solution-card:hover .solution-icon {
    background-color: var(--teal-light);
}

.solution-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.solution-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.solution-subtitle {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.solution-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* ===== Warning ===== */
.warning-box {
    max-width: 56rem;
    margin: 0 auto;
}

.warning-content {
    background-color: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .warning-content {
        padding: 3rem;
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.warning-icon {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .warning-icon {
        margin-bottom: 0;
    }
}

.warning-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--destructive);
}

.warning-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .warning-text h2 {
        font-size: 1.875rem;
    }
}

/* ===== Contact/Map Section ===== */
.contact-card {
    height: 100%;
}

.contact-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    background-color: rgba(4, 107, 96, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.contact-info-label {
    font-weight: 500;
    color: var(--foreground);
}

.contact-info-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-cities {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-cities strong {
    color: var(--foreground);
}

.map-wrapper {
    height: 400px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .map-wrapper {
        height: auto;
        min-height: 400px;
    }
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--primary);
    color: white;
}

.footer-container {
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .footer-container {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 4rem 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary);
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact strong {
    color: white;
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-cities {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
    margin: 2.5rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== Button Sizes ===== */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== Background Colors ===== */
.bg-white {
    background-color: var(--background);
}

.bg-muted {
    background-color: var(--muted);
}

.bg-primary {
    background-color: var(--primary);
}

/* ===== Scroll Animations ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
