/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: rgb(30, 125, 187);
    --primary-blue-dark: rgb(24, 100, 150);
    --primary-yellow: rgb(245, 186, 83);
    --primary-yellow-dark: rgb(237, 172, 60);
    --light-blue: rgb(210, 235, 247);
    --lighter-blue: rgb(232, 244, 250);
    --medium-blue: rgb(178, 218, 237);
    --accent-blue: rgb(59, 145, 202);
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: white;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Icons */
.icon-xs { width: 0.875rem; height: 0.875rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 3rem; height: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--gray-900);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

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

/* Top Bar */
.topbar {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.75rem;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    transition: opacity 0.3s;
}

.topbar-link:hover {
    opacity: 0.9;
}

.topbar-email {
    display: none;
}

.social-links {
    display: flex;
    gap: 0.375rem;
}

.social-link {
    padding: 0.25rem;
    color: white;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.9;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 5rem;
    height: 5rem;
}

.logo-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: -0.25rem;
    display: none;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gray-900);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-quote {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
    color: var(--gray-900);
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
}

.logo-img-small {
    width: 2.5rem;
    height: 2.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
    color: var(--gray-900);
}

.mobile-menu-close:hover {
    background: var(--gray-100);
}

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

.mobile-nav-link {
    padding: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu-cta {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(to bottom right, var(--lighter-blue), white, rgba(232, 244, 250, 0.3));
    padding: 4rem 0 6rem;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    background-color: rgba(30, 125, 187, 0.05);
    border-bottom-left-radius: 100px;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: var(--light-blue);
    color: var(--primary-blue-dark);
    width: fit-content;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.hero-title .highlight {
    color: var(--primary-blue);
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    max-width: 40rem;
}

.hero-cta {
    padding-top: 1rem;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background-color: var(--gray-300);
}

.hero-image-wrapper {
    position: relative;
    height: 300px;
}

.hero-image {
    position: relative;
    z-index: 10;
    height: 100%;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    overflow: hidden;
}

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

.hero-decoration-circle {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.hero-decoration-circle-1 {
    background-color: var(--primary-blue);
    top: -2rem;
    right: -2rem;
}

.hero-decoration-circle-2 {
    background-color: var(--primary-yellow);
    bottom: -2rem;
    left: -2rem;
    width: 10rem;
    height: 10rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 1rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--gray-50);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transform: translateY(-0.5rem);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon-blue {
    background: linear-gradient(to bottom right, var(--primary-blue), var(--primary-blue-dark));
}

.service-icon-yellow {
    background: linear-gradient(to bottom right, var(--primary-yellow), var(--primary-yellow-dark));
}

.service-icon-green {
    background: linear-gradient(to bottom right, #4ade80, #10b981);
}

.service-icon-purple {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.service-icon-red {
    background: linear-gradient(to bottom right, #ef4444, #f97316);
}

.service-icon-indigo {
    background: linear-gradient(to bottom right, #6366f1, #9333ea);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.75;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--gray-50);
}

.testimonial-wrapper {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
}

.testimonial-avatar-bg {
    background: linear-gradient(to bottom right, var(--light-blue), var(--lighter-blue), var(--light-blue));
    border-radius: 1.5rem;
    padding: 2rem;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.testimonial-decoration {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(178, 218, 237, 0.5), transparent);
}

.testimonial-avatar {
    position: relative;
    z-index: 10;
    width: 7rem;
    height: 7rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    color: var(--accent-blue);
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    max-width: 64rem;
    margin: 0 auto -6rem;
    position: relative;
    z-index: 10;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.star {
    width: 1.5rem;
    height: 1.5rem;
    color: #facc15;
}

.testimonial-quote {
    color: var(--gray-700);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.75;
    font-style: italic;
}

.testimonial-author {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0 5rem;
    background: white;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon-blue {
    background: linear-gradient(to bottom right, var(--light-blue), var(--medium-blue));
    color: var(--primary-blue);
}

.contact-icon-orange {
    background: linear-gradient(to bottom right, #fef3c7, #fed7aa);
    color: #ea580c;
}

.contact-card h3 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-link {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-blue);
    padding: 0.25rem 0;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800));
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    color: white;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.75;
    font-size: 0.875rem;
}

.footer-social h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.footer-social-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.footer-social-facebook {
    background-color: var(--primary-blue);
}

.footer-social-tiktok {
    background-color: #000;
}

.footer-social-tiktok:hover {
    background-color: #1a1a1a;
}

.footer-social-instagram {
    background-color: #e1306c;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.75rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .topbar {
        font-size: 0.875rem;
    }

    .topbar-left {
        gap: 1.5rem;
    }

    .logo-img {
        width: 7rem;
        height: 7rem;
    }

    .logo-title {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        display: block;
    }

    .btn-quote {
        display: inline-flex;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .stat-number {
        font-size: 1.875rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .stats {
        gap: 2rem;
    }

    .stat-divider {
        height: 3rem;
    }

    .section-badge {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .testimonial-avatar {
        width: 8rem;
        height: 8rem;
    }

    .testimonial-avatar-bg {
        height: 400px;
    }

    .testimonial-card {
        margin: 0 auto -8rem;
    }

    .testimonial-quote {
        font-size: 1.125rem;
    }

    .testimonial-author h4 {
        font-size: 1.5rem;
    }

    .testimonial-author p {
        font-size: 1rem;
    }

    .contact-grid {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 3rem;
    }

    .contact-link {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-description {
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .topbar-email {
        display: flex;
    }

    .contact-grid {
        gap: 4rem;
        align-items: flex-start;
    }
}

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

    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        height: 600px;
    }

    .section-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-avatar {
        width: 10rem;
        height: 10rem;
    }

    .testimonial-avatar-bg {
        height: 450px;
    }

    .testimonial-quote {
        font-size: 1.25rem;
    }

    .contact-link {
        font-size: 1.125rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
