/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.hero .lead {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin: 0 auto 30px;
    line-height: 1.8;
    max-width: 800px;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-yellow);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.badge i {
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Specific style for NDIS provider badge icon */
.badge .fa-certificate {
    color: #10B981; /* Green color for NDIS icon */
}

/* Style for Arts-Integrated Approach badge */
.badge .fa-paint-brush {
    color: #EF4444; /* Red color for Arts-Integrated Approach icon */
}

/* Scroll Animations */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Visible state */
.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base Styles */
:root {
    --primary-red: #DC2626;
    --primary-yellow: #FDE047;
    --accent-red: #EF4444;
    --accent-yellow: #FACC15;
    --dark-gray: #1F2937;
    --medium-gray: #4B5563;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --black: #111827;
}

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

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

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent-red);
}

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

/* Navigation - DISABLED (Using hamburger-menu.css instead) */
/* .navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    margin-left: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--dark-gray);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red);
} */

/* Hero Section - Matching NDIS Page */
.hero {
    background: linear-gradient(135deg, #FFF3B0 0%, #FFB300 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
    line-height: 1.1;
    font-weight: 700;
}

.hero .lead {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.badge i {
    margin-right: 0.5rem;
    color: #DC2626;
    font-size: 1rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    text-align: center;
}

.services-overview h2 {
    text-align: center;
    margin: 0 auto 1rem;
    max-width: 90%;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--medium-gray);
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.service-card p {
    text-align: left !important;
    margin: 0 0 15px 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.service-header {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    margin-bottom: 20px;
    gap: 15px; /* Added gap for consistent spacing */
}

.service-header > div:last-child {
    flex: 1;
    padding-top: 8px; /* Align text with icon */
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    margin: 0; /* Reset margin */
}

.service-icon.yellow {
    background-color: var(--primary-yellow);
    color: var(--black);
}

.service-icon.red {
    background-color: var(--primary-red);
    color: var(--white);
}

.service-icon.dark-red {
    background-color: #B91C1C;
    color: var(--white);
}

.service-tag {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 5px 0 0 0;
    display: block;
    text-align: left;
    width: 100%;
}

.service-details {
    margin: 20px 0;
}

.services-grid .service-card .service-details h4 {
    font-size: 1.1rem !important;
    margin: 0 0 10px 0 !important;
    color: var(--dark-gray) !important;
    text-align: left !important;
    font-weight: 600 !important;
    padding: 0 !important;
    width: 100%;
    display: block;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    text-align: left;
}

.service-details li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--medium-gray);
    padding-left: 20px;
    position: relative;
    text-align: left;
    margin-left: 0;
    padding-right: 0;
    width: 100%;
}

.service-details li:before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

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

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

/* Support Section */
.support-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

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

.support-section .highlight {
    color: #e63946;
}

.section-description {
    text-align: center;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.support-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 40px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-left {
    flex: 1 1 55%;
    min-width: 0;
}

.support-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-circle {
    background: #e63946;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.icon-circle.large {
    width: 80px;
    height: 80px;
    font-size: 30px;
    margin: 0 auto 18px;
}

.support-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #1c1c1c;
}

.support-header .sub {
    color: #e63946;
    margin-top: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

.support-text {
    margin: 20px 0 30px;
    line-height: 1.7;
    color: #4b5563;
    font-size: 1.05rem;
}

.support-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.box {
    background: #f3f5f9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.box.light-yellow {
    background: linear-gradient(135deg, #fff7d1 0%, #fffae6 100%);
}

.box h4 {
    margin: 0 0 20px 0;
    font-weight: 700;
    color: #1f2937;
    font-size: 1.15rem;
    padding-bottom: 12px;
    border-bottom: 2px solid #e63946;
    display: inline-block;
}

.box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box ul li {
    margin-bottom: 10px;
    color: #4b5563;
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.box ul li:before {
    content: "✓";
    color: #e63946;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.support-right {
    flex: 1 1 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.gradient-card {
    background: linear-gradient(135deg, #fff3b0 0%, #ffb300 100%);
    padding: 35px 28px;
    border-radius: 20px;
    text-align: center;
    color: #222;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 350px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.gradient-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 18px;
    color: #1f2937;
    line-height: 1.3;
}

.gradient-card p {
    font-size: 15px;
    margin: 0 0 22px;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
    flex-grow: 1;
}

.gradient-card .btn {
    background: #e63946;
    color: white;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    margin-top: auto;
}

.gradient-card .btn:hover {
    background: #d82e3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 46, 60, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .support-container {
        flex-direction: column;
        padding: 30px;
    }
    
    .support-left,
    .support-right {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .gradient-card {
        max-width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .support-section h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .support-container {
        padding: 25px 20px;
    }
    
    .support-header {
        flex-direction: column;
        text-align: center;
    }
    
    .icon-circle {
        margin: 0 0 15px 0;
    }
    
    .box {
        min-width: 100%;
    }
}

/* Support Coordination Section */
.coordination-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.coordination-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 40px;
    gap: 40px;
    align-items: flex-start;
}

/* ===== LEFT (Gradient Card) ===== */
.coordination-left {
    flex: 1 1 45%;
    min-width: 0;
}

.gradient-card.yellow {
    background: linear-gradient(135deg, #FFF3B0, #FFB300);
    border-radius: 20px;
    padding: 35px 28px;
    color: #222;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 0 auto;
}

.icon-circle.yellow-icon {
    background: #FFD60A;
    color: #111;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.icon-circle.small {
    width: 60px;
    height: 60px;
    font-size: 22px;
}

.gradient-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #1c1c1c;
}

.gradient-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 25px 0;
    color: #333;
}

.btn-yellow {
    background: #FFD60A;
    color: #111;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    margin-top: auto;
}

.btn-yellow i {
    margin-left: 8px;
    font-size: 1rem;
}

.btn-yellow:hover {
    background: #ffcc00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 214, 10, 0.3);
}

/* ===== RIGHT CONTENT ===== */
.coordination-right {
    flex: 1 1 50%;
    min-width: 0;
}

.coord-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.coord-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #1c1c1c;
}

.coord-header .sub {
    color: #e63946;
    font-weight: 600;
    margin: 4px 0 0;
    font-size: 1.1rem;
}

.coord-text {
    line-height: 1.7;
    margin: 0 0 25px 0;
    color: #4b5563;
    font-size: 1.05rem;
}

.coord-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.box {
    flex: 1;
    min-width: 250px;
    background: #f3f5f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.box.light-yellow {
    background: #fff7d1;
}

.box h4 {
    margin: 0 0 15px 0;
    color: #1f2937;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box ul li {
    margin-bottom: 8px;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.box ul li:before {
    content: "•";
    color: #e67e22;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .coordination-container {
        flex-direction: column;
        padding: 30px;
    }
    
    .coordination-left,
    .coordination-right {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .gradient-card {
        text-align: center;
    }
    
    .icon-circle.yellow-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .coordination-container {
        padding: 25px 20px;
    }
    
    .coord-header {
        flex-direction: column;
        text-align: center;
    }
    
    .icon-circle.small {
        margin: 0 0 15px 0;
    }
    
    .box {
        min-width: 100%;
    }
    
    .gradient-card {
        padding: 30px 20px;
    }
}

/* Community Participation Section */
.community-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.community-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 50px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.community-section .left {
    flex: 1.5;
    min-width: 0;
}

.community-section .section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.community-section .icon {
    background: #e7332b;
    color: #fff;
    font-size: 24px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.community-section h2 {
    margin: 0;
    font-size: 28px;
    color: #1f2937;
    font-weight: 700;
}

.community-section .subtitle {
    color: #e7332b;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 5px 0 0;
}

.community-section .description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 20px 0 30px;
    max-width: 700px;
}

.community-section .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.community-section .box {
    min-width: 250px;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.community-section .box.light {
    background: #f8fafc;
}

.community-section .box.yellow {
    background: #fff8e6;
}

.community-section .box h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.community-section .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-section .box li {
    padding: 6px 0;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.community-section .box li:before {
    content: "•";
    color: #e7332b;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.community-section .right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.highlight-card {
    background: linear-gradient(135deg, #ffeb94, #ffae00);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    background: #e7332b;
    color: #fff;
    font-size: 24px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.highlight-card h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.highlight-card p {
    color: #333;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 25px 0;
    font-size: 1rem;
}

.join-btn {
    background: #e7332b;
    color: white !important;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.join-btn i {
    font-size: 1rem;
}

.join-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 51, 43, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .community-container {
        padding: 40px 30px;
    }
    
    .community-section .boxes {
        flex-direction: column;
    }
    
    .community-section .box {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .community-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .community-section .left,
    .community-section .right {
        width: 100%;
    }
    
    .highlight-card {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .community-section .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .community-section .icon {
        margin: 0 auto 15px;
    }
    
    .community-section .description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .community-section h2 {
        font-size: 24px;
    }
    
    .community-section .subtitle {
        font-size: 1rem;
    }
    
    .community-section .description {
        font-size: 1rem;
    }
    
    .highlight-card {
        padding: 30px 20px;
    }
}

/* Household Tasks Section */
.household-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.household-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 50px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.household-section .left {
    flex: 1.5;
    min-width: 0;
}

.household-section .highlight-card {
    background: linear-gradient(135deg, #fff4b2, #ffb300);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
    box-sizing: border-box;
    margin: 0 auto;
}

.household-section .highlight-icon {
    background: #ffda47;
    color: #111;
    font-size: 24px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.household-section .highlight-card h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.household-section .highlight-card p {
    color: #333;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 25px 0;
    font-size: 1rem;
}

.household-section .book-btn {
    background: #ffd73e;
    color: #111 !important;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.household-section .book-btn i {
    font-size: 1rem;
}

.household-section .book-btn:hover {
    background: #ffcc00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 62, 0.3);
}

.household-section .right {
    flex: 1.2;
    min-width: 0;
}

.household-section .section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.household-section .icon.yellow {
    background: #ffda47;
    color: #111;
    font-size: 24px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.household-section h2 {
    margin: 0;
    font-size: 28px;
    color: #1f2937;
    font-weight: 700;
}

.household-section .subtitle {
    color: #e7332b;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 5px 0 0;
}

.household-section .description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 20px 0 30px;
    max-width: 700px;
}

.household-section .boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}

@media (max-width: 768px) {
    .household-section .boxes {
        grid-template-columns: 1fr;
    }
}

.household-section .box {
    flex: 1;
    min-width: 250px;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.household-section .box.light {
    background: #f8fafc;
}

.household-section .box.yellow {
    background: #fff8e6;
}

.household-section .box h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.household-section .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.household-section .box li {
    padding: 6px 0;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.household-section .box li:before {
    content: "•";
    color: #ffb300;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .household-container {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .household-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .household-section .left,
    .household-section .right {
        width: 100%;
    }
    
    .household-section .highlight-card {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .household-section .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .household-section .icon.yellow {
        margin: 0 auto 15px;
    }
    
    .household-section .description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .household-section h2 {
        font-size: 24px;
    }
    
    .household-section .subtitle {
        font-size: 1rem;
    }
    
    .household-section .description {
        font-size: 1rem;
    }
    
    .household-section .highlight-card {
        padding: 30px 20px;
    }
}

/* Transport Section */
.transport-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.transport-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    background: #fff;
    border-radius: 15px;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.transport-section .left {
    flex: 1.2;
    min-width: 0;
}

/* Header */
.transport-section .section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.transport-section .icon.red {
    background: #e7332b;
    color: #fff;
    font-size: 24px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-section h2 {
    margin: 0;
    font-size: 28px;
    color: #1f2937;
    font-weight: 700;
}

.transport-section .subtitle {
    color: #e7332b;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 5px 0 0;
}

.transport-section .description {
    margin-top: 25px;
    line-height: 1.7;
    color: #555;
    font-size: 17px;
    max-width: 700px;
}

/* Info Boxes */
.transport-section .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.transport-section .box {
    border-radius: 10px;
    padding: 20px 30px;
    min-width: 250px;
}

.transport-section .box.light {
    background: #f8fafc;
}

.transport-section .box.yellow {
    background: #fff8e6;
}

.transport-section .box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.transport-section .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-section .box li {
    margin: 8px 0;
    font-size: 1rem;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
}

.transport-section .box li:before {
    content: "•";
    color: #e7332b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Right Yellow Card */
.transport-section .right {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.transport-section .highlight-card {
    background: linear-gradient(to bottom right, #ffed9c, #ffae00);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    min-height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transport-section .highlight-icon {
    background: #e7332b;
    color: #fff;
    font-size: 28px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.transport-section .highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 15px 0;
}

.transport-section .highlight-card p {
    font-size: 1rem;
    margin: 15px 0 25px;
    color: #333;
    line-height: 1.5;
    font-style: italic;
}

.transport-section .journey-btn {
    background: #e7332b;
    color: white !important;
    border: none;
    padding: 12px 26px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: auto;
    max-width: 250px;
    margin: 0 auto;
}

.transport-section .journey-btn i {
    margin-left: 8px;
    font-size: 1rem;
}

.transport-section .journey-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 51, 43, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .transport-container {
        padding: 40px 30px;
    }
    
    .transport-section .boxes {
        flex-direction: column;
    }
    
    .transport-section .box {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .transport-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .transport-section .left,
    .transport-section .right {
        width: 100%;
    }
    
    .transport-section .highlight-card {
        max-width: 100%;
        min-width: unset;
        margin-top: 30px;
    }
    
    .transport-section .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .transport-section .icon.red {
        margin: 0 auto 15px;
    }
    
    .transport-section .description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .transport-section .journey-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .transport-section h2 {
        font-size: 24px;
    }
    
    .transport-section .subtitle {
        font-size: 1rem;
    }
    
    .transport-section .description {
        font-size: 1rem;
    }
    
    .transport-section .highlight-card {
        padding: 30px 20px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--primary-red);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.why-choose-us h2, 
.why-choose-us .highlight {
    color: white;
}

.why-choose-us .highlight {
    color: var(--primary-yellow);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.feature h3 {
    color: white;
    margin-bottom: 15px;
}

.feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-gray);
}

.cta h2 {
    margin-bottom: 20px;
    color: white;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn i {
    margin-left: 8px;
}

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

.btn.primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn.secondary {
    background-color: var(--primary-yellow);
    color: var(--black);
}

.btn.secondary:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 224, 71, 0.3);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.contact-method a {
    color: var(--primary-red);
    font-weight: 500;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    padding: 10px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    margin-right: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--primary-yellow);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-yellow);
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom p:first-child {
    margin-bottom: 10px;
}

/* Mobile Menu Styles - DISABLED (Using hamburger-menu.css instead) */
/* .mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.mobile-menu-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

.menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.menu-close:hover {
    color: var(--primary-red);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
} */

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #444;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-nav-link i {
    margin-right: 15px;
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: #f1f3f5;
    color: var(--primary-red);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    color: var(--primary-red);
    transform: translateX(3px);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary-red);
    border-radius: 6px;
    font-size: 1.5rem;
    color: var(--primary-red);
    cursor: pointer;
    padding: 8px 12px;
    z-index: 1001;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(220, 38, 38, 0.05);
    transform: translateY(-1px);
}

.menu-toggle:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (min-width: 768px) { 
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.5rem; }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll Animations */
section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(20px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
