/* 
* VivaVibe Cleaning Services - Main Stylesheet
* A fresh, vibrant design for a local cleaning business
*/

/* ---------- Base Styles ---------- */
:root {
    --primary: #ff7b29; /* Main brand orange */
    --primary-light: #ffad7a;
    --primary-dark: #e56718;
    --secondary: #59c9c9; /* Teal accent */
    --dark: #2d3748;
    --light: #f8fafb;
    --gray: #a0aec0;
    --gray-light: #e2e8f0;
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #e53e3e;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-text:after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-text:hover:after {
    transform: translateX(5px);
}

.highlight {
    color: var(--primary);
}

.viva {
    font-weight: 700;
    color: var(--primary);
}

.vibe {
    font-weight: 700;
    color: var(--secondary);
}

/* ---------- Header ---------- */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
}

nav ul li {
    margin-left: 2rem;
    display: flex;
    align-items: center;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.btn-primary {
    color: white;
    padding: 0.5rem 1rem;
}

nav ul li a.btn-primary:after {
    display: none;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 8px;
}

.menu-toggle span:nth-child(3) {
    top: 16px;
}

.menu-toggle.active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 99;
    padding-top: 80px;
    transition: left 0.3s ease;
    box-shadow: var(--shadow);
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

/* Prevent scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

.mobile-nav ul {
    list-style: none;
    padding: 2rem;
}

.mobile-nav ul li {
    margin-bottom: 1.5rem;
}

.mobile-nav ul li a {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

.mobile-nav ul li a:hover {
    background-color: var(--gray-light);
}

.mobile-nav ul li a.active {
    color: var(--primary);
}

.mobile-nav ul li a.btn-primary {
    display: inline-block;
    margin-top: 1rem;
    color: white;
    padding: 1rem 2.5rem;
    width: calc(100% - 4rem); /* Account for parent padding */
    text-align: center;
}

.mobile-nav ul li a.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        transition: left 0.3s ease;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .service-cards,
    .testimonial-carousel {
        grid-template-columns: 1fr;
    }
}

