/* ===== CSS Variables ===== */
:root {
    --primary: hsl(45, 100%, 50%);
    --primary-dark: hsl(45, 100%, 45%);
    --secondary: hsl(0, 0%, 0%); /* replaced #05385c with #000 */
    --secondary-light: hsl(0, 0%, 0%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 20%, 12%);
    --muted: hsl(220, 10%, 96%);
    --muted-foreground: hsl(220, 10%, 45%);
    --border: hsl(220, 10%, 90%);
    --white: #ffffff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
}



/* :root {
    --primary: hsl(45, 100%, 50%);
    --primary-dark: hsl(45, 100%, 45%);
    --secondary: hsl(205, 90%, 19%);
    --secondary-light: hsl(205, 70%, 28%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 20%, 12%);
    --muted: hsl(220, 10%, 96%);
    --muted-foreground: hsl(220, 10%, 45%);
    --border: hsl(220, 10%, 90%);
    --white: #ffffff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
} */

/* ===== Base Styles ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hidden {
    display: none !important;
}

/* ===== Icons ===== */
.icon {
    width: 1rem;
    height: 1rem;
}

.icon-primary {
    color: #fff;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn svg {
    width: 1rem;
    height: 1rem;
}

.btn-primary {
    background-color: #D70203;
    color: #fff;
}

.btn-primary:hover {
    background-color: #000;
}

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

.btn-secondary:hover {
    background-color: var(--secondary-light);
}

.btn-outline-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid #fff;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-outline-hero:hover {
    background: #D70203;
    color: #ffff;
}

.btn-full {
    width: 100%;
}


.quote_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.quote_button a {
    padding: 5px 15px 5px 15px;
    border-radius: 20px;
}


/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.left {
    text-align: left;
}

.section-header.light .section-title {
    color: #000;
}
section.about-mission h2.section-title {
    color: #fff ! IMPORTANT;
}
section.about-mission p.section-subtitle {
    color: #fff !important;
}

.section-header.light .section-subtitle {
    color: #000;
}

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

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.service-card-content a:hover {
    color: #fff;
    background: #000;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* ===== Header ===== */
.header {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.625rem 1rem;
}

.top-bar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}


@media (max-width: 767px) {
.container.footer-bottom-content {
    text-align: center;
}   
.logo {
    width: 40% !important;
}
.container.nav-content {
    padding: 0px;
}
.container.top-bar-content {
    padding: 0px;
}
.top-bar-item.location {
    display: none;
}
.hero {
    min-height: 400px !important;
}
.section-title {
    font-size: 1.4rem;
}
.service-tab {
    min-width: auto ! IMPORTANT;
}
.container {
    padding: 0 1rem ! IMPORTANT;
}

}

@media (min-width: 768px) {
    .top-bar-left {
        gap: 1.5rem;
    }
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item span {
    color: var(--gray-300);
}

.hide-mobile {
    display: none;
}

.hide-tablet {
    display: none;
}

.hide-desktop {
    display: none;
}

@media (min-width: 640px) {
    .hide-mobile {
        display: inline;
    }
}

@media (min-width: 768px) {
    .hide-tablet {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: flex;
    }
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: #fff;
    transition: color 0.3s ease;
}

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

.social-link svg {
    width: 1rem;
    height: 1rem;
}

/* Main Navigation */
.main-nav {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    width: 18%;
}

.logo-box {
    background-color: var(--primary);
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
}

.logo-box span {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    margin-left: 0.25rem;
}

.logo-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary);
    display: block;
}

.logo-tagline {
    font-size: 0.625rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Desktop Menu */
.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #D70203;
}

.chevron-down {
    width: 1rem;
    height: 1rem;
}

/* Appointment Button */
.appointment-btn {
    display: none;
}

@media (min-width: 768px) {
    .appointment-btn {
        display: inline-flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary);
}

/* Mobile Menu */
.mobile-menu {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu ul li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: var(--primary);
}

.mobile-appointment-btn {
    margin-top: 1rem;
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        min-height: 700px;
    }
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    font-style: italic;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2rem;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    padding: 0.5rem;
}

