/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF5D13;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --dark-bg: #2a2a2a;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 60px 0;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom: 2px solid var(--primary-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

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

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.cta-link {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 5px;
    transition: var(--transition);
}

.cta-link:hover {
    background: #e54d03;
    transform: translateY(-2px);
}

.cta-link::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    margin-top: 80px;
    padding: 10% 5%;
    background-color: #05103B;
    background-image: url('images/trucks mine site.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 70%;
    height: 120%;
    background: rgba(10, 20, 41, 0.7);
    border-radius: 0 50% 50% 0;
    z-index: 1;
}

.hero::after {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: left;
    margin: 0;
    padding: 0;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #FF5D13;
}

.hero-subtitle {
    font-size: 4.5rem;
    margin-bottom: 35px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 45px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    max-width: 750px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* Bottom Hero Section */
.hero-bottom {
    margin-top: 0;
    min-height: 60vh;
    background-image: url('images/Mining sparks background.jpg');
    background-size: cover;
    background-position: center;
}

.hero-bottom::before {
    background: rgba(10, 20, 41, 0.5) !important;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #FF5D13;
    color: #FFFFFF;
    border-color: #FF5D13;
    font-weight: 700;
}

.btn-primary:hover {
    background: #e54d03;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-block {
    width: 100%;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

.title-underline.left {
    margin: 0 0 20px 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   Introduction Section
   =================================== */
.intro-section {
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
}

.intro-text.highlight {
    background: var(--light-bg);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
}

.intro-image img {
    border-radius: 10px;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    background: var(--secondary-color);
    padding: 60px 0;
}

.features-section .section-title {
    color: var(--white);
}

.features-section .title-underline {
    background: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===================================
   Service Sections
   =================================== */
.service-section {
    padding: 60px 0;
}

#washdowns {
    background: var(--white);
}

#dust-control {
    background: var(--light-bg);
}

#dewatering {
    background: #e8f4f8;
}

#reforestation {
    background: #f0f8e8;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-layout.reverse {
    direction: rtl;
}

.service-layout.reverse > * {
    direction: ltr;
}

.service-image {
    position: relative;
}

.service-image img {
    border-radius: 10px;
    width: 100%;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.service-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-description {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-benefits {
    margin: 30px 0;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.service-benefits svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--secondary-color);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.contact-info {
    display: none;
}

.contact-cta-wrapper {
    background: transparent;
    padding: 0;
    text-align: center;
}

.contact-cta-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-cta-content > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.contact-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.contact-cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.contact-cta-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-note svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-cta-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-cta-note p:first-child {
    margin-bottom: 5px;
}

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

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #e54d03;
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero {
        padding: 10% 5%;
        background-image: url('images/trucks mine site.jpg');
        background-size: cover;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-layout {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: unset;
        gap: 40px;
    }

    .service-layout.reverse {
        direction: ltr;
    }

    .service-layout.reverse .service-image {
        order: -1;
    }

    .service-layout.reverse .service-content {
        order: 1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .hero {
        min-height: 80vh;
        padding: 15% 5%;
        background-image: url('images/trucks mine site.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .hero::before {
        background: rgba(10, 20, 41, 0.5) !important;
        width: 110%;
        left: 0;
        top: 0;
        height: 100%;
        border-radius: 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-cta .btn {
        width: auto;
    }

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

    .service-section {
        padding: 40px 0;
    }

    .service-layout {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: unset;
        gap: 30px;
    }

    .service-layout.reverse .service-image {
        order: -1;
    }

    .service-layout.reverse .service-content {
        order: 1;
    }

    .service-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }

    .service-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 1rem;
    }

    .service-benefits {
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 25px 0;
    }

    .service-benefits li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .service-content {
        overflow: visible;
        padding: 0;
    }

    .service-image {
        overflow: visible;
    }

    .service-tag {
        font-size: 0.75rem;
        padding: 5px 14px;
    }

    .image-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        top: 15px;
        right: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-grid {
        gap: 0;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 40px 0;
    }

    .hero {
        min-height: 70vh;
        padding: 20% 5% 15%;
        background-image: url('images/trucks mine site.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .hero::before {
        background: rgba(10, 20, 41, 0.5) !important;
    }

    .hero-bottom {
        background-image: url('images/Mining sparks background.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-title {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .service-section {
        padding: 35px 0;
    }

    .service-layout {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: unset;
        gap: 25px;
    }

    .service-layout.reverse .service-image {
        order: -1;
    }

    .service-layout.reverse .service-content {
        order: 1;
    }

    .service-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

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

    .service-benefits li {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .service-benefits svg {
        width: 20px;
        height: 20px;
    }

    .service-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .image-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        top: 10px;
        right: 10px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .contact-cta-content h3 {
        font-size: 1.5rem;
    }

    .contact-cta-note {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
    }

    .contact-cta-note svg {
        margin: 0 auto;
    }
}

/* ===================================
   Running Text Banner
   =================================== */
.running-text-wrapper {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
}

.running-line {
    display: inline-block;
    padding-left: 100%;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: scroll-text 300s infinite linear;
}

@keyframes scroll-text {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* ===================================
   Since Year
   =================================== */
.since-year {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

/* ===================================
   Choosing Us Section
   =================================== */
.choosing-us-section {
    background: var(--white);
    padding: 60px 0;
}

.choosing-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.choosing-us-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

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

.choosing-us-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choosing-us-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.choosing-us-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.choosing-us-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.choosing-us-note {
    margin-top: 50px;
    text-align: center;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.choosing-us-note p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 93, 19, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
    padding-right: 20px;
    font-weight: 600;
}

.faq-toggle {
    background: var(--primary-color);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

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

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   Responsive Updates for New Sections
   =================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .choosing-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .running-text-wrapper {
        padding: 15px 0;
    }

    .running-line {
        font-size: 0.85rem;
    }

    .services-header-section {
        padding: 40px 0 10px;
    }

    .choosing-us-section {
        padding: 60px 0;
    }

    .choosing-us-grid {
        gap: 30px;
    }

    .choosing-us-note {
        padding: 20px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .running-line {
        font-size: 0.75rem;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-toggle {
        width: 30px;
        height: 30px;
    }
}
