/* --- GLOBAL RESETS & STYLING --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.blue-text { color: #008AFC; }
.red-text { color: #E21C21; }
.white-text { color: #ffffff !important; }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-red {
    background-color: #E21C21;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #E21C21;
    color: #ffffff;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-black {
    background-color: #000000;
    color: #ffffff;
}

.btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* --- HEADER --- */
.site-header {
    background-color: #000000;
    padding: 20px 0;
    border-bottom: 1px solid #282626;
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Deep overlay makes text pop */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 51px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 26px;
    font-weight: normal;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- SERVICES SECTION --- */
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, #3D9BE9 0%, #FFFFFF 100%);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 50px;
}

.services-grid-5, .services-grid-3 {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.services-grid-5 { grid-template-columns: repeat(5, 1fr); }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }

.service-card {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.service-card h3 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

/* --- OUR STORY (SIDE-BY-SIDE MATCHING SCREENSHOT) --- */
.our-story-split {
    display: flex;
    min-height: 550px;
    background-color: #ffffff;
}

.story-image-side {
    flex: 1;
    background-image: url('assets/story-bg.jpg');
    background-size: cover;
    background-position: center;
}

.story-text-side {
    flex: 1;
    background-color: #dcdcdc; /* Light grey block style from image_8047cd.png */
    color: #000000;
    display: flex;
    align-items: center;
    padding: 60px;
}

.story-text-side .content-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.story-text-side h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 25px;
}

.story-text-side p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* --- WORKING HOURS (SIDE-BY-SIDE) --- */
.working-hours-split {
    display: flex;
    min-height: 550px;
    background-color: #000000;
}

.hours-text-side {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hours-text-side .content-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.hours-text-side h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
}

.hours-list {
    list-style: none;
    margin-bottom: 30px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.hours-list li.closed {
    color: #E21C21;
}

.hours-text-side .btn {
    display: block;
    width: 200px;
    margin: 0 auto;
}

.hours-image-side {
    flex: 1;
    background-image: url('assets/hours-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* --- FAQS SECTION --- */
.faqs {
    background-color: #000000;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.faq-card {
    background-color: #ffffff;
    color: #000000;
    padding: 30px 20px;
    border-radius: 6px;
    text-align: center;
}

.faq-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #282626;
}

.faq-card .question {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.faq-card .answer {
    font-size: 13px;
    color: #555555;
}

/* --- CTA & MAP --- */
.cta-map {
    background-color: #000000;
    text-align: center;
    padding-top: 80px;
}

.cta-container h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.cta-container h3 {
    font-size: 24px;
    margin-bottom: 40px;
}

.map-iframe-container {
    width: 100%;
    line-height: 0;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #000000;
    padding: 40px 0;
    border-top: 1px solid #111111;
    font-size: 13px;
}

/* --- RESPONSIVE BREAKPOINTS (Mobile Optimization) --- */
@media (max-width: 1024px) {
    .services-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero h5 { font-size: 36px; }
    .hero h1 { font-size: 18px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .services-grid-5, .services-grid-3, .faq-grid { grid-template-columns: 1fr; }
    
    /* Collapse splits to full stacks on mobile */
    .our-story-split, .working-hours-split { flex-direction: column; }
    .story-image-side, .hours-image-side { height: 300px; }
    .story-text-side, .hours-text-side { padding: 40px 20px; }
}