.hero-nav svg {
    width: 2.5rem;
    height: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.hero-nav:hover svg {
    color: var(--white);
}

.hero-prev {
    left: 1rem;
}

.hero-next {
    right: 1rem;
}

@media (min-width: 768px) {
    .hero-prev {
        left: 2rem;
    }
    .hero-next {
        right: 2rem;
    }
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #D70203;
}

/* ===== Featured Services Section ===== */
.featured-services {
    padding: 4rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .featured-services {
        padding: 6rem 0;
    }
}

/* Service Tabs */
.service-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .service-tabs {
        gap: 1rem;
    }
}

.service-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    min-width: 100px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .service-tab {
        padding: 1.5rem;
        min-width: 120px;
    }
}

.service-tab:hover {
    background: rgba(255, 184, 0, 0.1);
}

.service-tab.active {
    background: #f5f5f5;
    border-color: #f5f5f5;
}

button#serviceNext:hover svg {
    color: #fff !important;
}

.service-tab svg {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

.service-tab.active svg {
    color: #000;
}

.service-tab span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .service-tab span {
        font-size: 0.875rem;
    }
}

.service-tab.active span {
    color: #000;
}

/* Service Card */
.service-card-wrapper {
    background: #f5f5f5;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .service-card {
        grid-template-columns: 1fr 1fr;
    }
}

.service-card-image {
    position: relative;
    height: 18rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-card-image {
        height: 20rem;
    }
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(31, 41, 55, 0.7), transparent);
}

.service-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #D70203;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-check {
    width: 1.25rem;
    height: 1.25rem;
    background: #fff;
    color: #D70203;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f5f5;
}

@media (min-width: 768px) {
    .service-card-content {
        padding: 2.5rem;
    }
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-card-content h3 {
        font-size: 1.875rem;
    }
}

.service-card-content p {
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Service Nav */
.service-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #000;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #D70203;
}

.service-arrows {
    display: flex;
    gap: 0.5rem;
}
.arrow-btn:hover {
    background: #000;
    color: #fff;
}

.arrow-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.arrow-btn:hover {
    background: #ccc;
}

.arrow-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

.arrow-btn.arrow-primary {
    background: #D70203;
}

.arrow-btn.arrow-primary:hover {
    background: #000;
    color: #fff !important;
}

.arrow-btn.arrow-primary svg {
    color: #fff;
}

/* ===== Expert Service Section ===== */
.expert-service {
    padding: 4rem 0;
    background: var(--muted);
}

@media (min-width: 768px) {
    .expert-service {
        padding: 6rem 0;
    }
}

/* Expert Tabs */
.expert-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.expert-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.expert-tab.active {
    background: #000;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.expert-tab svg {
    width: 1.5rem;
    height: 1.5rem;
}

.expert-tab span {
    font-weight: 500;
}

.expert-tab.active svg,
.expert-tab.active span {
    color: #fff;
}

/* Expert Content */
.expert-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .expert-content {
        grid-template-columns: 1fr 1fr;
    }
}

.expert-image {
    position: relative;
}

.expert-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #D70203;
    color: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.expert-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .expert-info h3 {
        font-size: 1.875rem;
    }
}

.expert-info > p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--secondary);
}

.feature-item .check {
    width: 1.25rem;
    height: 1.25rem;
    background: #D70203;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: 4rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 6rem 0;
    }
}

.steps-container {
    position: relative;
}

.steps-line {
    display: none;
    position: absolute;
    top: 3rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
}

@media (min-width: 768px) {
    .steps-line {
        display: block;
    }
}

.steps-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: var(--primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    text-align: center;
}

.step-icon {
    position: relative;
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.step-icon > svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--muted-foreground);
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -1rem;
    border: 2px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    z-index: -1;
}

.step.active .step-icon::before {
    background: #D70203;
    border-color: #D70203;
}

.step.active .step-icon > svg {
    color: #fff;
}

.step-number {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 200px;
    margin: 0 auto;
}

