@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --font-size: 16px;
    --font-family-default: 'Inter', sans-serif;
    --font-family-heading: 'Impact', sans-serif;
    
    /* Custom Brand Colors */
    --heading-color: #0D0D0D;
    --highlight-color: #02A7EA;
    --button-text-color: #FFFFFF;
    --button-gradient: linear-gradient(96.74deg, #37A5E9 7.29%, #0083D4 90.69%);
    --dark-bg-color: #0c0c0e;
    
    /* Font Sizes */
    --text-h1: 56px;
    --text-h2: 32px;
    --text-h3: 28px;
    --text-button: 18px;
}

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

html {
    font-size: var(--font-size);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-default);
    color: #333;
    line-height: 1.6;
    background: white;
    overflow-x: hidden;
}

/* Typography */
h1 {
    /* font-family: var(--font-family-heading); */
    /* font-size: var(--text-h1); */
    font-weight: 900;
    line-height: 1.2;
    color: var(--heading-color);
}

h2 {
    /* font-family: var(--font-family-heading); */
    /* font-size: var(--text-h2); */
    font-weight: 900;
    line-height: 1.3;
    /* color: var(--heading-color); */
    margin-bottom: 1rem;
}

h3 {
    /* font-family: var(--font-family-heading); */
    /* font-size: var(--text-h3); */
    /* font-weight: 600; */
    line-height: 1.4;
    color: var(--heading-color);
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.mb-10 {
    margin-bottom: 10px;
}

/* Buttons */
.btn-primary {
    background: var(--button-gradient);
    color: var(--button-text-color);
    font-size: var(--text-button);
    font-weight: 500;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(2, 167, 234, 0.3);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* min-height: 600px; */
    display: flex;
    align-items: center;
    /* color: white; */
    overflow: hidden;

    background-image: url("https://whitelabelapps.ca/wp-content/uploads/2025/11/1.0Bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 8.8125rem;
}

/* .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1760888549280-4aef010720bd?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920');
    background-size: cover;
    background-position: center;
} 

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(12, 12, 14, 0.85);
}*/

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0rem 2rem 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap:30px;
    justify-items: end;
    align-items: center;
}

.hero-text {
    width: 100%;
}
.hero-section h1 {
    /* color: white; */
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    /* color: #d1d5db; */
    margin-top: 30px;
    margin-bottom: 2rem;
    max-width: 42rem;
    line-height: 1.6;
}
.hero-form {
    max-width: 450px;
    width: 100%;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-value {
    font-size: 60px;
    font-weight: 900;
    color: var(--highlight-color);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 3rem;
    height: 3rem;
    background: var(--dark-bg-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    stroke: var(--highlight-color);
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Image Text Section */
.image-text-section {
    padding: 5rem 0;
    background: white;
}

.image-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.text-content {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item span {
    color: #374151;
    line-height: 1.6;
}

/* Key Features Section */
.key-features-section {
    padding: 5rem 0;
    background: var(--dark-bg-color);
    color: white;
}

.key-features-section .section-header h2 {
    color: white;
}

.key-features-section .section-description {
    color: #9ca3af;
}

.features-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.feature-icon-box {
    width: 3rem;
    height: 3rem;
    background: var(--highlight-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Mockup Section */
.mockup-section {
    padding: 5rem 0;
    background: white;
}

.mockup-wrapper {
    display: flex;
    justify-content: center;
    max-width: 28rem;
    margin: 0 auto;
}

.mockup-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    border-left: 4px solid var(--highlight-color);
    padding-left: 1rem;
}

.highlight-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #6b7280;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
}

.decorative-pattern {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.05;
    pointer-events: none;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

.reason-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon svg {
    stroke: var(--highlight-color);
}

.reason-item p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.625;
    padding-top: 0.25rem;
}

/* Why Need App Section */
.why-need-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.625;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-timeline {
    max-width: 56rem;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.625;
}

.process-step:not(:last-child) .step-content::after {
    content: '';
    display: block;
    width: 2px;
    height: 3rem;
    background: #e5e7eb;
    margin-left: -4.75rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-accordion {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item:hover {
    border-color: var(--highlight-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    user-select: none;
    gap: 1rem;
}

.faq-question span:first-child {
    flex: 1;
    line-height: 1.75;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--highlight-color);
    transition: transform 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.625;
    font-size: 0.875rem;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 5rem 0;
    background: var(--dark-bg-color);
    color: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info-column h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 0.875rem;
    color: #bfdbfe;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.125rem;
    color: white;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    color: #111827;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(2, 167, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    .two-column-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reasons-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-content {
        padding: 4rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 48px;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step:not(:last-child) .step-content::after {
        display: none;
    }
    
    section {
        padding: 3rem 0 !important;
    }
    .services-grid, .features-grid, .hero-content {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .hero-content {justify-content: center;}
    .hero-form { margin: 0 auto; }
}

@media (max-width: 480px) {
    h1 { font-size: 28px; }
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
