/* ===========================
   NOSPOWER GARAGE - CSS STYLES
   ========================== */

/* CSS Variables - Color Palette */
:root {
    --primary-red: #E10600;
    --primary-red-dark: #B50500;
    --secondary-black: #000000;
    --metallic-gray: #9DA3A6;
    --metallic-gray-light: #B5B9BD;
    --dark-gray: #1a1a1a;
    --darker-gray: #0f0f0f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--secondary-black);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--metallic-gray);
    margin-bottom: 3rem;
}

/* Common Section Padding */
.section-padding {
    padding: 105px 0;
}

/* ===========================
   HEADER & NAVIGATION STYLES
   ========================== */

.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(225, 6, 0, 0.3);
}

/* Logo Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
    .logo-container .logo {
        width: 110px;
    }

.logo-nos {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-red);
    letter-spacing: 1px;
}

.logo-garage {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--metallic-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -5px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 2rem);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===========================
   HERO SECTION STYLES
   ========================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    /* background: linear-gradient(135deg, var(--secondary-black) 0%, var(--dark-gray) 100%); */
    
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23E10600;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23000000;stop-opacity:0.3" /></linearGradient></defs><polygon fill="url(%23grad)" points="0,0 1000,0 800,1000 0,1000"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--metallic-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.8s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ===========================
   BUTTON STYLES
   ========================== */

.btn-primary {
    background: var(--primary-red);
    border: 2px solid var(--primary-red);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary-black);
    transform: translateY(-2px);
}

/* ===========================
   SERVICES SECTION STYLES
   ========================== */

.service-card {
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--metallic-gray);
    line-height: 1.6;
}

/* ===========================
   PERFORMANCE SECTION STYLES
   ========================== */

.performance-list {
    list-style: none;
    padding: 0;
}

.performance-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.performance-list li i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.performance-chart img {
    border: 3px solid var(--primary-red);
}

/* Performance Stats Table */
.table-dark {
    --bs-table-bg: var(--dark-gray);
    --bs-table-border-color: rgba(255, 255, 255, 0.2);
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ===========================
   GALLERY SECTION STYLES
   ========================== */

.gallery-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--metallic-gray);
    color: var(--metallic-gray);
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem 0.5rem 0;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

.gallery-grid {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay h5 {
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    margin-bottom: 1rem;
    color: var(--metallic-gray);
}

/* ===========================
   REVIEWS SECTION STYLES
   ========================== */

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author strong {
    color: var(--secondary-black);
    display: block;
}

.review-author span {
    color: var(--metallic-gray);
    font-size: 0.9rem;
}

/* ===========================
   ABOUT SECTION STYLES
   ========================== */

.about-content .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--metallic-gray-light);
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: var(--white);
}

.about-features li i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* ===========================
   CONTACT SECTION STYLES
   ========================== */

.contact-info {
    padding-left: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    background: var(--primary-red);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--secondary-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: #666;
    margin: 0;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-red);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-label {
    color: var(--secondary-black);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(225, 6, 0, 0.25);
}

/* ===========================
   FOOTER STYLES
   ========================== */

.footer {
    background: var(--secondary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-brand .logo-container {
    margin-bottom: 1rem;
}

.footer-slogan {
    color: var(--primary-red);
    font-weight: 600;
    font-style: italic;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--metallic-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact a {
    color: var(--metallic-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-contact a:hover {
        color: var(--primary-red);
    }
.footer-links a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red-dark);
    transform: translateY(-3px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--metallic-gray);
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--primary-red);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.copyright {
    color: var(--metallic-gray);
    margin: 0;
}

.footer-legal-link {
    color: var(--metallic-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--primary-red);
}

/* ===========================
   FLOATING ELEMENTS
   ========================== */

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-red-dark);
    transform: translateY(-3px);
}

/* ===========================
   ANIMATIONS
   ========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translateX(-50%) translate3d(0, -15px, 0);
    }
    70% {
        transform: translateX(-50%) translate3d(0, -7px, 0);
    }
    90% {
        transform: translateX(-50%) translate3d(0, -2px, 0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    animation: spin 1s linear infinite;
}

/* ===========================
   RESPONSIVE DESIGN
   ========================== */

/* Large devices (desktops, 992px and up) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .hero-buttons .btn {
        margin-bottom: 1rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .gallery-card img {
        height: 200px;
    }
    
    .filter-btn {
        margin-bottom: 0.5rem;
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .review-card {
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
    
    .about-content {
        margin-bottom: 2rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-nos {
        font-size: 1.5rem;
    }
    
    .logo-garage {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===========================
   UTILITY CLASSES
   ========================== */

.text-primary-red {
    color: var(--primary-red) !important;
}

.bg-primary-red {
    background-color: var(--primary-red) !important;
}

.text-metallic-gray {
    color: var(--metallic-gray) !important;
}

.bg-metallic-gray {
    background-color: var(--metallic-gray) !important;
}

.border-primary-red {
    border-color: var(--primary-red) !important;
}

/* Hidden class for filtering */
.gallery-item.hidden {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #28a745;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    display: block;
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Toast/Alert Styles */
.alert-custom {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-dark);
}

/* Focus styles for accessibility */
button:focus,
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card {
        border: 2px solid var(--white);
    }
    
    .gallery-card {
        border: 2px solid var(--white);
    }
    
    .review-card {
        border: 2px solid var(--secondary-black);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
    
    .whatsapp-btn {
        animation: none;
    }
}

/* Print styles */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-padding {
        padding: 1rem 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

.widget-content p {
    color: var(--metallic-gray);
}
.advantage-list li {
    color: #666;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--dark-gray);
    padding: 120px 0 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--metallic-gray);
    text-decoration: none;
}

    .breadcrumb-item a:hover {
        color: var(--primary-red);
    }

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--metallic-gray);
}

