/* ==========================================================================
   PAGE STYLES - Extends base.css
   ========================================================================== */

    font-family: 'Arial', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    padding-top: 80px;
}

/* Menu Toggle (Hamburger) */
.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.7rem;
}

.menu-toggle {
    display: none;
}

    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 1rem 2rem;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar img.navlogo {
    height: 50px;
    width: auto;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid #000000;
    border-radius: 20px;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown>a::after {
    content: ' ▼';
    font-size: 10px;
    vertical-align: middle;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    flex-direction: column;
}

.dropdown-menu li a {
    color: #000000;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    border: none;
}

.dropdown-menu li a:hover {
    background-color: #000000;
    color: #ffffff;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Main Content Wrapper */
.main-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Testimonial Introduction Section */
.testimonial-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.testimonial-intro-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-intro-content p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
}

/* Submit Testimonial Section */
.submit-testimonial {
    margin-bottom: 3rem;
}

.testimonial-form-container {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.testimonial-form-container>p {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Form Styling */
.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a3f35;
    box-shadow: 0 0 0 3px rgba(74, 63, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Checkbox Styling */
.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal !important;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Submit Button */
.submit-button {
    background-color: #4a3f35;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
    align-self: center;
    min-width: 200px;
}

.submit-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Privacy Note Section */
.privacy-note {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #4a3f35;
}

.privacy-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.privacy-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-content p:last-child {
    margin-bottom: 0;
}

/* Other Ways Section */
.other-ways {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.other-ways-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.other-ways-content p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.other-ways-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.other-ways-content li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.other-ways-content a {
    color: #4a3f35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.other-ways-content a:hover {
    color: #000;
    text-decoration: underline;
}

}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .menu-toggle:checked+.menu-icon+.nav-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 10px 0;
        z-index: 100;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .dropdown {
        position: static;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid #ddd;
        display: none;
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
        background-color: #f5f5f5;
    }

    .dropdown>a::after {
        content: ' ▼';
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .dropdown>a:focus::after {
        content: ' ▲';
    }

    .dropdown>a:focus+.dropdown-menu {
        display: flex;
    }

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

    .dropdown-menu li a {
        padding: 12px 15px;
        text-align: center;
    }

    /* Mobile adjustments */
    .main-content-wrapper {
        padding: 1rem;
    }

    .testimonial-intro-content h1 {
        font-size: 2rem;
    }

    .testimonial-form-container {
        padding: 2rem 1.5rem;
    }

    .testimonial-form-container h2 {
        font-size: 1.8rem;
    }

    .checkbox-group {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .checkbox-label {
        flex-direction: row;
        align-items: flex-start;
    }

    /* Footer responsive adjustments */
    .footer-content {
        flex-direction: column;
    }

    .footer-office,
    .footer-contact {
        text-align: center;
        padding: 0 10px;
        margin-bottom: 20px;
    }

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

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

@media (max-width: 480px) {
    .nav-links a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .testimonial-intro-content h1 {
        font-size: 1.8rem;
    }

    .testimonial-intro-content p {
        font-size: 1rem;
    }

    .testimonial-form-container {
        padding: 1.5rem 1rem;
    }

    .testimonial-form-container h2 {
        font-size: 1.5rem;
    }

    .testimonial-form-container>p {
        font-size: 1rem;
    }

    .submit-button {
        min-width: 180px;
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}