/* =============================================
   VARIABLES Y RESET
   ============================================= */
:root {
    /* High-Tech Palette */
    --primary-blue: #2563EB;
    /* Azure Blue */
    --electric-blue: #06B6D4;
    /* Cyan Accent */
    --dark-graphite: #0F172A;
    /* Slate 900 */
    --light-graphite: #1E293B;
    /* Slate 800 - Very Dark */
    --pure-white: #FFFFFF;
    --background-gray: #F8FAFC;
    /* Slate 50 */

    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --gradient-secondary: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Tech Glow Tokens */
    --shadow-sm: 0 2px 4px rgba(37, 99, 235, 0.05);
    --shadow-md: 0 8px 16px rgba(37, 99, 235, 0.08);
    /* Blueish tint */
    --shadow-lg: 0 12px 24px rgba(37, 99, 235, 0.12);
    /* Stronger glow */

    --border-radius: 4px;
    --transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-weight: 300;
    color: var(--dark-graphite);
    background-color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.navbar {
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    display: block;
}

/* Removed .logo h1 styles as we are now using an image */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-graphite);
    font-weight: 400;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-graphite);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Tech Grid Pattern */
    z-index: 1;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00D4FF 0%, #FFFFFF 100%);
    /* Cyan to White */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    /* Glow effect */
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: #CBD5E1;
    /* Slate 300 - Much lighter */
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--pure-white);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--electric-blue);
}

.btn-secondary:hover {
    background: var(--electric-blue);
    color: var(--dark-graphite);
    transform: translateY(-2px);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: 120px 0;
    background: var(--pure-white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-graphite);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--light-graphite);
    margin-top: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--pure-white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(23, 43, 77, 0.08);
    /* Clean border */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--pure-white);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-graphite);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    color: var(--light-graphite);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-line {
    height: 2px;
    width: 40px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.service-card:hover .service-line {
    width: 80px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: 120px 0;
    background: var(--background-gray);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.about-card {
    background: var(--pure-white);
    padding: 48px 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.about-card:hover::before {
    height: 100%;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.about-main {
    grid-column: span 1;
}

@media (min-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-main {
        grid-row: span 2;
    }
}

.about-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.about-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pure-white);
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-graphite);
    margin-bottom: 20px;
}

.about-card p {
    font-size: 15px;
    color: var(--light-graphite);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* =============================================
   PRODUCTOS Y SOLUCIONES SECTION
   ============================================= */
.solutions {
    padding: 120px 0;
    background: var(--pure-white);
    position: relative;
}

.solutions-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-item {
    background: var(--pure-white);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    padding: 36px 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

.solution-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.solution-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.solution-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
}

.solution-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-graphite);
    margin: 0;
}

.solution-item p {
    font-size: 15px;
    color: var(--light-graphite);
    line-height: 1.8;
    margin: 0;
}

.solution-featured {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 212, 255, 0.02) 100%);
}

.solution-features {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-features li {
    font-size: 15px;
    color: var(--light-graphite);
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 8px;
}

.feature-bullet {
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.why-choose {
    margin-top: 80px;
    text-align: center;
}

.why-choose h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-graphite);
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
}

.why-choose h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--pure-white);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.reason-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--pure-white);
    flex-shrink: 0;
}

.reason-item p {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-graphite);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats {
    padding: 80px 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-graphite);
    font-weight: 400;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
    padding: 100px 0;
    background: var(--pure-white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-graphite);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--light-graphite);
    margin-bottom: 40px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark-graphite);
    color: var(--light-graphite);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(141, 153, 174, 0.2);
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #94A3B8;
    /* Slate 400 - Light for dark footer */
}

.footer-website {
    margin-top: 12px;
}

.footer-website a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-website a:hover {
    color: var(--primary-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: #94A3B8;
    /* Slate 400 - Light for text items */
}

.footer-section ul li a {
    color: #94A3B8;
    /* Slate 400 - Light for dark footer */
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--electric-blue);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 32px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #94A3B8;
    /* Slate 400 - Light for copyright */
}

/* =============================================
   MOBILE MENU BUTTON
   ============================================= */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-graphite);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 968px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .nav-menu {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .navbar .container {
        justify-content: space-between;
        align-items: center;
        /* Removed flex-direction column to keep logo and button in a row */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        /* Adjust based on header height */
        flex-direction: column;
        background-color: var(--pure-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        font-size: 18px;
        font-weight: 500;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   CLIENTS CAROUSEL
   ============================================= */
.clients {
    padding: 80px 0;
    background: var(--pure-white);
    overflow: hidden;
}

.clients-slider {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 20px 0;
}

.clients-slider::before,
.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--pure-white), transparent);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--pure-white), transparent);
}

.clients-track {
    display: flex;
    width: calc(200px * 22);
    /* 200px * 22 slides (11 logos * 2) */
    animation: scroll 40s linear infinite;
}

.slide {
    width: 200px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.slide img:hover {
    transform: scale(1.1);
}

/* Specific class for white logos needing background */
.logo-card {
    width: 160px;
    height: 100px;
    background: var(--dark-graphite);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-card:hover {
    transform: translateY(-5px) !important;
    /* Override scale */
    border-color: var(--electric-blue);
    box-shadow: 0 8px 16px rgba(6, 182, 212, 0.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 11));
        /* Scroll half the track */
    }
}

/* =============================================
   CONTACT MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--light-graphite);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #F1F5F9;
    color: var(--danger-red, #EF4444);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-graphite);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 15px;
    color: var(--light-graphite);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-graphite);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--dark-graphite);
    transition: var(--transition);
    background: #F8FAFC;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--pure-white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form .btn-block {
    width: 100%;
    margin-top: 10px;
}