/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

/* --- CSS Variables --- */
:root {
    --primary-color: #f2cc45;
    --bg-color: #FFFFFF;
    --light-gray-bg: #f8f9fa;
    --dark-bg-color: #1b191a;
    --text-color: #1b191a;
    --light-text-color: #FFFFFF;
    --container-width: 1140px;
    --base-font-size: 16px;
    --h1-size: 2.625rem; /* 42px */
    --h2-size: 2.25rem; /* 36px */
}

/* --- Global Resets & Base Styles --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: var(--base-font-size); line-height: 1.6; color: var(--text-color); background-color: var(--bg-color); }

/* --- Layout --- */
.container { max-width: var(--container-width); margin-left: auto; margin-right: auto; padding: 0 1rem; }
section { padding: 6rem 0; }
.bg-alternate { background-color: var(--light-gray-bg); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: var(--h2-size); font-weight: 900; margin-bottom: 0.5rem; }
.section-header p { max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: var(--h1-size); font-weight: 900; }
h2 { font-size: var(--h2-size); }

/* --- Buttons --- */
.btn { display: inline-block; padding: 1rem 2rem; background-color: var(--primary-color); color: var(--text-color); font-weight: 700; text-decoration: none; text-transform: uppercase; border-radius: 7px; border: none; cursor: pointer; transition: all 0.3s ease; text-align: center; }
.btn:hover { filter: brightness(0.9); transform: translateY(-2px); }

/* --- Header --- */
.main-header { background-color: var(--dark-bg-color); color: var(--light-text-color); padding: 1rem 0; position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: background-color 0.3s ease; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 1.2rem; text-decoration: none; color: var(--light-text-color); display: flex; align-items: center; }
.logo img { height: 60px; width: auto; display: block; }
.nav-wrapper { display: flex; align-items: center; gap: 2rem; }
.main-nav { display: flex; gap: 1.5rem; }
.main-nav a { color: var(--light-text-color); text-decoration: none; font-weight: 700; transition: color 0.3s ease; }
.main-nav a:hover { color: var(--primary-color); }
.nav-phone { display: block; padding: 0.5rem 1rem; border: 2px solid var(--primary-color); border-radius: 7px; color: var(--primary-color); font-weight: 700; text-decoration: none; transition: all 0.3s ease; }
.nav-phone:hover { background-color: var(--primary-color); color: var(--dark-bg-color); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001; }
.hamburger .bar { width: 25px; height: 3px; background-color: var(--light-text-color); border-radius: 5px; transition: all 0.3s ease; }

