:root {
    /* Color Variables */
    --primary-color: #254e70;
    --primary-light: #4f81a8;
    --primary-dark: #1c3a57;
    --secondary-color: #5fa8d3;
    --accent-color: #7ec8e3;
    --light-color: #edf6f9;
    --dark-color: #1a2c38;
    --text-color: #333;
    --text-light: #555f66;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;

    /* UI Variables */
    --rounded: 12px;
    --rounded-lg: 16px;
    --rounded-xl: 24px;
    --shadow: 0 4px 8px rgba(184, 191, 202, 0.3);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 4rem 0;
    --max-width: 1280px;

    /* Form Variables */
    --border-color: #dfe6e9;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: white;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Header */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav .nav-link a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 1rem 0;
    color: var(--dark-color);
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}
.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    border-radius: var(--rounded-lg);
}

/* Sections Common Styles */
.section {
    padding: var(--section-padding);
    position: relative;
}

/* How it works */
.how-it-works {
    background-color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: var(--rounded);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.step-card h3 {
    font-size: 1.5rem;
}


.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.rating {
    color: var(--warning-color);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    background-color: white;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-radius: var(--rounded);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.faq-question {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-item:hover .faq-question {
    color: var(--primary-color);
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--text-light);
}
.faq-item.active .faq-question::after {
    content: '-';
    color: var(--primary-color);
}
.faq-answer {
    font-size: 16px;
    text-align: left;
}
.faq-item.active .faq-answer {
  /*  padding: 0 1.5rem 1.5rem;
    max-height: 500px;*/
}

/* Contact & Newsletter */
.contact-newsletter {
    background-color: #f8fafc;
}
.contact-newsletter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-form, .newsletter {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--rounded);
    box-shadow: var(--shadow);
}

.contact-form h3, .newsletter h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--rounded);
    font-family: inherit;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--rounded);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon i {
    font-size: 1.2rem;
    color: white;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Form Screen */
#form-screen {
    display: none;
    padding: 4rem 0;
    background-color: #f5f7fa;
}

.form-active #form-screen {
    display: block;
}

.form-active .hero,
.form-active .how-it-works,
.form-active .testimonials,
.form-active .faq,
.form-active .contact-newsletter,
.form-active .cta-section,
.form-active footer {
    display: none;
}

/* Form Styles */
.form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    counter-reset: step;
}

.progress-steps::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-indicator:not(:last-child) {
    margin-right: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.8rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.step-indicator.active .step-number {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.step-indicator.completed .step-number {
    background-color: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.step-indicator.completed .step-number::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.step-label {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-align: center;
    max-width: 100px;
}

.step-indicator.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Step content */
.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.step-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: var(--secondary-color);
    opacity: 0.7;
    font-size: 0.8rem;
}

.form-control {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

/* Privacy notice */
.privacy-notice {
    background-color: #f8fafc;
    padding: 1.2rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 0 6px 6px 0;
}

.privacy-notice h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.privacy-notice h3 i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.privacy-notice p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.privacy-notice a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

/* File upload */
.file-upload-wrapper {
    position: relative;
    margin-top: 0.5rem;
}

.file-upload-label {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: #f8fafc;
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-label:hover {
    border-color: var(--accent-color);
    background-color: #f0f7ff;
}

.file-upload-label i {
    margin-right: 0.7rem;
    color: var(--accent-color);
}

.file-upload-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

#file-upload {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Confirmation */
.confirmation-card {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.confirmation-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.confirmation-card h3 i {
    margin-right: 0.7rem;
    color: var(--success-color);
}

.confirmation-details {
    margin-bottom: 2rem;
}

.confirmation-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.confirmation-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.confirmation-section h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.confirmation-section h4 i {
    margin-right: 0.7rem;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.confirmation-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.confirmation-section strong {
    color: var(--primary-color);
    font-weight: 500;
    min-width: 150px;
    display: inline-block;
}

.description-box {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.checkbox input {
    margin-right: 0.7rem;
    margin-top: 0.2rem;
}

.checkbox label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}

.checkbox a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

/* Form footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.hidden {
    display: none;
}

.confirmation-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.confirmation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}


.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.confirmation-container h1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}



.back-to-home {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
}

.back-to-home:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-newsletter-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {


    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
    body#home #home
    {
       padding: 1rem 1rem 6rem
    }
    nav.active {
        transform: translateX(0);
    }
    nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 2rem;
    }
    .mobile-menu-btn {
        display: block;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-footer {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .steps-container, .testimonials-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .business-option {
        width: calc(50% - 0.5rem);
        padding: 1rem 0.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step {
    animation: fadeIn 0.4s ease-out;
}
