/* Desert Wave FZ LLC - Complete Stylesheet */

/* Base Styles and Variables */
:root {
    --sand: #e6d2b5;
    --sand-light: #f5eee3;
    --sand-dark: #c7b393;
    --teal: #008080;
    --teal-light: #40a0a0;
    --white: #ffffff;
    --dark: #333333;
}

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

body {
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: var(--sand);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--teal);
    margin-left: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--teal);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--sand-light);
    border-radius: 50% 50% 0 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--teal);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--teal);
}

/* Hero and Page Headers */
.hero, .page-header {
    background: linear-gradient(135deg, var(--sand-light), var(--sand));
    padding: 10rem 5% 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after, .page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    border-radius: 50% 50% 0 0;
}

.hero h1, .page-header h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.hero p, .page-header p {
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--teal);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--teal);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--teal);
    margin-top: 1.5rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--teal);
}

.white-cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--teal);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--white);
}

.white-cta-button:hover {
    background-color: transparent;
    color: var(--white);
}

.submit-button {
    background-color: var(--teal);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Services Section - New Flex Layout */
.services {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-box {
    background-color: var(--sand-light);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background-color: var(--teal);
    color: var(--white);
    font-size: 2rem;
    padding: 1.5rem 0;
    text-align: center;
}

.service-details {
    padding: 1.5rem;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-details p {
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

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

.service-link span {
    margin-left: 5px;
    transition: transform 0.3s;
}

.service-link:hover span {
    transform: translateX(5px);
}

/* Individual Service Pages */
.service-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 150px;
}

/* Services Navigation */
.services-navigation {
    background-color: var(--sand-light);
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.services-nav-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

.services-nav-item a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid var(--teal);
}

.services-nav-item a:hover, .services-nav-item a.active {
    background-color: var(--teal);
    color: var(--white);
}

/* About Section */
.about {
    background-color: var(--sand-light);
    padding: 5rem 5%;
    position: relative;
}

.about::before, .about::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
}

.about::before {
    top: -50px;
    background-color: var(--white);
    border-radius: 0 0 50% 50%;
}

.about::after {
    bottom: -50px;
    background-color: var(--white);
    border-radius: 50% 50% 0 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Company Story */
.company-story {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-text h3 {
    font-size: 1.8rem;
    color: var(--teal);
}

/* Stats Section */
.stats-section {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box {
    background-color: var(--sand-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.2rem;
    color: var(--dark);
}

/* Mission & Vision */
.mission-vision {
    background-color: var(--sand-light);
    padding: 5rem 5%;
    position: relative;
}

.mission-vision::before, .mission-vision::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
}

.mission-vision::before {
    top: -50px;
    background-color: var(--white);
    border-radius: 0 0 50% 50%;
}

.mission-vision::after {
    bottom: -50px;
    background-color: var(--white);
    border-radius: 50% 50% 0 0;
}

.mission-vision-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-box, .vision-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-box h3, .vision-box h3 {
    font-size: 1.8rem;
    color: var(--teal);
    position: relative;
    padding-bottom: 1rem;
}

.mission-box h3::after, .vision-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--teal);
}

/* Values Section */
.values {
    background-color: var(--sand-light);
    padding: 5rem 5%;
    position: relative;
    margin-top: 3rem;
}

.values::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    border-radius: 0 0 50% 50%;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    background-color: var(--teal);
    color: var(--white);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-radius: 50%;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Timeline */
.timeline {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 100%;
    background-color: var(--teal);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--teal);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: calc(50% - 10px);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: calc(50% - 10px);
}

.timeline-content {
    background-color: var(--sand-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    display: inline-block;
    background-color: var(--teal);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Testimonials */
.testimonials {
    padding: 8rem 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    margin-top: 3rem;
    position: relative;
}

.testimonial-card {
    background-color: var(--sand-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 1rem auto;
    max-width: 800px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--teal);
}

/* Clients Section */
.clients {
    padding: 8rem 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-logo {
    background-color: var(--sand-light);
    border-radius: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* FAQ Section */
.faq-section {
    background-color: var(--sand-light);
    padding: 5rem 5%;
    position: relative;
    margin-top: 3rem;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    border-radius: 0 0 50% 50%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--teal);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Call to Action */
.cta-section, .cta {
    background-color: var(--teal);
    padding: 5rem 5%;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 3rem;
}

.cta-section::before, .cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--sand-light);
    border-radius: 0 0 50% 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2, .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p, .cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--sand);
    padding: 5rem 5%;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    border-radius: 0 0 50% 50%;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    background-color: var(--teal);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--sand-dark);
    border-radius: 5px;
    font-size: 1rem;
}

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

/* Areas Covered Section */
.areas-covered {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.areas-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.area-region {
    background-color: var(--sand-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.area-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--teal);
    padding-bottom: 1rem;
}

.area-header h3 {
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.area-list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.area-column {
    flex: 1;
}

.area-column ul {
    list-style: none;
}

.area-column ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.area-column ul li:before {
    content: "•";
    color: var(--teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Industries Supported Section */
.industries-supported {
    padding: 5rem 5%;
    background-color: var(--sand-light);
    position: relative;
}

.industries-supported::before,
.industries-supported::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
}

.industries-supported::before {
    top: -50px;
    background-color: var(--white);
    border-radius: 0 0 50% 50%;
}

.industries-supported::after {
    bottom: -50px;
    background-color: var(--white);
    border-radius: 50% 50% 0 0;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.industry-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-left: 10px;
}

.footer-links h4 {
    color: var(--teal);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--sand-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--teal);
}

.social-links {
    display: flex;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--teal);
    border-radius: 50%;
    margin-right: 0.8rem;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--teal-light);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--sand-light);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mobile-toggle {
        display: block;
        position: absolute;
        right: 5%;
        top: 1.5rem;
    }
    
    nav {
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s;
    }
    
    nav.active {
        height: auto;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .about-content, 
    .story-content, 
    .mission-vision-grid, 
    .contact-content,
    .service-section .service-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image, 
    .story-image,
    .service-section .service-container:nth-child(even) .service-image,
    .service-section .service-container:nth-child(odd) .service-image {
        order: 1;
    }
    
    .about-text, 
    .story-text,
    .service-section .service-container:nth-child(even) .service-content,
    .service-section .service-container:nth-child(odd) .service-content {
        order: 2;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd), 
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot, 
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }
    
    .area-list {
        flex-direction: column;
        gap: 0;
    }
    
    .area-column {
        width: 100%;
    }
    
    .industry-card {
        width: 100%;
    }
}
 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* FAQ Section */
.faq-section {
    background-color: var(--sand-light);
    padding: 5rem 5%;
    position: relative;
    margin-top: 3rem;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    border-radius: 0 0 50% 50%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--teal);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Call to Action */
.cta-section, .cta {
    background-color: var(--teal);
    padding: 5rem 5%;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 3rem;
}

.cta-section::before, .cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--sand-light);
    border-radius: 0 0 50% 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2, .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p, .cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--sand);
    padding: 5rem 5%;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    border-radius: 0 0 50% 50%;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    background-color: var(--teal);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--sand-dark);
    border-radius: 5px;
    font-size: 1rem;
}

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

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-left: 10px;
}

.footer-links h4 {
    color: var(--teal);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--sand-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--teal);
}

.social-links {
    display: flex;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--teal);
    border-radius: 50%;
    margin-right: 0.8rem;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--teal-light);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--sand-light);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mobile-toggle {
        display: block;
        position: absolute;
        right: 5%;
        top: 1.5rem;
    }
    
    nav {
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s;
    }
    
    nav.active {
        height: auto;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .about-content, 
    .story-content, 
    .mission-vision-grid, 
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image, 
    .story-image {
        order: 1;
    }
    
    .about-text, 
    .story-text {
        order: 2;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd), 
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot, 
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }
}
