/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00b0f0;
    --primary-dark: #008bd1;
    --secondary-color: #000000;
    --dark-green: #045c42;
    --text-dark: #000000;
    --text-light: #666666;
    --border-color: #888888;
    --bg-light: #ffffff;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:hover, .main-nav a.active {
    color: #f17b21;
}

.main-nav .has-dropdown {
    position: relative;
    padding: 10px 0;
}

.main-nav .has-dropdown a i {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-nav .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 10px 25px;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 14px;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    background: rgba(26, 115, 232, 0.05);
    padding-left: 30px;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-outline {
    color: var(--white);
    background: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-outline:hover {
    background: #034834;
    border-color: #034834;
}

.btn-primary {
    background: var(--dark-green);
    color: var(--white);
    border-color: var(--dark-green);
}

.btn-primary:hover {
    background: #034834;
    border-color: #034834;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Navbar (Bootstrap override) */
.navbar {
    padding: 15px 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 12px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #f17b21; /* Match the orange hover from screenshot */
}

.btn-header {
    background-color: var(--dark-green);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 10px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn-header:hover {
    opacity: 0.9;
    color: white;
}

/* Main Content */
.page-content {
    padding: 40px 0 80px;
    background: var(--white);
}

.main-container {
    max-width: 1200px;
    padding: 0 20px;
}

.form-wrapper {
    background: var(--white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.title-wrapper {
    text-align: left;
    margin-bottom: 30px;
}

.form-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.title-separator {
    display: none;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 16px;
}

.required {
    display: none;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #eff5ff;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

/* Checkbox */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label a {
    color: #00b0f0;
    text-decoration: none;
    font-weight: 400;
    margin-left: 4px;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.full-width {
    grid-column: 1 / -1;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background: linear-gradient(to right, #00b0f0, #40c057);
    color: var(--white);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Message */
.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid var(--success);
    display: block;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid var(--error);
    display: block;
}

/* Footer Styles */
.site-footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    text-align: center;
}

.footer-column:first-child {
    text-align: left;
}

.footer-column:last-child {
    text-align: right;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-list {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.footer-links-list li {
    margin-bottom: 0;
}

.footer-links-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-column p {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.8;
}

.email-link {
    color: var(--white) !important;
    font-weight: 400;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.legal-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: flex-end;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav,
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 26px;
    }

    .page-content {
        padding: 40px 0;
    }

    .site-footer {
        padding: 40px 0 20px;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 25px 15px;
    }

    .form-title {
        font-size: 22px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}
