/* =====================================================
   Catering Equipment Sales & Repairs - Custom Stylesheet
   Modern, Professional Design with Bootstrap 5
   ===================================================== */

/* -------------------- CSS Variables -------------------- */
:root {
    --primary: #e7302a;
    --primary-dark: #c4241f;
    --secondary: #1a1a2e;
    --secondary-light: #252542;
    --accent: #f39c12;
    --accent-light: #f5b041;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border-color: #e9ecef;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--text-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

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

/* -------------------- Top Bar -------------------- */
.top-bar {
    background: var(--secondary);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-info span {
    margin-right: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-info a {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-info a:hover {
    color: var(--accent);
}

.top-bar-info i {
    color: var(--primary);
    margin-right: 8px;
}

.top-bar-social {
    color: rgba(255, 255, 255, 0.9);
}

/* -------------------- Navigation -------------------- */
.navbar {
    background: var(--secondary-light);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.navbar-brand .logo-img {
    transition: var(--transition);
}

.navbar-brand:hover .logo-img {
    transform: scale(1.02);
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white) !important;
    padding: 10px 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.dropdown-menu {
    background: var(--text-white);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 10px 25px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--primary);
    color: var(--text-white);
}

.btn-cta {
    background: var(--primary);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-cta:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-cta i {
    margin-right: 5px;
}

/* -------------------- Hero Section -------------------- */
.hero {
    background: url('/assets/images/hero-bg.jpg') center center / cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(37, 37, 66, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-shape {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-2 {
    position: absolute;
    right: 100px;
    top: -150px;
    width: 300px;
    height: 300px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

/* -------------------- Buttons -------------------- */
.btn-primary-custom {
    background: var(--primary);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 48, 42, 0.3);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* -------------------- Sections -------------------- */
section {
    padding: 100px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: var(--secondary);
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

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

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-header h2 {
    color: var(--text-white);
}

/* -------------------- Service Cards -------------------- */
.service-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h4 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card .btn {
    font-size: 0.9rem;
}

/* -------------------- Feature Boxes -------------------- */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 20px;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.feature-box-content h5 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-box-content p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* -------------------- About Section -------------------- */
.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--text-white);
    padding: 25px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .years {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -------------------- Testimonials -------------------- */
.testimonial-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h5 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
}

/* -------------------- CTA Section -------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-section .btn-white {
    background: var(--text-white);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-section .btn-white:hover {
    background: var(--secondary);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* -------------------- Page Headers -------------------- */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.5), transparent);
}

.page-header h1 {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

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

.page-header .breadcrumb-item.active {
    color: var(--primary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* -------------------- Cards -------------------- */
.info-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    height: 100%;
    border-left: 4px solid var(--primary);
}

.info-card h4 {
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.price-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: var(--text-white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-card h4 {
    margin-bottom: 20px;
}

.price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    color: var(--primary);
}

/* -------------------- Contact Form -------------------- */
.contact-form {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(231, 48, 42, 0.1);
}

.contact-form label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-info-box {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    color: var(--text-white);
    height: 100%;
}

.contact-info-box h3 {
    color: var(--text-white);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--text-white);
}

.contact-info-content h5 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-content p,
.contact-info-content a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

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

/* -------------------- Projects/Gallery -------------------- */
.project-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: 300px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* -------------------- Partners/Brands -------------------- */
.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    background: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}

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

.footer-main {
    padding: 80px 0 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer h5 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 20px;
}

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

/* -------------------- Back to Top -------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

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

.back-to-top:hover {
    background: var(--secondary);
    color: var(--text-white);
    transform: translateY(-5px);
}

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

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

/* -------------------- Responsive -------------------- */
@media (max-width: 991.98px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

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

    .hero-stats {
        gap: 25px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .navbar-collapse {
        background: var(--secondary);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--border-radius);
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 70vh;
    }

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

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

    .hero-stats {
        gap: 15px;
        justify-content: space-between;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

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

    .about-experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }

    .contact-form,
    .contact-info-box {
        padding: 30px;
    }

    .page-header {
        padding: 80px 0 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* -------------------- Utilities -------------------- */
.text-primary-custom {
    color: var(--primary) !important;
}

.text-secondary-custom {
    color: var(--secondary) !important;
}

.bg-primary-custom {
    background-color: var(--primary) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary) !important;
}

.mt-6 { margin-top: 4rem !important; }
.mb-6 { margin-bottom: 4rem !important; }
.py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }

/* Service Area Map Styling */
.service-map {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* List styling */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary);
}
