/* ========================================= */
/*  STANDARD CORPORATE PAGE STYLES           */
/* ========================================= */

:root {
    --red: #e11d2e;
    --red-hover: #ff1f32;
    --black: #050505;
    --dark: #0b0b0b;
    --text: #ffffff;
    --muted: #9aa3af;
}

/* --- Hero Section --- */
.corp-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 5%;
    background-color: #0a0000;

    /* Background Image */
    background-image:
        linear-gradient(to right, rgba(5, 0, 0, 0.85) 0%, rgba(5, 0, 0, 0.6) 40%, rgba(5, 0, 0, 0.15) 70%, rgba(5, 0, 0, 0) 100%),
        url('images/corporate-hero-bg.png');
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: none;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.corp-hero .eyebrow {
    color: var(--red);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.corp-hero h1 {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
}

.corp-hero h1 span {
    color: var(--red);
}

.corp-hero p {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn.primary {
    background: var(--red);
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn.primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
}

/* --- Benefits Section --- */
.corp-benefits {
    padding: 40px 5%;
    background: #000;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--red);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #111;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
}

.benefit-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--muted);
    line-height: 1.5;
}

/* --- Trust Section --- */
.corp-trust {
    padding: 40px 20px;
    background: #080808;
    text-align: center;
}

.corp-trust p {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.trust-logos .logo {
    font-size: 20px;
    font-weight: 700;
}

/* --- Enquiry Form --- */
.corp-enquiry {
    padding: 80px 5%;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.enquiry-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 50px;
}

.enquiry-label {
    color: var(--red);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.enquiry-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 15px;
}

.enquiry-header h2 span {
    color: var(--red);
}

.enquiry-header p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    background: #141414;
}

.contact-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.contact-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

/* Form Card */
.form-card {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 45px;
}

.form-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.corp-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.btn.primary.full-width {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 30px 20px;
    }

    .success-details {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- Enquiry Success State --- */
.enquiry-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.checkmark-circle {
    stroke: var(--red);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--red);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.enquiry-success h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.enquiry-success .success-main {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 8px;
}

.enquiry-success .success-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto 35px;
}

.enquiry-success .success-sub strong {
    color: #ccc;
}

.success-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
}

.detail-icon {
    font-size: 18px;
}
