/* contact.css */

:root {
    --navy-blue: #002B5B;
    --orange: #FF5C00;
    --light-orange: #FFAA5A;
    --light-gray: #f5f5f7;
    --dark-gray: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

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

/* Main heading styles */
.contact-page h1 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Contact section layout */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-left {
    flex: 1;
    min-width: 300px;
}

.contact-right {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-gray);
    position: relative;
}

.header-section {
    background-color: #0c2340;
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.header-nav {
    position: absolute;
    top: 20px;
    left: 20px;
}

.home-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--navy-blue);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.home-btn:hover {
    background-color: #007BFF;
    color: var(--white);
    border-color: #007BFF;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}
        
.header-section h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
}
        
.header-section p {
    margin: 10px 0 0;
    font-size: 1rem;
    opacity: 0.8;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Introduction text */
.intro-text {
    margin-bottom: 30px;
    max-width: 600px;
}

.intro-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Contact options styles */
.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.contact-option {
    flex: 1;
    min-width: 200px;
    background-color: var(--white);
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-option h3 {
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.contact-option .icon {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    font-size: 1.5rem;
}

.contact-option .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.contact-option .btn:hover {
    background-color: var(--light-orange);
}

/* Contact form styles */
.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.contact-form h2 {
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.submit-button {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--light-orange);
}

/* Contact info styles */
.contact-info {
    margin-top: 40px;
}

.contact-info h2 {
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--orange);
    margin-right: 10px;
    width: 20px;
}

/* Map section styles */
.map-section {
    margin-top: 40px;
}

.map-section h2 {
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.map-section iframe {
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Circular pie chart graphic in header */
.circle-graphic {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -30px;
    right: 50px;
    background: conic-gradient(
        var(--orange) 0% 25%, 
        var(--light-orange) 25% 50%, 
        #FFC48C 50% 75%, 
        #FFE0C2 75% 100%
    );
    border-radius: 50%;
    z-index: 1;
}

/* Phone number display */
.phone-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-top: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-right {
        display: none;
    }
    
    .contact-option {
        min-width: 100%;
    }
    
    .circle-graphic {
        display: none;
    }
    
    .header-nav {
        position: relative;
        top: auto;
        left: auto;
        text-align: left;
        margin-bottom: 20px;
    }
}