

/* --- Section 1: Hero Banner --- */
.hero-section {
    position: relative;
    height: 60vh; /* 60% of viewport height, adjust as needed */
    
    /* REPLACE THIS with your background image path */
    background-image: url('images/about/pexels-albinberlin-906982-1-scaled.jpg'); 
    
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% black overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
}

/* --- Section 2: Contact Info Cards --- */
.contact-info-section {
    background-color: #ffffff; /* White background for this section */
    padding: 80px 0;
}

.intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.intro-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 0 0 10px 0;
}

.intro-text p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.info-grid {
    display: flex;
    flex-wrap: wrap; /* Stacks on mobile */
    justify-content: center;
    gap: 30px;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #0d6efd; /* Blue from image */
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* --- Section 3: Map & Form --- */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light grey background */
}

/* Use a larger container for this section */
.container-large {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-form-grid {
    display: flex;
    flex-wrap: wrap; /* Stacks on mobile */
    gap: 30px;
    background-color: #ffffff; /* White card background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.map-container {
    flex: 1;
    min-width: 300px;
    min-height: 500px; /* Ensure map has height */
    border-radius: 4px;
    overflow: hidden; /* Clips the iframe to the border-radius */
}

.form-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group label::after {
    content: ' *';
    color: #d93025; /* Red asterisk */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ced4da;
    background-color: #f8f9fa;
    border-radius: 4px;
    box-sizing: border-box; /* Fixes padding issue */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group .char-counter {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
}

.submit-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #dc3545; /* Red color from image */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #c82333; /* Darker red on hover */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }

    .intro-text h2 {
        font-size: 2.2rem;
    }
}
/* --- CSS for your info cards --- */

.info-grid {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the cards */
    flex-wrap: wrap; /* Allows cards to stack on small screens */
    padding: 20px 0; /* Adds some top/bottom padding */
}

.info-card {
    /* Centers the icon and text vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px; /* Max width for each card */
}

/* This is the main style for the circular icon */
.info-icon {
    width: 70px;  /* Set the width of the circle */
    height: 70px; /* Set the height (must be same as width) */
    border: 2px solid #006978; /* This is the border color (teal) */
    border-radius: 50%; /* This makes it a circle */

    /* These 3 lines center the icon *inside* the circle */
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px; /* Space below the icon */
}

/* This styles the icon itself (the <i> tag) */
.info-icon i {
    font-size: 28px; /* Size of the icon */
    color: #006978; /* Color of the icon (matches border) */
}

/* Styling for your text */
.info-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
