/* style/contact.css */

/* --- General Page Styling --- */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey text on dark background */
    background-color: #0F1D33; /* Slightly darker than main blue for body background */
}

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

.page-contact__section-title {
    color: #FFD700; /* Gold for section titles */
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

/* --- Hero Section --- */
.page-contact__hero {
    background: linear-gradient(135deg, #1A2B47, #0F1D33);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background */
    z-index: 0;
}

.page-contact__hero-title,
.page-contact__hero-description {
    position: relative; /* Ensure text is above the image */
    z-index: 1;
}

.page-contact__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #D0D0D0;
}

/* --- Contact Info Section --- */
.page-contact__info-section {
    padding: 80px 0;
    background-color: #1A2B47;
    position: relative;
    overflow: hidden;
}

.page-contact__info-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1; /* Very subtle */
    z-index: 0;
}

.page-contact__grid {
    position: relative; /* Ensure content is above background image */
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.page-contact__contact-details {
    background-color: #0F1D33;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__contact-details .page-contact__section-title {
    text-align: left;
    font-size: 2em;
    margin-bottom: 30px;
    padding-bottom: 5px;
}
.page-contact__contact-details .page-contact__section-title::after {
    left: 0;
    transform: translateX(0);
    width: 60px;
}

.page-contact__detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.page-contact__icon {
    width: 30px;
    height: 30px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: #1A2B47;
    font-size: 1.2em;
}
/* Placeholder for actual icons - assuming a font icon library or custom SVGs would be used */
.page-contact__icon--email::before { content: '\f0e0'; font-family: 'Font Awesome 5 Free'; font-weight: 900; } /* Example using Font Awesome */
.page-contact__icon--phone::before { content: '\f095'; font-family: 'Font Awesome 5 Free'; font-weight: 900; }
.page-contact__icon--address::before { content: '\f3c5'; font-family: 'Font Awesome 5 Free'; font-weight: 900; }

.page-contact__detail-heading {
    font-size: 1.2em;
    color: #FFD700;
    margin: 0;
}

.page-contact__detail-text {
    font-size: 1.1em;
    color: #D0D0D0;
    margin: 0;
    margin-left: 10px; /* Adjust spacing for text next to heading */
}

/* Social Links */
.page-contact__social-links {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.page-contact__social-links .page-contact__detail-heading {
    margin-bottom: 20px;
    font-size: 1.3em;
}

.page-contact__social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #1A2B47;
    border: 2px solid #FFD700;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.5em;
    color: #FFD700;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-icon:hover {
    background-color: #FFD700;
    color: #1A2B47;
}

/* Placeholder for actual social icons - assuming Font Awesome */
.page-contact__social-icon--facebook::before { content: '\f09a'; font-family: 'Font Awesome 5 Brands'; }
.page-contact__social-icon--twitter::before { content: '\f099'; font-family: 'Font Awesome 5 Brands'; }
.page-contact__social-icon--telegram::before { content: '\f2c6'; font-family: 'Font Awesome 5 Brands'; }

/* --- Contact Form --- */
.page-contact__contact-form {
    background-color: #0F1D33;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__contact-form .page-contact__section-title {
    text-align: left;
    font-size: 2em;
    margin-bottom: 30px;
    padding-bottom: 5px;
}
.page-contact__contact-form .page-contact__section-title::after {
    left: 0;
    transform: translateX(0);
    width: 60px;
}

.page-contact__form-group {
    margin-bottom: 20px;
}

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1em;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #3A4B6B;
    border-radius: 5px;
    background-color: #1A2B47;
    color: #FFFFFF;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #8899BB;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700;
    outline: none;
}

.page-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__submit-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B47;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__submit-btn:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

/* --- CTA Kubet Section --- */
.page-contact__cta-kubet {
    background-color: #1A2B47;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.page-contact__cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtle background */
    z-index: 0;
}

.page-contact__cta-content {
    position: relative; /* Ensure content is above background image */
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-contact__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-contact__cta-description {
    font-size: 1.2em;
    color: #D0D0D0;
    line-height: 1.6;
    margin-bottom: 40px;
}

.page-contact__cta-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B47;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-btn:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .page-contact__grid {
        grid-template-columns: 1fr;
    }

    .page-contact__contact-details,
    .page-contact__contact-form {
        padding: 30px;
    }

    .page-contact__hero-title {
        font-size: 3em;
    }

    .page-contact__section-title {
        font-size: 2em;
    }

    .page-contact__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-contact__hero {
        padding: 80px 0;
    }

    .page-contact__hero-title {
        font-size: 2.5em;
    }

    .page-contact__hero-description {
        font-size: 1.1em;
    }

    .page-contact__info-section,
    .page-contact__cta-kubet {
        padding: 60px 0;
    }

    .page-contact__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-contact__contact-details .page-contact__section-title,
    .page-contact__contact-form .page-contact__section-title {
        font-size: 1.8em;
    }

    .page-contact__cta-title {
        font-size: 1.8em;
    }

    .page-contact__cta-description {
        font-size: 1em;
    }

    .page-contact__cta-btn {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 60px 0;
    }

    .page-contact__hero-title {
        font-size: 2em;
    }

    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__info-section,
    .page-contact__cta-kubet {
        padding: 40px 0;
    }

    .page-contact__contact-details,
    .page-contact__contact-form {
        padding: 20px;
    }

    .page-contact__section-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .page-contact__contact-details .page-contact__section-title,
    .page-contact__contact-form .page-contact__section-title {
        font-size: 1.5em;
    }

    .page-contact__detail-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .page-contact__icon {
        margin-bottom: 10px;
    }
    .page-contact__detail-text {
        margin-left: 0;
    }

    .page-contact__social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
        margin-right: 10px;
    }

    .page-contact__cta-title {
        font-size: 1.5em;
    }

    .page-contact__cta-btn {
        padding: 10px 25px;
        font-size: 1em;
    }
}