﻿
.quote-section {
    padding: 100px 40px;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .quote-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><path d="M0,0 Q50,100 100,0 T200,0 Q250,100 300,0 T400,0 Q450,100 500,0 T600,0 Q650,100 700,0 T800,0 Q850,100 900,0 T1000,0 Q1050,100 1100,0 T1200,0" fill="none" stroke="#f0f0f0" stroke-width="1"/></svg>');
        background-repeat: repeat-x;
        background-position: top;
        opacity: 0.5;
        z-index: 0;
    }
.quote-content {
    position: relative;
    z-index: 1;
}

    .quote-content h1 {
        font-size: 40px;
        margin-bottom: 20px;
        color: #333;
    }

    .quote-content p {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
        color: #666;
    }

.contact-section {
    background-image: linear-gradient(#00000080, #00000080), url(https://www.ejetprocurement.com/images/pexels-rdne-7414284.avif);
    background-position: 0 0, 50%;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    margin-bottom:2.5em;
}

    .contact-section::before {
/*        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.2);
        z-index: 0;*/
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.contact-content {
    margin-top:50px;
    border: 1px solid #fff6;
    color: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
    background-color: #ffffff1a;
    border-radius: 10px;
    padding: 40px;
}

.contact-form {
    flex: 2;
}

    .contact-form h2 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .contact-form p {
        margin-bottom: 30px;
    }

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

    .form-group.full-width {
        flex: 100%;
    }

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 18px;
    background-color: transparent;
}
    select > option {
        color: #333;
    }
    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: #f39c12;
    }

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #1B3164;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    text-align:center;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .submit-btn:hover {
        background-color: #fff;
        color: #1B3164
    }

.contact-info {
    flex: 1;
    padding-left: 40px;
}

    .contact-info h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    align-items: flex-start;
    margin-bottom: 20px;
}
    .contact-item img{
        width:34px;
    }
    .contact-item a {
        font-size: 18px;
        line-height:30px;
    }
.contact-icon {
    font-size: 20px;
    margin-right: 10px;
    color: #f39c12;
}

.qr-code {
    margin-bottom: 40px;
}

    .qr-code p {
        margin-bottom: 15px;
        color: #666;
        font-size: 14px;
    }

.qr-code-image {
    width: 160px;
    border: 1px solid #e0e0e0;
    padding: 0px;
    background-color: white;
    display:inline-block;
}

    .qr-code-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .social-icon:hover {
        color: #f39c12;
    }
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav {
        flex-wrap: wrap;
    }

    .quote-content h1 {
        font-size: 24px;
    }

    .quote-content p {
        font-size: 14px;
    }
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 40px;
        margin-top: 20px;
    }

    .form-row {
        flex-direction: column;
    }
}
