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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2c5aa0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5aa0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
}

.search-container {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-container input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #333;
}

.search-container button {
    padding: 1rem 2rem;
    background: #2c5aa0;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.search-container button:hover {
    background: #1e3f73;
}

/* Quick Categories */
.quick-categories {
    padding: 5rem 0;
    background: #f8f9fa;
}

.quick-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

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

.cat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.cat-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cat-item a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cat-item a:hover {
    border-bottom-color: #2c5aa0;
}

/* Featured Businesses */
.featured-businesses {
    padding: 5rem 0;
    background: white;
}

.featured-businesses h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

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

.business-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
}

.business-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.business-info {
    padding: 1.5rem;
}

.business-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.3rem;
}

.business-type {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.business-contact {
    color: #555;
    font-size: 0.9rem;
}

/* Why Local Section */
.why-local {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.text-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
    color: #333;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.text-content a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.text-content a:hover {
    text-decoration: underline;
}

.benefits {
    margin-top: 2rem;
}

.benefit {
    margin-bottom: 0.8rem;
    color: #555;
    font-weight: 500;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .search-container {
        flex-direction: column;
        border-radius: 15px;
    }

    .search-container input {
        border-radius: 15px 15px 0 0;
    }

    .search-container button {
        border-radius: 0 0 15px 15px;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }

    .quick-categories h2,
    .featured-businesses h2 {
        font-size: 2rem;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .quick-categories,
    .featured-businesses,
    .why-local {
        padding: 3rem 0;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.header-content {
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.search-filter {
    display: flex;
    gap: 1rem;
}

.search-filter input {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 250px;
}

.search-filter button {
    padding: 0.8rem 1.5rem;
    background: #2c5aa0;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.search-filter button:hover {
    background: #1e3f73;
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #2c5aa0;
    background: transparent;
    color: #2c5aa0;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2c5aa0;
    color: white;
}

/* Business Listings */
.businesses-main {
    padding: 3rem 0;
}

.businesses-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.business-listing {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 250px;
}

.business-listing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.business-image {
    overflow: hidden;
}

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

.business-listing:hover .business-image img {
    transform: scale(1.05);
}

.business-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.business-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.business-category {
    color: #2c5aa0;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.business-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.business-info {
    margin-top: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info span {
    color: #666;
    font-size: 0.9rem;
}

.business-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    padding: 2rem 0;
}

.load-more-btn {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
}

.load-more-btn:hover:not(:disabled) {
    background: #1e3f73;
}

.load-more-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.results-count {
    color: #666;
    font-size: 0.9rem;
}

/* Business Spotlight */
.business-spotlight {
    background: #f8f9fa;
    padding: 4rem 0;
}

.business-spotlight h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

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

.spotlight-text h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #333;
}

.spotlight-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.spotlight-text a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.spotlight-text a:hover {
    text-decoration: underline;
}

.spotlight-stats {
    display: grid;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-filter {
        flex-direction: column;
    }

    .search-filter input {
        min-width: auto;
    }

    .business-listing {
        grid-template-columns: 1fr;
    }

    .business-image {
        height: 200px;
    }

    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header-content h1 {
        font-size: 2.2rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .category-filters {
        justify-content: center;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .business-details {
        padding: 1.5rem;
    }
}

/* Services Page Specific Styles */
.services-intro {
    background: #f8f9fa;
    padding: 3rem 0;
}

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

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.services-main {
    padding: 4rem 0;
}

.service-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.category-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card.featured {
    border: 2px solid #2c5aa0;
    transform: scale(1.02);
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

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

.service-rating {
    color: #ff9800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.service-contact span {
    color: #666;
    font-size: 0.9rem;
}

/* Why Choose Local Section */
.why-choose-local {
    background: #f8f9fa;
    padding: 5rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.text-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #333;
}

.text-section p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.text-section a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.text-section a:hover {
    text-decoration: underline;
}

.benefits-list {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.benefit-text p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.stats-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.stats-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.5rem;
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Emergency Services Section */
.emergency-services {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.emergency-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.emergency-services > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.emergency-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.emergency-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.emergency-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.emergency-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.emergency-btn {
    display: inline-block;
    background: white;
    color: #d32f2f;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.emergency-btn:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

/* Active navigation state */
.nav-links a.active {
    color: #2c5aa0;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: none;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .text-section h2 {
        font-size: 1.8rem;
    }

    .emergency-grid {
        grid-template-columns: 1fr;
    }

    .emergency-services h2 {
        font-size: 2rem;
    }

    .benefits-list {
        gap: 1rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .service-content {
        padding: 1.5rem;
    }

    .services-main {
        padding: 2rem 0;
    }

    .why-choose-local {
        padding: 3rem 0;
    }

    .emergency-services {
        padding: 3rem 0;
    }

    .stats-section {
        padding: 1.5rem;
    }

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

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

/* Service card animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Scroll reveal effect */
.service-category {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.service-category.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Horeca Page Specific Styles */
.horeca-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.cuisine-filter {
    background: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
}

.cuisine-filter h2 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cuisine-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cuisine-btn.active,
.cuisine-btn:hover {
    background: #ff6b35;
    color: white;
}

.horeca-main {
    padding: 4rem 0;
}

/* Featured Restaurants */
.featured-restaurants {
    margin-bottom: 4rem;
}

.featured-restaurants h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.restaurant-grid {
    display: grid;
    gap: 2rem;
}

.restaurant-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 300px;
}

.restaurant-card.featured {
    border: 2px solid #ff6b35;
    transform: scale(1.02);
}

.restaurant-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.restaurant-image {
    position: relative;
    overflow: hidden;
}

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

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.05);
}

.restaurant-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.restaurant-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.restaurant-header h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 0;
}

.rating {
    color: #ff9800;
    font-size: 0.9rem;
    font-weight: 500;
}

.cuisine-type {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.restaurant-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.restaurant-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price-range {
    color: #2e7d32;
    font-weight: 600;
}

.opening-hours {
    color: #666;
}

.restaurant-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.restaurant-contact span {
    color: #666;
    font-size: 0.9rem;
}

.restaurant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.restaurant-features .feature {
    background: #fff3e0;
    color: #e65100;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Category Sections */
.restaurant-categories {
    margin-top: 4rem;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 0.5rem;
    display: inline-block;
}

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

.restaurant-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.restaurant-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.item-image {
    height: 200px;
    overflow: hidden;
}

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

.restaurant-item:hover .item-image img {
    transform: scale(1.05);
}

.item-info {
    padding: 1.5rem;
}

.item-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

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

.item-contact {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.item-tags span {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Dining Guide Section */
.dining-guide {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 4rem 0;
}

.guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.guide-text h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #333;
}

.guide-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.guide-text a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.guide-text a:hover {
    text-decoration: underline;
}

.dining-tips {
    margin-top: 2.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.dining-tips h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.tips-grid {
    display: grid;
    gap: 1rem;
}

.tip {
    padding: 1rem;
    background: #fff8f5;
    border-left: 4px solid #ff6b35;
    border-radius: 5px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tip strong {
    color: #ff6b35;
}

.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.popular-times,
.price-guide {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.popular-times h3,
.price-guide h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.3rem;
}

.time-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time {
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.popularity {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.popularity.lunch { background: #e8f5e8; color: #2e7d32; }
.popularity.happy { background: #fff3e0; color: #e65100; }
.popularity.dinner { background: #ffebee; color: #c62828; }
.popularity.late { background: #f3e5f5; color: #7b1fa2; }

.price-levels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-level {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-symbol {
    font-weight: 700;
    color: #2e7d32;
    font-size: 1.1rem;
    min-width: 40px;
}

.price-desc {
    color: #666;
    font-size: 0.9rem;
}

/* Events Section */
.events-section {
    background: white;
    padding: 4rem 0;
}

.events-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

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

.event-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ff6b35;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 60px;
    height: fit-content;
}

.event-date .month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
}

.event-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.2rem;
}

.event-info p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.event-location {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .restaurant-card {
        grid-template-columns: 1fr;
    }

    .restaurant-card.featured {
        transform: none;
    }

    .restaurant-image {
        height: 200px;
    }

    .restaurant-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .restaurant-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .guide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cuisine-btn {
        width: 200px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .tips-grid {
        gap: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .restaurant-info {
        padding: 1.5rem;
    }

    .dining-guide {
        padding: 2rem 0;
    }

    .dining-tips {
        padding: 1.5rem;
    }

    .guide-text h2 {
        font-size: 1.8rem;
    }

    .featured-restaurants h2,
    .events-section h2 {
        font-size: 2rem;
    }

    .category-section h2 {
        font-size: 1.8rem;
    }
}

/* Animation delays for staggered effect */
.restaurant-card:nth-child(1) { animation-delay: 0.1s; }
.restaurant-card:nth-child(2) { animation-delay: 0.2s; }
.restaurant-card:nth-child(3) { animation-delay: 0.3s; }

.restaurant-item:nth-child(1) { animation-delay: 0.1s; }
.restaurant-item:nth-child(2) { animation-delay: 0.2s; }
.restaurant-item:nth-child(3) { animation-delay: 0.3s; }

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }

/* About Page Specific Styles */
.about-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.about-main {
    padding: 0;
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background: white;
}

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

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.story-text a {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 500;
}

.story-text a:hover {
    text-decoration: underline;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Section */
.mission-vision {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mv-card.mission {
    border-top-color: #ff6b35;
}

.mv-card.vision {
    border-top-color: #6a11cb;
}

.mv-card.values {
    border-top-color: #2575fc;
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.mv-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

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

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

.member-info {
    padding: 2rem;
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #6a11cb;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Impact Section */
.impact-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.impact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.impact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.impact-stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.impact-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a11cb;
    margin-bottom: 0.5rem;
    display: block;
}

.impact-stat .stat-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.stat-description {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    margin-top: 3rem;
}

.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #6a11cb;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author strong {
    color: #333;
    font-size: 1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
}

.community-involvement {
    padding: 5rem 0;
    background: white;
}

.involvement-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.involvement-text h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #333;
}

.involvement-text > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.involvement-activities {
    display: grid;
    gap: 2rem;
}

.activity {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #6a11cb;
}

.activity h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.activity p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.involvement-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Future Plans */
.future-plans {
    background: #f8f9fa;
    padding: 5rem 0;
}

.future-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.future-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.plan-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.plan-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Join Us Section */
.join-us {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 5rem 0;
}

.join-content {
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.join-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.join-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.join-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.join-option h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.join-option p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.join-btn {
    display: inline-block;
    background: white;
    color: #6a11cb;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.join-btn:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        order: -1;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .involvement-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .join-options {
        grid-template-columns: 1fr;
    }

    .story-text h2,
    .team-section h2,
    .impact-section h2,
    .future-plans h2,
    .join-content h2 {
        font-size: 2rem;
    }

    .involvement-text h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .mv-card {
        padding: 2rem 1.5rem;
    }

    .member-info {
        padding: 1.5rem;
    }

    .impact-stat {
        padding: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .join-option {
        padding: 2rem 1.5rem;
    }

    .activity {
        padding: 1rem;
    }

    .our-story,
    .mission-vision,
    .team-section,
    .impact-section,
    .community-involvement,
    .future-plans,
    .join-us {
        padding: 3rem 0;
    }
}

/* Animation delays for staggered effects */
.mv-card:nth-child(1) { animation-delay: 0.1s; }
.mv-card:nth-child(2) { animation-delay: 0.2s; }
.mv-card:nth-child(3) { animation-delay: 0.3s; }

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

.impact-stat:nth-child(1) { animation-delay: 0.1s; }
.impact-stat:nth-child(2) { animation-delay: 0.2s; }
.impact-stat:nth-child(3) { animation-delay: 0.3s; }
.impact-stat:nth-child(4) { animation-delay: 0.4s; }

.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonial:nth-child(3) { animation-delay: 0.3s; }

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
.plan-card:nth-child(4) { animation-delay: 0.4s; }

.join-option:nth-child(1) { animation-delay: 0.1s; }
.join-option:nth-child(2) { animation-delay: 0.2s; }
.join-option:nth-child(3) { animation-delay: 0.3s; }

/* Scroll reveal animations */
.story-content,
.involvement-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.story-content.revealed,
.involvement-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for interactive elements */
.activity:hover {
    background: #e9ecef;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Focus states for accessibility */
.join-btn:focus,
.mv-card:focus,
.team-member:focus {
    outline: 2px solid #6a11cb;
    outline-offset: 2px;
}

/* Contact Page Specific Styles */
.contact-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.contact-main {
    padding: 0;
}

/* Contact Intro */
.contact-intro {
    background: #f8f9fa;
    padding: 3rem 0;
}

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

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.intro-content a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

.intro-content a:hover {
    text-decoration: underline;
}

/* Contact Methods */
.contact-methods {
    padding: 4rem 0;
    background: white;
}

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

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #28a745;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.contact-hours {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Forms */
.contact-forms {
    background: #f8f9fa;
    padding: 4rem 0;
}

.forms-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-tabs {
    display: flex;
    background: #e9ecef;
}

.tab-btn {
    flex: 1;
    padding: 1.5rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    background: white;
    color: #28a745;
    border-bottom-color: #28a745;
}

.tab-btn:hover:not(.active) {
    background: #f8f9fa;
    color: #333;
}

.form-content {
    position: relative;
}

.tab-panel {
    display: none;
    padding: 3rem;
}

.tab-panel.active {
    display: block;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.form-header p {
    color: #555;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background: #218838;
}

.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
    transition: transform 0.3s ease;
}

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

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

.faq-item.open .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Location Section */
.location-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.location-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.location-info a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

.location-info a:hover {
    text-decoration: underline;
}

.location-details {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-text strong {
    display: block;
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.detail-text span {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-placeholder {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-content {
    padding: 2rem;
    text-align: center;
}

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

.map-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.map-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.map-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.map-link {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.map-link:hover {
    background: #218838;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-btn.primary {
    background: white;
    color: #28a745;
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #28a745;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }

    .form-tabs {
        flex-direction: column;
    }

    .tab-btn {
        text-align: center;
    }

    .tab-panel {
        padding: 2rem 1.5rem;
    }

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

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 250px;
    }

    .contact-intro,
    .contact-methods,
    .contact-forms,
    .faq-section,
    .location-section,
    .contact-cta {
        padding: 3rem 0;
    }
}

@media screen and (max-width: 480px) {
    .contact-card {
        padding: 2rem 1.5rem;
    }

    .tab-panel {
        padding: 1.5rem 1rem;
    }

    .detail-item {
        padding: 0.8rem;
    }

    .map-content {
        padding: 1.5rem;
    }

    .intro-content h2,
    .faq-section h2,
    .location-info h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }
}

/* Animation delays for staggered effects */
.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.detail-item:nth-child(1) { animation-delay: 0.1s; }
.detail-item:nth-child(2) { animation-delay: 0.2s; }
.detail-item:nth-child(3) { animation-delay: 0.3s; }
.detail-item:nth-child(4) { animation-delay: 0.4s; }

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}