/* ===== Stats Section ===== */
.stats {
    padding: 4rem 0;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .stats {
        padding: 6rem 0;
    }
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D70203;
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 4.5rem;
    }
}

.stat-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
}

.stat-sublabel {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .faq {
        padding: 6rem 0;
    }
}

.faq-watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 18rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

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

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--muted);
}

.faq-item.active .faq-question {
    background: #000;
    color: #fff;
}
.faq-card-content a:hover {
    background: #fff ! IMPORTANT;
    color: #000 !important;
}
.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: #D70203;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.faq-item.active .faq-icon {
    background: var(--secondary);
    color: #000;
}

.faq-question > span:nth-child(2) {
    flex: 1;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .faq-question > span:nth-child(2) {
        font-size: 1rem;
    }
}

.faq-question .chevron {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1rem;
    background: var(--muted);
    border-top: 1px solid var(--border);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* FAQ Image */
.faq-image {
    position: relative;
}

.faq-card {
    background: #f5f5f5;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.faq-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    opacity: 0.8;
}

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

.faq-card a:hover {
    background: #000 !important;
    color: #fff ! IMPORTANT;
}

.faq-card-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.faq-card-content h3:last-of-type {
    margin-bottom: 1.5rem;
}

.faq-float-icon {
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.faq-float-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #D70203;
}

/* ===== Request Quote Section ===== */
.request-quote {
    padding: 4rem 0;
    background: var(--secondary);
}

@media (min-width: 768px) {
    .request-quote {
        padding: 6rem 0;
    }
}

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

@media (min-width: 1024px) {
    .quote-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.quote-info {
    color: var(--white);
}

.quote-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .quote-info h2 {
        font-size: 2.5rem;
    }
}

.quote-info h2 .text-primary {
    color: #D70203;
}

.quote-info > p {
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 28rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-icon {
    background: #D70203;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-300);
}

/* Quote Form */
.quote-form-wrapper {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.quote-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row.three-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    background: var(--background);
    color: var(--foreground);
    transition: all 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #000;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: var(--muted-foreground);
}

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

/* ===== News Section ===== */
.news {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .news {
        padding: 6rem 0;
    }
}

.news-watermark {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 12rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.05;
    pointer-events: none;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.news-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

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

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #D70203;
    color: #fff;
    padding: 0.75rem;
    border-radius: 0.25rem;
    text-align: center;
    min-width: 60px;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-meta svg {
    width: 1rem;
    height: 1rem;
    color: #D70203;
}

.news-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: #D70203;
}

.news-content > p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #D70203;
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

.read-more svg {
    width: 1rem;
    height: 1rem;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 4rem 0;
    background: #f5f5f5;
}

@media (min-width: 768px) {
    .pricing {
        padding: 6rem 0;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-0.5rem);
}

.pricing-card.featured {
    background: #f5f5f5;
}

.pricing-image {
    height: 11rem;
    overflow: hidden;
    position: relative;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .pricing-image::after {
    background: rgba(255, 184, 0, 0.2);
}

.pricing-content {
    padding: 1.5rem;
}

.pricing-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 1rem;
}

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

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
}

.pricing-card.featured .price .amount {
    color: #000;
}

.price sup {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

.pricing-card.featured .price sup {
    color: #000;
}

.price .period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-left: 0.25rem;
}

.pricing-card.featured .price .period {
    color: #000;
}

.pricing-features {
    margin-bottom: 1.5rem;
}

article.pricing-card.featured h3 {
    color: #000;
}
article.pricing-card.featured a {
    background: #D70203;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.pricing-card.featured .pricing-features li {
    color: #000;
}

.pricing-features .check {
    width: 1.25rem;
    height: 1.25rem;
    background: #D70203;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features .check {
    background: #D70203;
    color: #fff;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column h4.mt-8 {
    margin-top: 2rem;
}

.footer-column p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.footer-contact,
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li,
.footer-hours li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact svg,
.footer-hours svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact span,
.footer-hours span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Newsletter */
.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    background: var(--secondary-light);
    border: none;
    border-radius: 0.25rem 0 0 0.25rem;
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff;
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: #D70203;
    border: none;
    border-radius: 0 0.25rem 0.25rem 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #fff;
}