/* --- Hero Section --- */
#hero { display: flex; align-items: center; min-height: 100vh; padding-top: 120px; background: linear-gradient(rgba(27, 25, 26, 0.85), rgba(27, 25, 26, 0.85)), url('img/laweta1.jpg') center/cover no-repeat; color: var(--light-text-color); }
.hero-grid { display: grid; grid-template-columns: 1fr; align-items: center; gap: 3rem; }
.hero-subheading { font-size: 1.2rem; color: #e0e0e0; margin-bottom: 0.5rem; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
.hero-content h1 { color: var(--primary-color); margin-bottom: 1rem; }
.hero-content p { font-size: 1.1rem; max-width: 600px; margin-bottom: 2rem; }
.hero-benefits { list-style: none; max-width: 600px; margin-bottom: 2rem; }
.hero-benefits li { font-size: 1.1rem; margin-bottom: 0.8rem; display: flex; align-items: flex-start; }
.hero-benefits .checkmark { color: #28a745; font-weight: bold; margin-right: 0.8rem; font-size: 1.2rem; flex-shrink: 0; }
.hero-cta-box { background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 2.5rem; border-radius: 10px; text-align: center; }
.hero-cta-box h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.hero-cta-box .phone-number { font-size: 2.5rem; font-weight: 900; color: var(--primary-color); text-decoration: none; display: block; margin-bottom: 1.5rem; transition: color 0.3s ease; }
.hero-cta-box .phone-number:hover { color: var(--light-text-color); }

/* --- Process Section --- */
.process-item { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; margin-bottom: 4rem; }
.process-item:last-child { margin-bottom: 0; }
.process-image { 
    width: 100%; 
    height: 350px; 
    border-radius: 10px; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(27, 25, 26, 0.7), rgba(27, 25, 26, 0.7));
    border-radius: 10px;
}
.process-image-text {
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.process-text h3 { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 1rem; }
.process-text p { font-size: 1.1rem; }

/* --- Services Section --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { background-color: var(--dark-bg-color); color: var(--light-text-color); padding: 2rem; border-radius: 7px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.service-card svg { width: 50px; height: 50px; fill: none; stroke: var(--primary-color); stroke-width: 1; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* --- Features Section --- */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.feature-item { background-color: var(--bg-color); padding: 2rem; border-radius: 7px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.feature-item::after { content: ''; position: absolute; top: 0; right: 0; width: 6px; height: 100%; background-color: var(--primary-color); opacity: 0.7; }
.feature-item h3 { margin-bottom: 0.5rem; }

/* --- Testimonials Section (SLIDER) --- */
.testimonial-slider-container { position: relative; padding: 0 40px; }
.testimonial-slider-wrapper { max-width: 1000px; margin: 0 auto; overflow: hidden; }
.testimonial-slider { display: flex; transition: transform 0.5s ease-in-out; margin: 0 -1rem; }
.testimonial-card { flex: 0 0 100%; border: 1px solid #ddd; padding: 2rem; border-radius: 7px; background-color: var(--bg-color); margin: 0 1rem; }
.testimonial-card p { font-style: italic; margin-bottom: 1rem; font-size: 1.1rem; }
.testimonial-author { font-weight: 700; }
.stars { color: var(--primary-color); font-size: 1.2rem; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: var(--primary-color); border: none; border-radius: 50%; width: 50px; height: 50px; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: background-color 0.3s ease; z-index: 10; }
.slider-btn:hover { background-color: var(--text-color); }
.slider-btn svg { width: 24px; height: 24px; fill: var(--text-color); }
.slider-btn:hover svg { fill: var(--primary-color); }
.prev-btn { left: -15px; }
.next-btn { right: -15px; }

/* --- Gallery Section --- */
#gallery { padding-left: 0; padding-right: 0; }
#gallery .section-header { padding: 0 1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.gallery-item { aspect-ratio: 4 / 3; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; transition: opacity 0.3s ease; }
.gallery-item img:hover { opacity: 0.8; }
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.modal-content { margin: auto; display: block; width: 80%; max-width: 1200px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.close-modal { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }
.close-modal:hover, .close-modal:focus { color: #bbb; text-decoration: none; }
.modal .prev, .modal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}
.modal .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.modal .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}
.modal .prev:hover, .modal .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* --- FAQ Section --- */
.faq-item { border-bottom: 1px solid #e0e0e0; padding: 1.5rem 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 1.2rem; font-weight: 700; }
.faq-question::after { content: '+'; font-size: 2rem; transition: transform 0.3s ease; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; padding-top: 0; }
.faq-item.active .faq-answer { max-height: 1000px; padding-top: 1rem; }

/* --- CTA Section --- */
#cta { padding: 0; }
.cta-grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
.cta-map iframe { width: 100%; height: 100%; min-height: 450px; border: 0; }
.cta-content { background-color: var(--primary-color); color: var(--dark-bg-color); padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.cta-content h2 { font-size: 2.5rem; font-weight: 900; color: var(--dark-bg-color); margin-bottom: 1rem; }
.cta-content p { margin-bottom: 2.5rem; font-size: 1.2rem; }
.cta-content .btn { background-color: var(--dark-bg-color); color: var(--light-text-color); }
.cta-content .btn:hover { background-color: #000; }
.cta-phone { font-size: 2.2rem; font-weight: 900; color: var(--dark-bg-color); text-decoration: none; display: block; margin: 0 auto 1.5rem; text-align: center; }

/* --- Full-width CTA (strip) --- */
.cta-full { background-color: var(--primary-color); color: var(--dark-bg-color); padding: 8rem 0; text-align: center; }
.cta-full h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 1rem; }
.cta-full .btn { background-color: var(--dark-bg-color); color: var(--light-text-color); }
.cta-full .btn:hover { background-color: #000; }
.cta-content .cta-phone { font-size: 2.2rem; font-weight: 900; color: var(--dark-bg-color); text-decoration: none; display: block; margin: 0 auto 1.5rem; text-align: center; }

/* --- Footer --- */
.main-footer { background-color: #111; color: var(--light-text-color); padding-top: 4rem; padding-bottom: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-grid h4 { color: var(--primary-color); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid a { color: var(--light-text-color); text-decoration: none; transition: all 0.3s ease; }
.footer-grid a:hover { color: var(--primary-color); }
.copyright { text-align: center; border-top: 1px solid #333; padding-top: 2rem; }

/* --- Animations --- */
.fade-in-section { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .nav-wrapper { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--dark-bg-color); flex-direction: column; align-items: center; padding: 2rem 0; }
    .nav-wrapper.active { display: flex; }
    .main-nav { flex-direction: column; text-align: center; }
    .hamburger { display: flex; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
@media (max-width: 767px) {
    #hero { padding-top: 140px; }
    .hero-content h1 { font-size: 1.8rem; padding-top: 1rem; }
    .hero-subheading { font-size: 1rem; }
    .process-item { grid-template-columns: 1fr; }
    .process-item .process-image { order: 2; }
    .process-item .process-text { order: 1; }
    .testimonial-slider-container { padding: 0 1rem; }
    .testimonial-slider { flex-direction: column; }
    .testimonial-card { flex: 1; margin: 0 0 1rem 0; }
    .slider-btn { display: none; }

    .nav-phone {
        font-size: 0.9rem;
        white-space: nowrap;
    }
    .hero-cta-box .phone-number {
        font-size: 2rem;
        white-space: nowrap;
    }

    .cta-phone {
        font-size: 1.8rem;
        white-space: nowrap;
    }
    .footer-grid a[href^="tel:"] {
        white-space: nowrap;
    }
}
@media (min-width: 768px) {
    :root { --h1-size: 2.1rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .process-item { grid-template-columns: 1fr 1fr; }
    .process-item:nth-child(even) .process-image { order: -1; }
    .testimonial-card { flex: 0 0 calc(50% - 2rem); }
    .cta-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 992px) {
    .hero-grid { grid-template-columns: 1.2fr 1fr; }
    .testimonial-card { flex: 0 0 calc(33.333% - 2rem); }
}
