/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #0025aa;
    --light-blue: #e6f0ff;
    --dark-text: #333;
    --white: #fff;
    --gray: #f4f4f4;
}

body { margin: 0; font-family: 'Poppins', sans-serif; color: var(--dark-text); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh;}
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }
footer { margin-top: auto; } /* Keeps footer at bottom */

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav .logo { font-weight: 700; font-size: 1.5rem; color: var(--primary-blue); }
nav ul { display: flex; gap: 20px; }
nav .btn-nav {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

/* Page Headers */
.page-header {
    background-color: var(--light-blue);
    padding: 60px 5%;
    text-align: center;
}
.page-header h1 { color: var(--primary-blue); margin-bottom: 10px; }

/* Sections */
section { padding: 60px 5%; max-width: 1200px; margin: 0 auto; }
h2 { color: var(--primary-blue); margin-bottom: 20px; }

/* Contact Form Specifics */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.contact-info { flex: 1; min-width: 300px; }
.contact-form-wrapper { flex: 2; min-width: 800px; }

.google-form-container {
    background: #eee;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    /* Removed fixed height to allow iframe to expand */
}

iframe { 
    width: 100%; 
    border: none; 
    height: 1600px; /* Sufficient height for the form */
    display: block; 
}

/* Footer */
footer { background: #222; color: #ccc; padding: 50px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-bottom { text-align: center; border-top: 1px solid #444; padding-top: 20px; font-size: 0.9rem; }

/* Mobile */
@media (max-width: 768px) {
    nav ul { display: none; } 
    .top-bar { flex-direction: column; text-align: center; gap: 5px; }
}

/* UPDATED Form Styles in styles.css */
/* 1. Standard text fields remain full width */
input[type="text"], 
input[type="tel"], 
input[type="email"], 
select, 
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}

/* 2. Styles for the Radio Buttons (Best Time to Contact) */
.radio-group {
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: auto; /* Keeps the dot small */
    margin-right: 10px;
    margin-bottom: 0;
    cursor: pointer;
}

.radio-option span {
    font-weight: 400; /* Normal text weight for options */
    color: var(--dark-text);
}

/* 3. Button Styles (Same as before) */
button[type="submit"] {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #001a7a;
}

label {
    font-weight: 600;
    margin-bottom: 8px; /* Slightly more space */
    display: block;
    color: var(--primary-blue);
}

/* POPUP MODAL STYLES */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-icon {
    font-size: 50px;
    color: green;
    margin-bottom: 20px;
}

.modal-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: bold;
}