:root {
    --primary-color: #035ab0;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --background-color: #f5f5f5;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
    padding: 0 5%;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: transparent;
}

.logo img {
    max-width: 250px;
    max-height: 250px;
    background: transparent;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 2rem;
    transition: color 0.3s ease;
}

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

.nav-links a[href="/blog"] {
    color: var(--primary-color);
    position: relative;
}

.nav-links a[href="/blog"]::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.7;
}

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0052a3;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    position: relative;
    overflow: visible;
    margin-top: 150px;
    padding: 3rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/technology-background.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    width: 90%;
    margin: 2rem auto 0 auto;
    padding: 2rem 2rem 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* AI Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.ai-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.neural-network {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

.node:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.node:nth-child(2) {
    top: 10%;
    right: 30%;
    animation-delay: 0.4s;
}

.node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 0.8s;
}

.node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.2s;
}

.node:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.6s;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: flow 3s infinite;
}

.connection:nth-child(6) {
    top: 25%;
    left: 25%;
    width: 150px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.connection:nth-child(7) {
    bottom: 35%;
    left: 15%;
    width: 200px;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.connection:nth-child(8) {
    top: 40%;
    right: 25%;
    width: 120px;
    transform: rotate(60deg);
    animation-delay: 2s;
}

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

@keyframes flow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: #f8fafc;
}

.container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: left;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: #475569;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.feature h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #64748b;
    margin: 0;
}

/* Partnership Diagram */
.partnership-diagram {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.partnership-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.partnership-step:hover {
    background: #e2e8f0;
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-title {
    font-weight: 600;
    color: #1e293b;
}

.step-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin-top: 0.25rem;
    text-align: left;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: #f8fafc;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member-image {
    position: relative;
    flex-shrink: 0;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
}

.member-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem !important;
}

.member-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-expertise h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.member-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

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

.stat-item .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-section {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-size: 0.9rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-section a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 150px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 150px);
        background-color: var(--secondary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
        display: flex;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        width: 80%;
        text-align: center;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .nav-links a:hover {
        background-color: #f0f0f0;
    }

    .cta-button {
        margin-top: 1rem !important;
        width: 80% !important;
        text-align: center !important;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Section spacing */
section {
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1400px;
    width: 95%;
}

/* Large Screen Optimizations */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1600px;
        width: 85%;
        gap: 6rem;
    }

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

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

    .hero-visual {
        height: 500px;
    }

    .ai-animation {
        width: 400px;
        height: 400px;
    }
}

@media (min-width: 1920px) {
    .hero-container {
        max-width: 1800px;
        width: 80%;
        gap: 8rem;
    }

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

    .hero-visual {
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
}

/* Featured Product Section */
.featured-product {
    padding: 5rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.featured-product-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 5%;
}

.featured-product-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.featured-product-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.featured-product-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-product-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.featured-product-btn:hover {
    background-color: #024a94;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .featured-product {
        padding: 3.5rem 0;
    }

    .featured-product-content h2 {
        font-size: 1.5rem;
    }
}

/* Call to Action Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/technology-background.png') center/cover;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}


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

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    color: rgba(255,255,255,0.95);
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
}

.benefit i {
    color: #ffd700;
    font-size: 1.2rem;
    width: 20px;
}

.cta-action {
    background: rgba(255, 255, 255, 0.06);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(2,6,23,0.35);
}

.cta-action h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.cta-action ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.cta-action li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: rgba(255,255,255,0.95);
}

.cta-action li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.28s cubic-bezier(.2,.9,.2,1);
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    background: rgba(255,255,255,0.15);
}

.cta-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
    font-style: italic;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-action {
        padding: 30px 20px;
    }

    .cta-benefits {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .benefit {
        font-size: 0.9rem;
    }
}

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

    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-section {
            margin: 0.5rem 0;
        }

        /* Hero responsive styles */
        .hero {
            min-height: auto;
            /* margin-top: 150px is set in inline styles */
            padding: 1.5rem 0;
            display: block;
        }

        .hero-container {
            grid-template-columns: 1fr;
            gap: 0.5rem;
            text-align: center;
            padding: 0 1rem;
            margin-top: 0;
            align-items: flex-start;
            display: block;
        }

        .hero-content {
            text-align: center;
            margin-bottom: 1rem;
        }

        .hero-visual {
            height: 80px;
            margin-bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .ai-animation {
        width: 80px;
        height: 80px;
    }

    /* Team responsive styles */
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .team-member img {
        width: 160px;
        height: 160px;
    }

    .member-stats {
        justify-content: center;
    }

    .expertise-tags {
        justify-content: center;
    }

    /* About responsive styles */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
        gap: 2rem;
    }

    .about-text {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

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

    /* Hero mobile styles */
    .hero {
        min-height: auto !important;
        /* margin-top is set in inline styles */
        padding: 1.5rem 0 !important;
    }

    .hero-container {
        margin: 0 auto !important;
        padding: 0 1rem !important;
        gap: 0.5rem !important;
    }

    .hero-content {
        margin-bottom: 0.5rem !important;
    }

    .hero-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0.5rem !important;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .hero-visual {
        height: 60px !important;
        margin-bottom: 0 !important;
    }

    .ai-animation {
        width: 60px !important;
        height: 60px !important;
    }

    .team-member {
        padding: 1.5rem;
    }

    .team-member img {
        width: 140px;
        height: 140px;
    }

    .member-info h3 {
        font-size: 1.5rem;
    }

    .member-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* About mobile styles */
    .about-text h2 {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .partnership-diagram {
        padding: 1rem;
        text-align: left;
    }

    .partnership-step {
        padding: 0.75rem;
        text-align: left;
    }

    .step-content {
        text-align: left;
    }

    .step-title {
        text-align: left;
    }

    .step-description {
        font-size: 0.8rem;
        text-align: left;
    }
}

/* =====================
   Contact Section
   ===================== */
.contact-section {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

/* =====================
   Contact Form
   ===================== */
.contact-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.contact-form-row .contact-form-group {
    margin-bottom: 0;
}

.contact-form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 5px;
}

.contact-form-group .required {
    color: var(--primary-color);
    margin-left: 2px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 10px 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    background-color: #f8fafc;
    padding-right: 36px;
    cursor: pointer;
}

.contact-form-group select option {
    background: #ffffff;
    color: #1e293b;
}

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

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(3, 90, 176, 0.1);
    background: #ffffff;
}

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

.contact-submit-btn {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: 6px;
    width: 100%;
    justify-content: center;
    background: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
}

.contact-submit-btn:hover {
    background: #024a94;
    border-color: #024a94;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(3, 90, 176, 0.25);
}

.contact-submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.contact-privacy-note {
    font-size: 0.78rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
}

.form-status {
    display: none;
    text-align: center;
    border-radius: 8px;
    padding: 11px 16px;
    margin-top: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 600px) {
    .contact-section {
        padding: 4rem 0;
    }

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

    .contact-form-row .contact-form-group {
        margin-bottom: 14px;
    }

    .contact-form-row .contact-form-group:last-child {
        margin-bottom: 0;
    }
}
