/* Global Styles */
:root {
    --primary-color: #f97216;
    /* Orange */
    --secondary-color: #ea580c;
    /* Darker Orange */
    --accent-color: #f59e0b;
    /* Amber/Gold */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --gradient-main: #f97216;
    --gradient-text: #f97216;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.text-gradient {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(249, 114, 22, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 114, 22, 0.23);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--white);
    /* Changed to white for dark hero */
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: #f0f0f0;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    color: var(--text-dark);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    overflow: hidden;
    background: #151d30;
    /* Dark Background */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(249, 114, 22, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
    /* White text */
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #d1d5db;
    /* Light gray text */
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero-form-wrapper {
    flex: 1;
    max-width: 480px;
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-main);
}

.hero-form {
    padding: 35px 30px 30px;
}

.hero-form h3 {
    margin-bottom: 5px;
    font-size: 1.6rem;
    text-align: center;
    color: #111827;
}

.hero-form>p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.form-group {
    margin-bottom: 14px;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #f9fafb;
    color: #1f2937;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    padding-left: 16px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(249, 114, 22, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.hero-form .btn-block {
    padding: 16px;
    font-size: 1.05rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
}

.hero-form .btn-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-form .btn-block:hover::after {
    width: 400px;
    height: 400px;
}

.form-note {
    font-size: 0.78rem;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
    color: #9ca3af;
}

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: rgba(249, 114, 22, 0.03);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

/* Sections Common */
section {
    padding: 80px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.2rem;
}

/* Services Section */
.services {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 114, 22, 0.03);
    pointer-events: none;
}

.services .section-header h2 {
    color: #111827;
}

.services .section-header p {
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(249, 114, 22, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(249, 114, 22, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: attr(data-num);
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-main);
    transition: width 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 114, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::after {
    width: 100%;
}

/* Featured card */
.service-card.featured {
    background: #fff8f1;
    border-color: rgba(249, 114, 22, 0.25);
}

.service-card.featured::after {
    width: 100%;
    background: var(--gradient-main);
    height: 3px;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-card .icon-box {
    width: 56px;
    height: 56px;
    background: rgba(249, 114, 22, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #111827;
}

.service-card>p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popular-tag {
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.service-list {
    margin-top: 0;
    margin-bottom: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #4b5563;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
    width: 100%;
    transition: var(--transition);
}

.card-link i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.card-link:hover {
    color: var(--accent-color);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Services Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 16px;
    }

    .service-card {
        padding: 22px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }
}

/* Process Section */
.process {
    background: #ffffff;
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 114, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

.step-number-badge {
    display: inline-block;
    background: #f3f4f6;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.step-card:hover .step-number-badge {
    background: rgba(249, 114, 22, 0.1);
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: #111827;
}

.step-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #6b7280;
    line-height: 1.6;
}

/* Process Responsive */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process {
        padding: 70px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 28px 22px;
    }
}

/* Industries Section */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.industry-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    cursor: default;
}

.industry-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.industry-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Testimonials */
.testimonials {
    background: #f8fafc;
    padding: 100px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.testi-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    width: 70px;
    padding-right: 15px;
    border-right: 1px dashed #e5e7eb;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.testi-stats {
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    font-family: var(--font-heading);
}

.stat-desc {
    font-size: 0.65rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.testi-right {
    flex: 1;
}

.stars {
    color: var(--accent-color);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.6;
}

.client-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
}

.client-meta strong {
    color: #111827;
    font-weight: 600;
}

.meta-divider {
    color: #d1d5db;
}

.service-pill {
    background: rgba(249, 114, 22, 0.1);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: auto;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card {
        flex-direction: column;
        align-items: stretch;
    }

    .testi-left {
        flex-direction: row;
        width: 100%;
        border-right: none;
        border-bottom: 1px dashed #e5e7eb;
        padding-right: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
        justify-content: flex-start;
    }

    .testi-stats {
        margin-left: auto;
        text-align: right;
    }
}

/* Freelancer CTA */
.freelancer-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box p {
    color: #d1d5db;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefits li {
    font-size: 1.1rem;
}

.cta-benefits li i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* FAQ Section */
.faq-section {
    background: #fdfdfd;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    margin-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 10px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background: #f8fafc;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1567&q=80') no-repeat center center/cover;
    position: relative;
    color: var(--white);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.final-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.final-cta .btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.logo-footer {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.logo-footer span {
    color: var(--primary-color);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        text-align: center;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header .btn {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .newsletter-box {
        padding: 30px;
    }

    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Quote Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
}

.modal-content h2 {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 25px;
    font-weight: 700;
}

.quote-form .form-group {
    margin-bottom: 15px;
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #374151;
    background: #fff;
    transition: border-color 0.2s;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 114, 22, 0.1);
}

.quote-form .btn {
    margin-top: 10px;
    font-weight: 600;
    padding: 14px;
    font-size: 1rem;
}

/* Freelancer Modal Specifics */
#freelancerModal .modal-content {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.form-section {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.freelancer-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(249, 114, 22, 0.4);
    z-index: 1001;
    transition: var(--transition);
    animation: pulse-call 2s infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 114, 22, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(249, 114, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 114, 22, 0);
    }
}

@media (max-width: 768px) {
    .floating-call {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}