@charset "UTF-8";

/* ===== GLOBAL RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: #0f3b5e;
    color: #fff;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, transform 0.15s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1a5276;
    transform: translateY(-2px);
}

.btn-primary i {
    margin-left: 8px;
}

.btn-orange {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.15s ease;
    border: none;
    cursor: pointer;
}

.btn-orange:hover {
    background: #cf711f;
    transform: translateY(-2px);
}

.btn-orange i {
    margin-left: 8px;
}

.btn-submit {
    display: inline-block;
    background: #0f3b5e;
    color: #fff;
    padding: 16px 48px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.btn-submit:hover {
    background: #1a5276;
    transform: translateY(-2px);
}

.btn-submit i {
    margin-right: 8px;
}

/* ===== HEADER / NAV ===== */
header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #0f3b5e;
    letter-spacing: -0.5px;
}

.logo span {
    color: #e67e22;
}

nav a {
    color: #1e293b;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #e67e22;
}

nav a.active {
    color: #e67e22;
    font-weight: 700;
}

.nav-cta {
    background: #e67e22;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #cf711f !important;
    color: #fff !important;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0a2a40 0%, #1a4a6a 100%);
    color: #fff;
    padding: 80px 0 90px;
    border-radius: 0 0 60px 60px;
    margin-bottom: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: #f39c12;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.hero-stats div {
    text-align: center;
}

.hero-stats strong {
    font-size: 32px;
    display: block;
    color: #f39c12;
}

.hero-stats span {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    background: rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-image h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #f39c12;
}

.hero-image h3 i {
    margin-right: 10px;
}

.hero-image p {
    font-size: 16px;
    opacity: 0.85;
}

