﻿

/* ===============================
   GLOBAL FIX
================================ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===============================
   PAGE TITLE
================================ */
.page-title {
    text-align: center;
    margin-bottom: 32px;
}

    .page-title h1 {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
        color: #1e3a5f;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title p {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        color: #5a6c7d;
    }

/* ===============================
   GRID LAYOUT
================================ */
.grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===============================
   CARD & FORM
================================ */
.contact-form-container,
.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(30,58,95,0.1);
    border: 1px solid rgba(30,58,95,0.08);
}

@media (max-width: 576px) {
    .contact-form-container,
    .card {
        padding: 20px;
    }
}

.card h2 {
    font-size: 1.3rem;
    color: #1e3a5f;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f0f7;
}

/* ===============================
   FORM
================================ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        gap: 16px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 10px;
}

.req,
.error-message {
    color: red;
    font-size: 14px;
}

/* INPUTS */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.2s ease;
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: #1e3a5f;
        box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===============================
   BUTTON
================================ */
.btn-wrapper {
    display: flex;
    justify-content: center;
}

.submit-btn {
    background: linear-gradient(135deg,#1e3a5f 0%,#2d5a87 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

@media (max-width: 576px) {
    .submit-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   OBJECTIVE LIST
================================ */
.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .objectives-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #4a5d6e;
        margin-bottom: 14px;
    }

.bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #2d5a87, #1e3a5f);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* ===============================
   FOOTER CTA
================================ */
.footer-cta {
    background: linear-gradient(90deg,#1e3a5f 0%,#2d5a87 50%,#1e3a5f 100%);
    padding: 24px 16px;
    margin-top: 40px;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: clamp(16px, 3vw, 22px);
    text-align: center;
}

@media (max-width: 576px) {
    .footer-content {
        flex-direction: column;
    }
}

.contact-btn {
    background-color: #ffffff;
    color: #1e3a5f;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* ===============================
   HERO SECTION
================================ */
/* ===============================
   HERO SECTION FIX (ALL DEVICES)
================================ */
:root {
    --bg1: #020617;
    --bg2: #0f172a;
    --product: #ff7a00;
    --technique: #22c55e;
    --enduser: #06b6d4;
    --application: #3b82f6;
    --region: #8b5cf6;
    --navy-dark: hsl(213, 90%, 10%);
    --navy: hsl(213, 80%, 20%);
    --navy-light: hsl(213, 70%, 35%);
    --hero-gradient-start: hsl(213, 85%, 18%);
    --hero-gradient-end: hsl(213, 75%, 28%);
    --gold: hsl(45, 100%, 50%);
}

.hero-section {
    background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    color: #ffffff;
    padding: 16px;
    overflow-x: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 12px 0;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 13px;
    margin-top: 8px;
}

    .breadcrumb a {
        color: #ffffff;
        text-decoration: none;
    }

.separator {
    margin: 0 6px;
    opacity: 0.7;
}

/* Title */
.hero-title {
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    margin: 8px 0 12px;
    text-align: center;
}

/* Description */
.hero-description {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 100%;
}

/* Meta Info */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 13px;
}

.meta-item strong {
    color: #ffca28;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===============================
   MOBILE FIX
================================ */
@media (max-width: 576px) {
    .hero-container {
        gap: 20px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

        .hero-buttons a,
        .hero-buttons button {
            width: 100%;
            text-align: center;
        }
}

/* ===============================
   LARGE PHONES FIX (Pro Max etc.)
================================ */
@media (min-width: 577px) and (max-width: 991px) {
    .hero-container {
        padding: 16px 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }
}
