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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #eeecff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CSS Variables */
:root {
    --primary: #632b9c;
    --secondary: #7552e1;
    --accent: #ffffff;
    --background: #ffffff;
    --foreground: #000000;
    --muted: #F9FAFB;
    --muted-foreground: #000000;
    --border: #E5E7EB;
    --primary-foreground: #F8FAFC;
    --accent-foreground: #F8FAFC;
    --radius: 0.5rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-primary {
    color: var(--primary);
}

.text-white {
    color: white;
}

.text-center {
    text-align: center;
}

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

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

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

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

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

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

/* 2. Your existing styles below */
.logo-text {
  font-family: "Gotham Bold", "Proxima Nova Bold", "Avenir Next Bold", "Nunito", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    display: none;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.mobile-nav {
    background-color: var(--muted);
    border-top: 1px solid var(--border);
}

.mobile-nav-content {
    padding: 0.5rem 0 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    color: var(--primary);
    background-color: rgb(165, 36, 235, 0.1);
}

.mobile-nav-cta {
    padding: 0.5rem 0.75rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .nav-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-white {
    background-color: white;
    color: var(--foreground);
    border-color: white;
}

.btn-white:hover {
    background-color: var(--muted);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
}

/* Custom Hero Background */
.hero-fullscreen {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.hero-fullscreen .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-centered {
    max-width: 600px;
    text-align: left;
}

.hero-fullscreen .hero-title {
    color: var(--foreground);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-fullscreen .hero-description {
    color: var(--muted-foreground);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.hero-grid.reverse {
    direction: ltr;
}

.hero-content {
    order: 1;
}

.hero-image {
    order: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

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

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-grid.reverse .hero-content {
        order: 2;
    }
    
    .hero-grid.reverse .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Section Layouts */
.services-section,
.features-section,
.benefits-section,
.contact-section,
.faq-section {
    padding: 5rem 0;
}

.benefits-section,
.faq-section {
    background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
}

.metrics-section {
    padding: 5rem 0;
    color: white;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.section-header.text-center .section-description {
    color: rgba(255, 255, 255, 0.9);
}

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

/* Grid Layouts */
.services-grid,
.features-grid {
    display: grid;
    gap: 2rem;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.faq-grid {
    display: grid;
    gap: 2rem;
}

.metrics-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

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

/* Cards */
.service-card,
.feature-card,
.faq-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover,
.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-icon,
.feature-icon,
.benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgb(155, 36, 235, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i,
.feature-icon i,
.benefit-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.service-title,
.feature-title,
.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description,
.feature-description,
.benefit-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.service-link:hover {
    color: var(--secondary);
}

/* Benefit Items */
.benefit-item {
    text-align: center;
}

.benefit-icon {
    margin: 0 auto 1rem;
}

/* Metrics */
.metric-item {
    color: white;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.125rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .metric-value {
        font-size: 3.75rem;
    }
}

/* CTA Sections */
.cta-section {
    padding: 5rem 0;
}

.cta-card {
    background: rgb(195, 129, 253, 0.05);
    border: 1px solid rgb(196, 138, 255, 0.2);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.cta-phone {
    font-size: 1.125rem;
    font-weight: 600;
}

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

/* Contact Section */
.contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgb(226, 172, 251, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

/* Why Choose Card */
.why-choose-card {
    background-color: rgba(249, 250, 251, 0.5);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.why-choose-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-card {
    background-color: var(--muted);
    border-radius: var(--radius);
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    background-color: var(--background);
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 4rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Success Message */
.success-message {
    background-color: var(--muted);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgb(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
}

.success-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* FAQ */
.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 4rem 0;
}

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

.footer-brand {
    grid-column: span 2;
}

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

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    font-weight: 700;
}

.footer-logo-text {
    font-family: "Gotham Bold", "Proxima Nova Bold", "Avenir Next Bold", "Nunito", sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 24rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: var(--primary);
}

.social-link i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

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

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.legal-link:hover {
    color: var(--primary);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Smooth Animations */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Typography */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

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

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