/* ---------- Hero Section ---------- */
.hero {
    padding: 10rem 0 5rem;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ---------- Features Section ---------- */
.features {
    background-color: var(--light);
}

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

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ---------- Services Preview Section ---------- */
.services-preview {
    background-color: white;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: -1rem auto 3rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-top: 4px solid var(--primary);
}

.service-card.featured:before {
    content: 'Popular';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.services-cta {
    text-align: center;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    background-color: var(--light);
}

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

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.quote {
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
    margin-bottom: 1.5rem;
}

.quote p {
    font-style: italic;
}

.client-name {
    font-weight: 600;
}

.stars {
    color: var(--primary);
    margin-top: 0.5rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background-color: var(--light);
}

/* ---------- Footer ---------- */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 4rem 0 2rem;
}

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

.footer-logo a {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-logo p {
    color: var(--gray);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.footer-links h4:after,
.footer-contact h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

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

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

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.footer-contact p i {
    margin-right: 0.75rem;
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3d4852;
    color: white;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #3d4852;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        transition: left 0.3s ease;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .service-cards,
    .testimonial-carousel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4:after,
    .footer-contact h4:after,
    .footer-social h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* ---------- Services Page ---------- */
.page-header {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
}

.page-header .container {
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
    text-align: center;
}

.page-header p {
    text-align: center;
}

.page-header .highlight {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.service-text h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-section {
    background-color: white;
    padding: 5rem 0;
}

.pricing-table {
    overflow-x: auto;
    background-color: var(--light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
}

/* New Pricing Table Layout */
.pricing-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Mobile Pricing View - Hidden by default */
.pricing-mobile-view {
    display: none;
    max-width: 600px;
    margin: 0 auto;
}

/* Column Headers */
.pricing-col-header {
    padding: 2rem 1.5rem;
    text-align: center;
    background-color: white;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-col-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pricing-col-header.highlight {
    background-color: var(--primary);
    color: white;
}

.pricing-col-header.highlight .pricing-price,
.pricing-col-header.highlight .pricing-period {
    color: white;
}

.pricing-col-header.tasks-header {
    background-color: transparent;
    border-bottom: none;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.5rem;
}

.pricing-period {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: normal;
}

/* Categories */
.pricing-category {
    grid-column: 1;
    background-color: var(--gray-light);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--dark);
    border-top: 1px solid white;
}

/* Task Rows */
.pricing-task {
    grid-column: 1;
    padding: 0.75rem 1.5rem;
    background-color: var(--light);
    border-bottom: 1px solid var(--gray-light);
}

/* Cells */
.pricing-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background-color: white;
    border-bottom: 1px solid var(--gray-light);
    color: var(--success);
    font-weight: 500;
}

.pricing-cell.highlight {
    background-color: rgba(255, 123, 41, 0.05);
}

/* CTA Row */
.pricing-cta-row {
    grid-column: 1;
    height: 0;
}

.pricing-cta-cell {
    padding: 1.5rem;
    text-align: center;
    background-color: white;
}

.pricing-cta-cell.highlight {
    background-color: rgba(255, 123, 41, 0.05);
}

.pricing-notes {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Service Details */
.service-details {
    padding: 5rem 0;
    background-color: white;
}

.service-details.alt-bg {
    background-color: var(--light);
}

.service-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-details-content.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-details-content.reverse > div {
    direction: ltr;
}

.service-image {
    aspect-ratio: 1;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.service-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.service-features {
    margin: 2rem 0;
}

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

.feature i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* Responsive adjustments for pricing table */
@media (max-width: 992px) {
    .service-details-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-text {
        order: 2;
    }
    
    .service-image {
        order: 1;
    }
    
    .service-details-content.reverse {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Replace the old horizontal scroll approach with a mobile-friendly card layout */
    .pricing-container {
        display: none;
    }
    
    /* Show mobile pricing view */
    .pricing-mobile-view {
        display: block;
    }
    
    /* Create card-style pricing tiers for mobile */
    .pricing-mobile-tier {
        background: white;
        margin-bottom: 2rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        overflow: hidden;
    }
    
    .pricing-mobile-tier.highlight {
        border: 2px solid var(--primary);
    }
    
    .pricing-mobile-header {
        background-color: white;
        padding: 1.5rem;
        text-align: center;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .pricing-mobile-header.highlight {
        background-color: var(--primary);
        color: white;
    }
    
    .pricing-mobile-header.highlight .pricing-price,
    .pricing-mobile-header.highlight .pricing-period {
        color: white;
    }
    
    .pricing-mobile-features {
        padding: 1rem 1.5rem;
    }
    
    .pricing-mobile-feature {
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .pricing-mobile-feature:last-child {
        border-bottom: none;
    }
    
    .pricing-mobile-feature i {
        color: var(--success);
        margin-right: 1rem;
        font-size: 1rem;
    }
    
    .pricing-mobile-cta {
        padding: 1.5rem;
        text-align: center;
        background-color: var(--light);
    }
}

/* ---------- About Page ---------- */
.about-section {
    padding: 5rem 0;
}

.about-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-image-centered {
    margin-bottom: 2rem;
    width: 100%;
}

.about-image-centered img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-text-centered {
    width: 100%;
}

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

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

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.value-text h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Team Section */
.about-team {
    background-color: var(--light);
    padding: 5rem 0;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-content-centered {
        padding: 0 1rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ---------- Contact Page ---------- */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    text-align: left;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.contact-text h4 {
    margin-bottom: 0.25rem;
}

.contact-form {
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.form-check input {
    margin-right: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
}

.map-section {
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-container,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        margin-bottom: 2rem;
    }
}

/* ---------- FAQ Section ---------- */
.faq-section {
    background-color: var(--light);
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 123, 41, 0.05);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

/* ---------- Welcome Section ---------- */
.welcome-section {
    background-color: white;
    padding: 5rem 0 3rem;
}

.welcome-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 3rem 0 2rem;
    }

    .welcome-section h2 {
        font-size: 2rem;
    }

    .welcome-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Alert Messages */
.alert {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-success {
    border-left: 4px solid var(--success);
}

.alert-error {
    border-left: 4px solid var(--danger);
}

.message-content {
    color: var(--dark);
}

.message-content h4 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.message-content p {
    margin-bottom: 0.75rem;
}

.message-content .next-steps {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.message-content ul {
    list-style: none;
    margin: 0.5rem 0 1.5rem;
    padding-left: 1.5rem;
}

.message-content ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.message-content ul li:before {
    content: "✓";
    color: var(--success);
    position: absolute;
    left: -1.5rem;
}

.dismiss-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--gray-light);
    color: var(--dark);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dismiss-btn:hover {
    background-color: var(--gray);
    color: white;
} 