:root {
    --primary-color: #2c303b;
    --accent-color: #8b2323;
    --accent-hover: #681919;
    --text-color: #555555;
    --text-hover: #999999;
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --header-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

a, a:visited {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

a:hover, a:active {
    color: var(--accent-hover);
}

.site-header {
    background-color: #fff;
    height: var(--header-height);
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-logo {
    max-height: 50px;
    width: auto;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
}

.desktop-nav a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--accent-color);
    cursor: pointer;
}

.mobile-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.mobile-offcanvas.active {
    visibility: visible;
    opacity: 1;
}

.offcanvas-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.offcanvas-content {
    position: absolute;
    right: -300px;
    top: 0;
    width: 300px;
    max-width: 80%;
    height: 100%;
    background-color: var(--primary-color);
    padding: 30px 20px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-offcanvas.active .offcanvas-content {
    right: 0;
}

.close-offcanvas {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-links a {
    display: block;
    color: #fff;
    padding: 15px 0;
    font-size: 16px;
}

.mobile-nav-links a:hover {
    color: #a4a4a4;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 0;
    border-radius: 4px;
    font-size: 15px;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.text-center { text-align: center; }
.fw-bold { font-weight: 700; }
.fst-italic { font-style: italic; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.visually-hidden { display: none; }

.hero-slider-section {
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    max-width: 650px;
    width: 100%;
}

.quote-slider {
    position: relative;
    width: 100%;
    height: 120px;
}

.quote-slide {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    text-align: right;
}

.quote-slide.active {
    opacity: 1;
    visibility: visible;
}

.quote-text {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-body);
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.quote-author {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-heading);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.slider-dots-vertical {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.slider-dots-vertical .dot {
    width: 16px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots-vertical .dot.active, 
.slider-dots-vertical .dot:hover {
    background-color: #ffffff;
    width: 26px;
}

@media (max-width: 768px) {
    .hero-container {
        justify-content: center;
    }
    .slider-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .quote-slide {
        text-align: center;
    }
    .slider-dots-vertical {
        flex-direction: row;
        align-items: center;
        margin-top: 15px;
    }
}

.content-section {
    padding: 20px 0;
}
.content-section p {
    margin-bottom: 15px;
}

.custom-divider {
    border-top: 1px solid #eee;
    margin: 30px 0;
}
.section-hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 500;
    margin: 15px 0;
}

.btn-action {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: var(--text-color);
    background-color: transparent;
    font-weight: 600;
}
.btn-action:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}
.action-btn-wrap {
    margin: 30px 0;
}

.site-footer {
    background-color: #363839;
    color: #b0b0b0;
    padding: 40px 0 20px 0;
    margin-top: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.footer-social a {
    color: #fff;
    font-size: 32px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #d3d3d3;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-col h4, .footer-col h5, .footer-col h6 {
    color: #b0b0b0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-btn {
    display: block;
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 8px 0;
    border: 1px solid #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: sans-serif;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background-color: #fff;
    color: #333;
}

.footer-about {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-address {
    margin-top: 15px;
}

.footer-address a {
    color: #a4a4a4;
    text-decoration: none;
}

.footer-address a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
}

.footer-legal {
    margin-bottom: 5px;
}

.footer-legal a {
    color: #d6d6d6;
    padding: 0 5px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #f0f0f0;
}

@media (max-width: 991px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

.breadcrumb-custom {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.breadcrumb-custom a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    color: var(--accent-hover);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.page-header .subtitle {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.contact-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f4f6f8;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-box:hover .contact-icon {
    background-color: var(--accent-color);
    color: #ffffff;
}

.contact-box h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.contact-box a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--accent-color);
}

.map-container {
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }
}

.service-box {
    background-color: #fcfcfc;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    background-color: #f9f9f9; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); 
}

.service-box h2 {
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    color: #222;
}

.intro-quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 0 4px 4px 0;
}

.custom-button {
    display: inline-block;
    padding: 10px 22px;
    background-color: var(--accent-color);
    color: #fff !important; 
    text-decoration: none !important;
    border-radius: 4px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background-color: var(--accent-hover);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

details.service-accordion {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 12px;
    padding: 14px 18px;
    transition: all 0.3s ease;
}

details.service-accordion[open] {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(139, 35, 35, 0.08);
}

details.service-accordion summary {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

details.service-accordion summary::-webkit-details-marker {
    display: none;
}

details.service-accordion summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    font-size: 13px;
    transition: transform 0.3s ease;
}

details.service-accordion[open] summary::after {
    transform: rotate(180deg);
}

details.service-accordion summary:hover {
    color: var(--accent-color);
}

.accordion-content {
    margin-top: 14px;
    padding-top: 12px;
    padding-bottom: 4px;
    border-top: 1px solid #f0f0f0;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-color);
}

.accordion-content p {
    margin-bottom: 10px;
}

.accordion-content .custom-button {
    display: inline-block;
    margin-top: 12px;
    margin-bottom: 12px;
}