/* Contact Page Styles */

:root {
    --primary-red: var(--primary-color, #1B3565);
    --secondary-red: var(--accent-color, #E88D23);
    --dark-bg: #1a1a1a;
    --light-bg: #fff;
    --form-bg: #fff;
    --text-main: #333;
    --text-muted: #666;
    --transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Hero */
.contact-hero {
    height: 350px;
    background: url('../assets/discover_bg.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: #ccc;
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 5px;
    color: #888;
}

/* Contact Content */
.contact-content {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.section-title-small {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}

.dots-separator {
    display: flex;
    gap: 5px;
    margin-bottom: 40px;
}

.dots-separator span {
    width: 6px;
    height: 6px;
    background: #ddd;
    border-radius: 50%;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
    transition: var(--transition);
}


.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #111;
}

.info-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-text a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--primary-red);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.form-header {
    padding: 40px 40px 20px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form {
    padding: 0 40px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-group textarea {
    border-radius: 20px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: white;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(139, 0, 0, 0.2);
}

.form-social {
    background: var(--primary-red);
    padding: 25px;
    display: flex;
    justify-content: center;
}

.social-links-1 {
    display: flex;
    gap: 15px;
    flex-direction: row !important;
}

.social-links-1 a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links-1 a:hover {
    background: white;
    color: var(--primary-red);
    border-color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-header,
    .contact-form {
        padding: 30px 20px;
    }
}

/* Select dropdown styles */
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafafa;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: white;
    box-shadow: 0 5px 15px rgba(27, 53, 101, 0.05);
}

/* Form group label styles */
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Proud Defence Supplier Card styling */
.defence-supplier-card {
    margin-top: 40px;
    background: linear-gradient(135deg, #1B3565 0%, #102142 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(27, 53, 101, 0.15);
    transition: var(--transition);
}

.defence-supplier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(27, 53, 101, 0.25);
}

.supplier-badge-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-red, #E88D23);
    flex-shrink: 0;
}

.supplier-badge-icon svg {
    width: 24px;
    height: 24px;
}

.supplier-badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .defence-supplier-card {
        margin-top: 30px;
        flex-direction: column;
        text-align: center;
    }
}