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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-color: #105789;
    --accent-dark: #0D4570;
    --accent-light: #1A6FA0;
    --border-color: #e2e8f0;
    --gradient-start: #105789;
    --gradient-end: #0D4570;
    --shadow-light: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-medium: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-large: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

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

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-secondary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(16, 87, 137, 0.1);
    border: 1px solid rgba(16, 87, 137, 0.2);
    border-radius: 30px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: #f00061;
    color: white;
    box-shadow: 0 4px 20px rgba(16, 87, 137, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 87, 137, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-color);
}

.cta-button.secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 0 20px;
}

.stat {
    text-align: center;
    opacity: 0.95;
    min-width: 120px;
    flex: 0 0 auto;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 8px;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(16, 87, 137, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(13, 69, 112, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(16, 87, 137, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(13, 69, 112, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(26, 111, 160, 0.03) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float 20s infinite ease-in-out;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    top: -300px;
    right: -200px;
    animation: float 20s infinite ease-in-out;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-light), transparent);
    bottom: -200px;
    left: -100px;
    animation: float 15s infinite ease-in-out reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-dark), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 25s infinite ease-in-out;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about .container {
    position: relative;
    z-index: 2;
}

.decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-image {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
    max-width: 350px;
    pointer-events: none;
}

.image-placeholder {
    width: 100%;
    max-width: 350px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(16, 87, 137, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
    max-width: 350px;
    max-height: 250px;
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
}

.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.focus-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: rgba(16, 87, 137, 0.2);
}

.card-image {
    width: 100%;
    height: 120px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(16, 87, 137, 0.03);
}

.card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(16, 87, 137, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.focus-card:hover .icon-wrapper {
    background: rgba(16, 87, 137, 0.1);
    transform: scale(1.1);
}

.focus-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.focus-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Process Section */
.process {
    background: var(--bg-primary);
    padding: 120px 0;
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.process-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.highlight-point svg {
    flex-shrink: 0;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--accent-color);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.process-card:hover .step-circle {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.step-circle-inner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 87, 137, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.process-card:hover .step-circle-inner {
    background: var(--accent-color);
    color: white;
}

.step-info {
    flex: 1;
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: #f00061;
    opacity: 0.8;
    margin-bottom: 5px;
    line-height: 1;
}

.process-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Clients Section */
.clients {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.clients-showcase {
    margin-bottom: 80px;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    background: var(--bg-card);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100px;
    min-width: 0;
    box-shadow: var(--shadow-light);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(16, 87, 137, 0.2);
}

.client-logo svg {
    transition: all 0.3s ease;
    opacity: 0.8;
    max-width: 100%;
    height: auto;
}

.client-logo:hover svg {
    opacity: 1;
    transform: scale(1.05);
}

.testimonials {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-container {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

.testimonial-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
}

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

.quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(16, 87, 137, 0.05);
    border-radius: 50%;
    margin: 0 auto 30px;
}

.testimonial p {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(16, 87, 137, 0.2);
}

.author-info {
    text-align: left;
}

.author-info cite {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-style: normal;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(16, 87, 137, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.nav-btn:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(16, 87, 137, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.contact-info p {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Additional visual effects for professional aesthetic */
@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(16, 87, 137, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(16, 87, 137, 0.2), 0 0 40px rgba(16, 87, 137, 0.1);
    }
}

/* Professional hover effects */
.focus-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end), var(--accent-light), var(--gradient-start));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: glow 3s ease-in-out infinite;
}

.focus-card:hover::before {
    opacity: 0.1;
}

.client-logo::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.client-logo:hover::before {
    opacity: 0.05;
}

/* Scroll animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
}

@media (max-width: 1024px) {
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-image {
        right: 8%;
        max-width: 300px;
        opacity: 0.1;
    }

    .image-placeholder {
        max-width: 300px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
    }
    

    .hero-stats {
        gap: 50px;
        margin-top: 40px;
        padding: 0 10px;
    }

    .stat {
        min-width: 100px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .about-image {
        right: 5%;
        max-width: 250px;
        opacity: 0.05;
    }

    .image-placeholder {
        max-width: 250px;
        height: 180px;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .focus-areas {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .focus-card {
        padding: 30px 25px;
    }

    .card-image {
        height: 100px;
        margin-bottom: 20px;
    }

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



    .process-card {
        padding: 30px 25px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .step-circle {
        width: 60px;
        height: 60px;
    }

    .step-circle-inner {
        width: 35px;
        height: 35px;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .process-card h3 {
        font-size: 1.2rem;
    }

    .process-highlights {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .highlight-point {
        justify-content: center;
        gap: 30px;
    }



    .clients-showcase {
        margin-bottom: 60px;
    }

    .client-logo {
        padding: 20px;
        height: 80px;
    }

    .testimonial-container {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .testimonial p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .testimonial-controls {
        flex-direction: column;
        gap: 20px;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form {
        order: 2;
    }

    .contact-info {
        order: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .client-logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-stats {
        gap: 30px;
        margin-top: 30px;
        flex-direction: row;
        justify-content: space-around;
    }

    .stat {
        min-width: 80px;
        flex: 1;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .about-image {
        display: none;
    }
}