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

:root {
    /* Color Palette */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;

    /* Green Accent */
    --green-50: #f0fdf4;
    --green-600: #16a34a;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--slate-50);
    color: var(--slate-900);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 1.25rem 0;
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-box {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--slate-900);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.logo-letter {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    font-family: Georgia, serif;
    font-style: italic;
}

.favicon-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.2rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.025em;
}

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

.nav-link {
    background: none;
    border: none;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    font-family: var(--font-family);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--slate-900);
}

.nav-cta {
    background-color: var(--slate-900);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    font-family: var(--font-family);
}

.nav-cta:hover {
    background-color: var(--slate-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--slate-900);
    cursor: pointer;
    padding: 0.25rem;
}

.close-icon {
    display: none;
}

.mobile-menu-toggle.active .menu-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--slate-100);
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
}

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

.mobile-nav-link {
    background: none;
    border: none;
    color: var(--slate-700);
    font-weight: 500;
    font-size: 1.125rem;
    text-align: right;
    cursor: pointer;
    font-family: var(--font-family);
    padding: 0.5rem 0;
    text-decoration: none;
}

.mobile-nav-cta {
    background-color: var(--slate-900);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: var(--font-family);
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 1.5rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    justify-content: center;
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background-color: rgba(241, 245, 249, 0.5);
    border-bottom-left-radius: 200px;
    z-index: -1;
}

.hero-content {
    max-width: 56rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--slate-600);
    background-color: rgba(226, 232, 240, 0.5);
    border-radius: 9999px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title-accent {
    color: var(--slate-500);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.hero-cta-primary {
    padding: 1rem 2rem;
    background-color: var(--slate-900);
    color: var(--white);
    border: none;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family);
}

.hero-cta-primary:hover {
    background-color: var(--slate-800);
    transform: scale(1.05);
}

.cta-arrow {
    transition: transform var(--transition-base);
}

.hero-cta-primary:hover .cta-arrow {
    transform: translateX(-4px);
}

.hero-cta-secondary {
    padding: 1rem 2rem;
    border: 1px solid var(--slate-200);
    background-color: var(--white);
    color: var(--slate-700);
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
}

.hero-cta-secondary:hover {
    background-color: var(--slate-50);
}

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

@media (min-width: 768px) {
    .hero-section {
        padding: 12rem 1.5rem 8rem;
    }

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

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

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

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-divider {
    width: 5rem;
    height: 0.25rem;
    background-color: var(--slate-900);
    margin: 0 auto;
    border-radius: 9999px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--slate-100);
    background-color: var(--slate-50);
    transition: all var(--transition-base);
}

.service-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background-color: var(--slate-900);
    color: var(--white);
}

.service-icon svg {
    stroke: currentColor;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--slate-600);
    line-height: 1.6;
    font-size: 1.125rem;
}

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

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

/* About Section */
.about-section {
    padding: 6rem 1.5rem;
    background-color: var(--slate-50);
    overflow: hidden;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.about-image-wrapper {
    width: 100%;
    position: relative;
}

.about-image-bg {
    position: absolute;
    inset: -1rem;
    background-color: var(--slate-200);
    border-radius: 3rem;
    transform: rotate(3deg);
    z-index: -1;
}

.about-image {
    aspect-ratio: 4/5;
    background-color: var(--slate-300);
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    background-color: var(--slate-200);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.floating-stat {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--green-50);
    color: var(--green-600);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    font-weight: 500;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.about-content {
    width: 100%;
}

.about-text {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--slate-900);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    stroke: var(--white);
}

.feature-text {
    font-weight: 600;
    color: var(--slate-700);
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
    }

    .about-image-wrapper,
    .about-content {
        width: 50%;
    }

    .floating-stat {
        right: 2.5rem;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 6rem 1.5rem;
    background-color: var(--white);
}

.testimonial-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-mark {
    font-size: 3rem;
    color: var(--slate-200);
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background-color: var(--slate-100);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--slate-400);
    font-weight: 700;
    text-transform: uppercase;
}

.author-info {
    text-align: right;
}

.author-name {
    font-weight: 700;
    color: var(--slate-900);
}

.author-title {
    font-size: 0.875rem;
    color: var(--slate-500);
}

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

/* Contact Section */
.contact-section {
    padding: 6rem 1.5rem;
}

.contact-container {
    max-width: 80rem;
    margin: 0 auto;
    background-color: var(--slate-900);
    border-radius: 3rem;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.contact-bg-circle {
    position: absolute;
    background-color: var(--slate-800);
    border-radius: 9999px;
}

.contact-bg-circle-1 {
    width: 16rem;
    height: 16rem;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.contact-bg-circle-2 {
    width: 12rem;
    height: 12rem;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
}

.contact-content {
    position: relative;
    z-index: 10;
}

.contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-description {
    color: var(--slate-300);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 28rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    width: 100%;
    background-color: var(--slate-800);
    border: none;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-family);
    outline: none;
    transition: all var(--transition-base);
}

.form-input::placeholder {
    color: var(--slate-500);
}

.form-input:focus {
    box-shadow: 0 0 0 2px var(--slate-400);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--white);
    color: var(--slate-900);
    border: none;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xl);
    font-family: var(--font-family);
}

.form-submit:hover {
    background-color: var(--slate-100);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .contact-container {
        padding: 5rem;
    }

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

    .contact-description {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    background-color: var(--slate-50);
    border-top: 1px solid var(--slate-100);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.footer-logo .main-logo {
    height: 2rem;
    width: auto;
    background: transparent;
}

.footer-logo-text {
    font-weight: 700;
    color: var(--slate-900);
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-600);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.social-link:hover {
    color: var(--slate-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-copyright {
    color: var(--slate-500);
    font-size: 0.875rem;
}

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