form.newsletter-form input {
    border: 1px solid #9ca3af;
}

.footer-social a:hover {
    background: #fff !important;
    color: #000 !important;
}

.newsletter-form button:hover svg {
    color: #000 !important;
}

.newsletter-form svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social svg {
    width: 1rem;
    height: 1rem;
    color: var(--white);
}

.footer-social a:hover svg {
    color: var(--secondary);
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D70203;
}

.footer-links svg {
    width: 1rem;
    height: 1rem;
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--secondary-light);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

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

/* ===== About Page Styles ===== */

/* Page Hero Banner */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (min-width: 768px) {
    .page-hero {
        min-height: 450px;
    }
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(13 14 15 / 90%) 0%, rgb(28 30 31 / 70%) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--gray-300);
    transition: color 0.3s ease;
}

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

.breadcrumb svg {
    width: 1rem;
    height: 1rem;
    color: var(--gray-400);
}

.breadcrumb span {
    color: var(--primary);
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 3.5rem;
    }
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: #D70203;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* About Introduction */
.about-intro {
    padding: 5rem 0;
}

.about-intro-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-intro-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-intro-lead {
    font-size: 1.125rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-intro-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-intro-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

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

.intro-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.intro-stat-label {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: #D70203;
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.4);
}

@media (min-width: 768px) {
    .about-image-badge {
        bottom: -2rem;
        right: -2rem;
        padding: 1.5rem 2rem;
    }
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mission Section */
.about-mission {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.about-mission .section-header {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-mission .section-subtitle {
    color: var(--gray-300);
    font-size: 1rem;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 4rem;
    height: 4rem;
    background: #D70203;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}

.value-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Team Section */
.about-team {
    padding: 5rem 0;
}

.team-image-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.team-image-wrapper img {
    width: 100%;
    height: auto;
}

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

@media (min-width: 640px) {
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--muted);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

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

.team-stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #D70203;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.team-stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.team-stat-label {
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

/* Certifications Section */
.about-certifications {
    padding: 5rem 0;
    background: var(--muted);
}

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

@media (min-width: 640px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.certification-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.certification-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.certification-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.certification-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}

.certification-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.certification-card p {
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

/* Why Choose Us Section */
.about-why-us {
    padding: 5rem 0;
}

.why-us-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.why-us-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-us-item {
    display: flex;
    gap: 1rem;
}

.why-us-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #D70203;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
}

.why-us-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.why-us-text p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.why-us-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.why-us-image img {
    width: 100%;
    height: auto;
}

/* About CTA Section */
.about-cta {
    padding: 5rem 0;
    background: #fff;
}

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

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

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

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

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Active Navigation State */
.nav-menu li a.active,
.mobile-menu ul li a.active {
    color: var(--primary);
}

/* ===== Services Page Styles ===== */

/* Services Overview Grid */
.services-overview {
    padding: 5rem 0;
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-overview-card {
    background: var(--muted);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

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

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

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

.service-overview-content {
    padding: 1.5rem;
    text-align: center;
}

.service-overview-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.service-overview-content p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Services Detailed Section */
.services-detailed {
    padding: 3rem 0 5rem;
}

.service-detail {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

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

@media (min-width: 1024px) {
    .service-detail.reverse {
        direction: rtl;
    }
    
    .service-detail.reverse > * {
        direction: ltr;
    }
}

.service-detail-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-detail-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-detail-content h2 {
        font-size: 2rem;
    }
}

.service-detail-content p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--foreground);
}

.service-features li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #D70203;
    flex-shrink: 0;
}

/* Additional Services Section */
.additional-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.additional-services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .additional-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.additional-service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
section.additional-services h2.section-title {
    color: #fff !important;
}
section.additional-services p {
    color: #fff !important;
}
.additional-service-icon {
    width: 4rem;
    height: 4rem;
    background: #D70203;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.additional-service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}

.additional-service-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.additional-service-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}
