/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
}

/* LAYOUT */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: #ff6b00;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-weight: bold;
    font-size: 14px;
}

/* HEADER */
.header {
    background: #111;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
}

.logo {
    font-weight: bold;
    font-size: 18px;
}

/* NAV */
.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline;
}

/* HEADER RIGHT */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

/* BUTTONS */
.call-btn {
    background: #ff6b00;
    color: #fff;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.call-btn.big {
    padding: 14px 28px;
    font-size: 16px;
}

.call-btn.alt {
    background: #222;
}

.call-btn.alt:hover {
    background: #000;
}

/* HERO */
.hero {
    background: url('/assets/images/hero.jpg') center/cover no-repeat;
    height: 500px;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
    text-align: center;
    width: 100%;
}

.hero h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.sub {
    font-size: 18px;
}

.price {
    margin: 10px 0 20px;
    font-weight: bold;
}

.trust {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.95;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SECTIONS */
.section {
    padding: 50px 0;
}

.section.gray {
    background: #f5f5f5;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* SERVICES GRID */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.box {
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    transition: 0.2s;
}

.box img {
    width: 80px;
    margin-bottom: 12px;
}

.box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* STEPS */
.steps {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.step {
    background: #fff;
    padding: 20px 30px;
    border-radius: 6px;
    font-weight: bold;
}

/* REVIEWS */
.reviews {
    text-align: center;
}

.reviews p {
    margin: 10px 0;
    font-style: italic;
    font-weight: 500;
}

/* AREAS */
.areas {
    text-align: center;
    font-weight: bold;
}

.areas-intro {
    text-align: center;
    margin-bottom: 20px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.areas-list span {
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
}

/* SERVICES PAGE */
.services-list {
    max-width: 700px;
    margin: auto;
}

.service-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.service-item h3 {
    margin: 0 0 5px;
}

/* ABOUT */
.about-content {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.about-content p {
    margin: 10px 0;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form textarea {
    height: 120px;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

.footer-contact {
    margin-bottom: 15px;
}

.footer .phone {
    display: block;
    margin-bottom: 5px;
}

/* STICKY CALL */
.sticky-call {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ff6b00;
    text-align: center;
    z-index: 999;
}

.sticky-call a {
    display: block;
    color: #fff;
    padding: 16px;
    font-weight: bold;
    text-decoration: none;
}

/* MAP */
.map iframe {
    border-radius: 8px;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav {
        display: none;
    }

    .hero {
        height: 420px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .steps {
        flex-direction: column;
    }

    .call-btn.big {
        width: 100%;
        max-width: 280px;
    }

    .box img {
        width: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone {
        font-size: 14px;
    }
}

.menu-toggle {
    display: none;
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 18px;
    border-radius: 4px;
}

/* MOBILE MENU */
@media (max-width: 768px) {

.bookmark-btn {
    margin-top: 10px;
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    width: 160px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.card-title {
    font-weight: bold;
}

/* mobile */
@media (max-width: 768px) {
    .card {
        width: 100%;
        max-width: 260px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}