@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@1,700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f97316;
    --primary-hover: #ea580c;
    --blue-dark: #1e40af;
    --text-dark: #111827;
    --text-light: #f9fafb;
    --bg-light: #ffffff;
    --bg-medium: #c8c8c8;
    --bg-dark: #111827;
    --bg-gray-50: #f9fafb;
    --bg-gray-800: #1f2937;
    --bg-gray-900: #111827;
    --border-light: #f3f4f6;
    --border-dark: #374151;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Assistant', sans-serif;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: background-color 0.3s, color 0.3s;
}

body.dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

body>* {
    max-width: 1920px;
    width: 100%;
}

.container {
    max-width: 1920px;
    /* margin: 0 auto; */
    margin-right: 2.5rem;
    padding: 0 2.5rem;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1920px;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.dark .site-header {
    background-color: rgba(17, 24, 39, 0.95);
    border-bottom-color: var(--border-dark);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 3.5rem;
    width: auto;
}

.site-navigation {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .site-navigation {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .site-navigation {
        font-size: 1.2rem;
    }
}

.nav-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.theme-toggle {
    padding: 0.5rem;
    border-radius: 9999px;
    background-color: var(--bg-gray-50);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.theme-toggle:hover {
    background-color: #ffedd5;
}

.dark .theme-toggle {
    background-color: var(--bg-gray-800);
}

.phone-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 2rem;
    color: var(--blue-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link i {
    color: var(--primary-color);
}

.fas {
    font-size: 1.5rem;
}

@media (min-width: 640px) {
    .phone-link {
        display: flex;
    }
}

.phone-link:hover {
    color: var(--primary-color);
}

.dark .phone-link {
    color: #d1d5db;
}

.whatsapp-link {
    color: #22c55e;
    font-size: 1.875rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;

    min-height: 500px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.hero-image {
    width: 75%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: -150px auto 0;
}

.hero-content {
    max-width: 1920px;
    position: relative;
    z-index: 10;
    text-align: right;
    color: white;
    padding: 0 1rem;
    right: 0;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--blue-dark);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.hero-highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
    max-width: 55rem;
    margin-bottom: 1rem;
    color: var(--blue-dark);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #22c55e;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s;
}

.hero-cta i {
    font-size: 1.5rem;
}

.hero-cta:hover {
    background-color: #16a34a;
    transform: scale(1.05);
}

@media (width < 1250px) {
    .hero-section {
        padding-top: 8rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image {
        margin: -70px auto 0;
    }

    .hero-cta {
        padding: 0.75rem 1rem;
        font-size: 1.25rem;
    }
}

/* Stats Section */
.stats-section {
    padding-bottom: 1rem;
    background-color: var(--bg-medium);
    overflow: hidden;
    position: relative;
    z-index: 20;
    top: -2.5rem
}

.dark .stats-section {
    background-color: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 5rem;
    }
}

.stat-label {
    font-size: 1.45rem;
    font-weight: 500;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--bg-gray-50);
    overflow: hidden;
}

.dark .testimonials-section {
    background-color: var(--bg-gray-800);
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

@media (min-width: 1024px) {
    .testimonials-layout {
        flex-direction: row;
    }
}

.profile-section {
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

.profile-image-wrapper {
    width: 280px;
    height: 340px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid white;
    background-color: #e5e7eb;
}

@media (min-width: 768px) {
    .profile-image-wrapper {
        width: 380px;
        height: 460px;
    }
}

.dark .profile-image-wrapper {
    border-color: #374151;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    width: 75px;
    height: 75px;
    top: -15px;
    right: -15px;
    background-color: white;
    box-shadow: var(--shadow-2xl);
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.dark .rating-badge {
    background-color: #374151;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.dark .rating-number {
    color: var(--text-light);
}

.rating-stars {
    display: flex;
    gap: 0.125rem;
    color: #facc15;
    font-size: 0.625rem;
}

.testimonials-content {
    flex: 1;
    min-width: 0;
    width: 100%;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .testimonials-content {
        margin-top: 0;
    }
}

.testimonials-title {
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .testimonials-title {
        text-align: right;
    }
}

/* Carousel Styles */
.carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 2.5rem 0;
}

.carousel-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: scrollCarousel 20s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    width: 320px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid #f3f4f6;
    position: relative;
}

.dark .testimonial-card {
    background-color: var(--bg-dark);
    border-color: #374151;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
}

.review-stars {
    display: flex;
    color: #facc15;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    margin-top: 2rem;
}

.review-text {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #374151;
}

.dark .review-text {
    color: #d1d5db;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.dark .reviewer-name {
    color: var(--text-light);
}

.reviewer-location {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.dark .benefits-section {
    background-color: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-icon-box {
    width: 64px;
    height: 64px;
    background-color: #ffedd5;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: var(--primary-color);
    margin: 0 auto;
}

.dark .benefit-icon-box {
    background-color: #1f2937;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 900;
}

.benefit-description {
    color: #4b5563;
}

.dark .benefit-description {
    color: #9ca3af;
}

/* Footer */
.site-footer {
    background-color: #111827;
    color: #d1d5db;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid #374151;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: right;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 3rem;
    margin: 0 auto;
    filter: invert(1) brightness(0);
}

@media (min-width: 768px) {
    .footer-logo {
        margin: 0;
    }
}

.footer-description {
    max-width: 20rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-description {
        margin: 0;
    }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: #d1d5db;
    font-size: 1.5rem;
    transition: color 0.3s;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-weight: 600;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Counter Animation */
.counter-num {
    color: inherit;
}

.counter-plus {
    color: var(--primary-color);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}


/* Carousel Styles */
.carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollCarousel 20s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

.testimonial-card {
    width: 320px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    line-height: 1;
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
}

/* Stats Styles */
.counter-num {
    color: inherit;
}

.counter-plus {
    color: #f97316;
}

/* Badge Styles */
.floating-badge {
    width: 75px;
    height: 75px;
    top: -15px;
    right: -15px;
    z-index: 20;
}

.benefit-icon-box {
    width: 64px;
    height: 64px;
    background-color: #ffedd5;
    /* orange-100 */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    /* text-3xl */
    color: #f97316;
    /* primary */
}

.dark .benefit-icon-box {
    background-color: #1f2937;
    /* gray-800 */
}