.hero-tag {
    display: inline-block;
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-tag i {
    margin-right: 6px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.section-sub {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #0a2a40 0%, #1a4a6a 100%);
    color: #fff;
    padding: 60px 0 70px;
    border-radius: 0 0 60px 60px;
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
}

.page-header h1 span {
    color: #f39c12;
}

.page-header p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 12px auto 0;
}

/* ===== SERVICES ===== */
.services {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border-top: 5px solid #0f3b5e;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.service-card .number {
    font-size: 14px;
    font-weight: 700;
    color: #e67e22;
    background: #fef3e8;
    display: inline-block;
    padding: 2px 14px;
    border-radius: 40px;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card h3 i {
    margin-right: 8px;
}

.service-card p {
    color: #475569;
    font-size: 15px;
}

.service-card .link {
    display: inline-block;
    margin-top: 16px;
    color: #0f3b5e;
    font-weight: 600;
    text-decoration: none;
}

.service-card .link:hover {
    color: #e67e22;
}

.service-card .link i {
    margin-left: 6px;
}

/* ===== CERTIFICATES ===== */
.certificates {
    background: #ffffff;
    padding: 60px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.cert-item {
    background: #f8fafc;
    padding: 20px 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #e9edf2;
    transition: all 0.2s;
}

.cert-item:hover {
    border-color: #0f3b5e;
    background: #f0f4fa;
    transform: scale(1.02);
}

.cert-item .badge {
    display: block;
    font-size: 28px;
    margin-bottom: 6px;
}

.cert-item .badge i {
    font-size: 28px;
}

.cert-item .desc {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

/* ===== WHY US ===== */
.why-us {
    background: #ffffff;
    padding: 70px 0;
    border-radius: 60px 60px 0 0;
    margin-top: 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-item {
    background: #f8fafc;
    padding: 30px 24px;
    border-radius: 20px;
    text-align: center;
    transition: 0.2s;
}

.why-item:hover {
    background: #eef2f6;
}

.why-item .icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.why-item .icon i {
    font-size: 36px;
    color: #e67e22;
}

.why-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 14px;
    color: #475569;
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: 70px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.industry-tag {
    background: #fff;
    padding: 16px 12px;
    text-align: center;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: 0.2s;
    border: 1px solid #e9edf2;
}

.industry-tag:hover {
    border-color: #0f3b5e;
    background: #f0f4fa;
}

.industry-tag i {
    margin-right: 6px;
    color: #e67e22;
}

/* ===== CAPABILITIES ===== */
.capabilities {
    background: #0a2a40;
    color: #fff;
    padding: 70px 0;
    border-radius: 60px 60px 0 0;
    margin-top: 20px;
}

.capabilities .section-sub {
    color: rgba(255,255,255,0.7);
}

.cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.cap-item {
    background: rgba(255,255,255,0.06);
    padding: 28px;
    border-radius: 20px;
    border-left: 4px solid #f39c12;
}

.cap-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #f39c12;
}

.cap-item h4 i {
    margin-right: 8px;
}

.cap-item p {
    opacity: 0.8;
    font-size: 15px;
}

/* ===== VISION / MISSION ===== */
.vm-section {
    padding: 70px 0 50px;
    background: #fff;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.vm-box {
    background: #f8fafc;
    padding: 36px 32px;
    border-radius: 24px;
    text-align: center;
}

.vm-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f3b5e;
}

.vm-box h3 i {
    margin-right: 8px;
}

.vm-box p {
    color: #475569;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 40px 0 60px;
}

.about-content .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-content .about-text h2 {
    font-size: 32px;
    color: #0f3b5e;
    margin-bottom: 16px;
}

.about-content .about-text p {
    color: #475569;
    font-size: 16px;
    margin-bottom: 16px;
}

.about-content .about-image {
    background: #0a2a40;
    color: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
}

.about-content .about-image h3 {
    font-size: 28px;
    color: #f39c12;
    margin-bottom: 12px;
}

.about-content .about-image h3 i {
    margin-right: 10px;
}

.about-content .about-image ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.about-content .about-image ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-content .about-image ul li:last-child {
    border-bottom: none;
}

.about-content .about-image ul li::before {
    content: "? ";
    color: #f39c12;
    font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 70px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: #fff;
    padding: 40px 36px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.contact-info h3 {
    font-size: 24px;
    color: #0f3b5e;
    margin-bottom: 20px;
}

.contact-info h3 i {
    margin-right: 8px;
    color: #e67e22;
}

.contact-info .item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9edf2;
}

.contact-info .item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info .item .icon {
    font-size: 20px;
    min-width: 30px;
    color: #e67e22;
}

.contact-info .item .label {
    font-weight: 600;
    font-size: 14px;
    color: #64748b;
}

.contact-info .item .value {
    font-size: 15px;
    color: #1e293b;
}

.contact-info .item .value a {
    color: #0f3b5e;
    text-decoration: none;
}

.contact-info .item .value a:hover {
    color: #e67e22;
    text-decoration: underline;
}

.contact-emails {
    background: #fff;
    padding: 40px 36px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.contact-emails h3 {
    font-size: 24px;
    color: #0f3b5e;
    margin-bottom: 20px;
}

.contact-emails h3 i {
    margin-right: 8px;
    color: #e67e22;
}

.contact-emails .email-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e9edf2;
}

.contact-emails .email-item:last-child {
    border-bottom: none;
}

.contact-emails .email-item .icon {
    font-size: 18px;
    color: #e67e22;
}

.contact-emails .email-item a {
    color: #0f3b5e;
    text-decoration: none;
    font-weight: 500;
}

.contact-emails .email-item a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* ===== CONSULTATION FORM ===== */
.consultation-page {
    padding: 60px 0;
    background: #f8fafc;
    min-height: 80vh;
}

.consultation-page .container {
    max-width: 800px;
}

.consultation-page h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0f3b5e;
    text-align: center;
    margin-bottom: 12px;
}

.consultation-page h1 i {
    margin-right: 10px;
}

.consultation-page .subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

.consultation-form {
    background: #fff;
    padding: 48px 40px;
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.consultation-form .form-group {
    margin-bottom: 24px;
}

.consultation-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1e293b;
    font-size: 14px;
}

.consultation-form label .required {
    color: #e74c3c;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9edf2;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fafbfc;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #0f3b5e;
    background: #fff;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 120px;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.consultation-form .checkbox-group input {
    width: auto;
    width: 20px;
    height: 20px;
    accent-color: #0f3b5e;
}

.consultation-form .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    color: #475569;
}

.consultation-form .form-submit {
    text-align: center;
    margin-top: 12px;
}

/* ===== ALERTS ===== */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success i {
    margin-right: 8px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-error i {
    margin-right: 8px;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #0f3b5e, #1a5276);
    color: #fff;
    padding: 70px 0;
    border-radius: 60px 60px 0 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ===== FOOTER ===== */
footer {
    background: #0a1e2b;
    color: rgba(255,255,255,0.6);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

footer strong {
    color: #fff;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer i {
    margin-right: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero p {
        margin: 0 auto 30px;
    }
    .hero-stats {
        justify-content: center;
    }
    .services-grid,
    .why-grid,
    .cap-grid {
        grid-template-columns: 1fr 1fr;
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }
    .about-content .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-flex {
        flex-direction: column;
        gap: 16px;
    }
    nav a {
        margin: 0 10px;
        font-size: 14px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .page-header h1 {
        font-size: 32px;
    }
    .services-grid,
    .why-grid,
    .cap-grid,
    .vm-grid {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cert-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .section-title {
        font-size: 28px;
    }
    .cta-section h2 {
        font-size: 28px;
    }
    .contact-info,
    .contact-emails {
        padding: 24px 20px;
    }
    .consultation-form {
        padding: 24px 18px;
    }
    .consultation-page h1 {
        font-size: 30px;
    }
}