/* ===============================
   CORPORATE PAGE STYLES
================================= */

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0a1d3a, #122c5c);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 80px 20px;
}

.light-bg {
    background: #f5f7fb;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* Grid Layout */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-2 ul {
    margin-top: 20px;
    line-height: 1.8;
}

.grid-2 ul li {
    margin-bottom: 8px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 10px;
    color: #122c5c;
}

/* Images */
.responsive-img {
    width: 100%;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    background: #0a1d3a;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Button */
.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #ff6b00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #e65c00;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 32px;
    }
}

/* RFQ FORM */
.rfq-form {
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Brands */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.brand {
    background: #f4f6fa;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.brand:hover {
    background: #122c5c;
    color: #fff;
}