/* Page Header */
.page-header {
    /*padding: 40px 0 80px;*/
    padding: 230px 0 100px 0 !important;
    background: linear-gradient(135deg, rgb(10 10 10 / 0%) 0%, rgba(26, 26, 26, 0.9) 100%), url(/img/hero-bg1.jpg) center center / cover no-repeat;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--metallic-gray);
    font-size: 0.9rem;
}

    .meta-item i {
        margin-right: 0.5rem;
        color: var(--primary-red);
    }

/* Content Blocks */
.content-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

    .content-block:last-child {
        border-bottom: none;
    }

/* Advantage List */
.advantage-list {
    list-style: none;
    padding: 0;
}

    .advantage-list li {
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
    }

    .advantage-list i {
        margin-right: 0.75rem;
        font-size: 1.1rem;
    }

/* Process Steps */
.process-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    background: var(--primary-red);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--secondary-black);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

/* Sidebar Widgets */
.sidebar {
    position: sticky;
    top: 120px;
}

.widget {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.widget-title {
    color: var(--secondary-black);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-red);
}

/* Contact Widget */
.contact-info-compact {
    margin: 1.5rem 0;
}

.contact-item-compact {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 5px;
}

    .contact-item-compact i {
        color: var(--primary-red);
        margin-right: 0.75rem;
        font-size: 1.1rem;
    }

    .contact-item-compact a {
        color: var(--secondary-black);
        text-decoration: none;
        font-weight: 500;
    }

        .contact-item-compact a:hover {
            color: var(--primary-red);
        }

/* Price Widget */
.price-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.price-label {
    font-weight: 600;
    color: var(--secondary-black);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.price-includes h6 {
    color: var(--secondary-black);
    margin-bottom: 0.75rem;
}

.price-includes ul {
    list-style: none;
    padding: 0;
}

.price-includes li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: #666;
}

.price-includes i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

/* Related Services Widget */
.related-service-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    flex-direction: column;
}

    .related-service-item:hover {
        border-color: var(--primary-red);
        transform: translateY(-2px);
    }

.service-icon-small {
    background: var(--primary-red);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-info h6 {
    margin-bottom: 0.25rem;
}

    .service-info h6 a {
        color: var(--secondary-black);
    }

        .service-info h6 a:hover {
            color: var(--primary-red);
        }

/* Responsive Design for Inner Page */
@@media (max-width: 991.98px) {
    .page-header {
        text-align: center;
        padding: 20px 0 60px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-meta {
        justify-content: center;
    }

    .sidebar {
        position: static;
        margin-top: 3rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 100px 0 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .page-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .widget {
        padding: 1.5rem;
    }

    .process-steps {
        margin: 1rem 0;
    }

    .step-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

/* Accordion Custom Styling */
.accordion-button {
    background: #f8f9fa;
    border: none;
    color: var(--secondary-black);
    font-weight: 600;
}

    .accordion-button:not(.collapsed) {
        background: var(--primary-red);
        color: var(--white);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(225, 6, 0, 0.25);
    }

.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 0.5rem;
    border-radius: 5px !important;
}

.accordion-body {
    color: #666;
    line-height: 1.6;
}