/* ===== RESET & VARIABLES ===== */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --white: #ffffff;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #3b82f6, #a855f7);
    --grad-primary-hover: linear-gradient(135deg, #2563eb, #9333ea);

    /* Accent Colors */
    --accent-blue: #0ea5e9;
    --accent-pink: #d946ef;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    --accent-purple: #a855f7;

    /* 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), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 20px 40px -10px rgba(168, 85, 247, 0.4);

    /* Border Radius */
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for the fixed header */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Gradients */
.background-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.gradient-blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.4;
    border-radius: 50%;
}

.blue-blob {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(248, 250, 252, 0) 70%);
}

.purple-blob {
    top: 20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(248, 250, 252, 0) 70%);
}

/* ===== COMPONENTS ===== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--grad-primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--white);
    color: var(--text-main);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.badge-icon {
    width: 14px;
    height: 14px;
}

.badge-light {
    background: #e0e7ff;
    color: var(--primary-dark);
    border: none;
    margin-bottom: 1rem;
}

/* Icons */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: white;
}

.icon-md {
    width: 56px;
    height: 56px;
    border-radius: 16px;
}

.icon-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.icon-wrapper i {
    width: 24px;
    height: 24px;
}

.icon-md i {
    width: 28px;
    height: 28px;
}

.icon-lg i {
    width: 32px;
    height: 32px;
}

/* Icon Colors */
.bg-blue {
    background-color: var(--accent-blue);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.25);
}

.bg-pink {
    background-color: var(--accent-pink);
    box-shadow: 0 8px 16px rgba(217, 70, 239, 0.25);
}

.bg-orange {
    background-color: var(--accent-orange);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.25);
}

.bg-green {
    background-color: var(--accent-green);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
}

.bg-purple {
    background-color: var(--accent-purple);
    box-shadow: 0 8px 16px rgba(168, 85, 247, 0.25);
}

/* Text Colors */
.text-blue {
    color: var(--accent-blue);
}

.text-pink {
    color: var(--accent-pink);
}

.text-orange {
    color: var(--accent-orange);
}

.text-green {
    color: var(--accent-green);
}

.text-purple {
    color: var(--accent-purple);
}

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

svg.lucide {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== LAYOUT & SECTIONS ===== */

/* Navbar */
.navbar {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 65vw;
}

.logo-img {
    height: 50px;
    max-height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.footer-brand .brand-name {
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.brand-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 10rem 0 8rem;
    text-align: center;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .badge {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 20px;
    background: var(--grad-primary);
    filter: blur(20px);
    opacity: 0.2;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Stats Section */
.stats {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    padding-bottom: 6rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.stat-card .icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Services Section */
.services {
    padding: 4rem 0 6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #d946ef, #a855f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px -10px rgba(217, 70, 239, 0.15), 0 10px 20px -5px rgba(168, 85, 247, 0.1);
    transform: translateY(-5px);
    border-color: transparent;
}

.service-card:hover::after {
    opacity: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stat-num {
    font-size: 1.25rem;
    font-weight: 800;
}

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

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.service-link i,
.service-link svg {
    width: 16px;
    height: 16px;
}

/* CTA Banner Section */
.cta-section {
    padding: 4rem 0;
}

.cta-banner {
    background: var(--grad-primary);
    border-radius: 2rem;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Process Section */
.process {
    padding: 6rem 0 8rem;
    background-color: var(--white);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-main), var(--white));
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, rgba(14, 165, 233, 0.3), rgba(217, 70, 239, 0.3), rgba(249, 115, 22, 0.3), rgba(16, 185, 129, 0.3));
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -15px;
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

.step-card {
    background: var(--bg-main);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    height: 100%;
    border: 1px solid #f1f5f9;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Process Card Colors */
.process-step:nth-child(2) .step-card {
    background-color: rgba(14, 165, 233, 0.05);
}

.process-step:nth-child(3) .step-card {
    background-color: rgba(217, 70, 239, 0.05);
}

.process-step:nth-child(4) .step-card {
    background-color: rgba(249, 115, 22, 0.05);
}

.process-step:nth-child(5) .step-card {
    background-color: rgba(16, 185, 129, 0.05);
}

.process-cta {
    margin-top: 5rem;
    text-align: center;
}

.process-cta p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Why Choose Us Section */
.why-us {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.badge-pink {
    background: rgba(217, 70, 239, 0.1);
    color: var(--accent-pink);
    border-color: rgba(217, 70, 239, 0.2);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-card {
    box-shadow: none;
    border: 1px solid #e2e8f0;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2.5rem;
}

.c-stat-num {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.c-stat-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-badge i,
.trust-badge svg {
    width: 16px;
    height: 16px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: #f0f4f8;
    /* slightly darker blue-gray for contrast */
}

.contact-container {
    max-width: 900px;
}

.badge-blue {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-blue);
    border-color: rgba(14, 165, 233, 0.2);
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.form-group label i,
.form-group label svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    background: #473de6;
    /* Solid indigo color matching the image */
    box-shadow: none;
}

.btn-block:hover {
    background: #3730a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(71, 61, 230, 0.3);
}

.contact-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.contact-info h4 {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.contact-info a,
.contact-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a {
    color: var(--primary);
    font-weight: 600;
}

.contact-info a i,
.contact-info a svg {
    width: 16px;
    height: 16px;
}

/* Footer */
.footer {
    background-color: #f8fafc;
    padding: 5rem 0 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    font-size: 0.95rem;
    max-width: 300px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    color: var(--text-muted);
    background: var(--white);
    transition: all 0.2s;
}

.social-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.footer-address i,
.footer-address svg {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

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

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.btn-link i,
.btn-link svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-legal a:hover {
    color: var(--text-main);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .why-us-grid,
    .company-stats,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-line {
        display: none;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

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

    .hero {
        padding: 6rem 0 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .stats {
        margin-top: 0;
        padding-bottom: 2rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .services,
    .cta-section,
    .process,
    .why-us,
    .contact-section {
        padding: 2.5rem 0;
    }

    .services-grid {
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .cta-banner {
        padding: 1.5rem 1.25rem;
    }

    .process-steps {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .why-us-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .company-stats {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .contact-form-card {
        padding: 1.5rem 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

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

    .services-grid,
    .why-us-grid,
    .company-stats,
    .footer-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-footer {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .logo-img {
        height: 40px;
        max-height: 40px;
        width: auto;
    }

    .nav-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .brand-tag {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1.5rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border-top: 1px solid #e2e8f0;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }
}