h1 {
    font-size: 60px;
}
/* ==========================================================================
   Final Mobile Header: Flush Layout, Center Call Button, Fixed Dropdown
   ========================================================================== */
@media (max-width: 991px) {
    /* 1. Header Bar - Height set to 70px */
    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        min-height: 70px !important;
    }
    /* 2. Logo - Pinned Left */
    .logo-outer {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
        z-index: 11;
    }
    .logo img {
        max-width: 135px !important;
        max-height: 60px !important;
        height: auto !important;
        display: block !important;
    }
    /* 3. Call Now - Centered Gold Button */
    .mobile-cta {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10;
    }
    .mobile-call-btn {
        background-color: #c59d5f !important;
        color: #ffffff !important;
        padding: 5px 20px !important;
        border-radius: 50px !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        text-transform: uppercase;
        display: flex !important;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
        text-decoration: none !important;
        white-space: nowrap;
    }
    .mobile-call-btn i {
        color: #ffffff !important;
        font-size: 16px !important;
    }
    /* 4. Dropdown Menu - Adjusted by 1px to close the gap */
    .navbar-collapse {
        position: absolute !important;
        /* Reduced from + 20px to + 19px to fix the 1px gap */
        top: calc(100% + 19px) !important; 
        left: 0 !important;
        width: 100vw !important; 
        margin-left: calc(-1 * (100vw - 100%) / 2) !important; 
        background: #1a1a1a !important; 
        z-index: 9999 !important;
        padding: 20px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        border-top: 2px solid #c59d5f;
    }
    /* 5. Navigation Links - White & Left Aligned */
    .navigation {
        width: 100% !important;
        margin: 0 !important;
    }
    .navigation li {
        width: 100% !important;
        border-bottom: 1px solid #333;
        text-align: left !important;
    }
    .navigation li a {
        padding: 15px 0 !important;
        display: block !important;
        color: #ffffff !important;
        font-size: 16px !important;
        text-decoration: none !important;
    }
    /* 6. Burger Toggle - Pinned Right */
    .nav-outer {
        flex: 0 0 auto !important;
        z-index: 11;
    }
    .navbar-toggle {
        display: block !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }
    .mobile-logo { display: none !important; }
}
/* --- Desktop Maintenance --- */
@media (min-width: 992px) {
    .navbar-toggle { display: none !important; }
    .navbar-collapse.collapse { display: block !important; visibility: visible !important; }
}

/* ==========================================================================
   Hero Section: Mobile Button Stack (Below 576px)
   Ensures the two CTA buttons stack vertically and take full width on phones.
   ========================================================================== */
@media (max-width: 575px) {
    /* Change button container from horizontal to vertical stack */
    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important; /* Adds consistent spacing between the stacked buttons */
    }
    /* Force buttons to be full-width and centered on small screens */
    .hero-btns .theme-btn {
        margin-left: 0 !important;   /* Overrides the .ml-3 used for desktop spacing */
        width: 100% !important;      /* Makes button tap-friendly (full width) */
        text-align: center !important; 
        justify-content: center !important; /* Centers text/icon if using flex inside button */
    }
}
/* ---- End Hero Button Stack ---- */

/* ---- Icons of the services part ---- */
.service-icon i {
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    color: #C9A24E;
}
.service-icon img {
    width: 80px;
    height: 80px;
    display: inline-block;
    object-fit: contain;
}
/* center icon column */
.service-col-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   PRICE SYSTEM
========================= */
.service-col-price {
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-price-wrap {
    text-align: center;
}
.service-price-label {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    opacity: 0.65;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}
.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #c9a24e;
    line-height: 1;
    letter-spacing: 0.5px;
}
/* =========================
   FOOTER
========================= */

.footer-logo {
    width: 100%;
}
/* CTA BUTTONS FIX (icon spacing + size + alignment) */
.footer-cta .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 22px;
}
/* space between icon and text */
.footer-cta .theme-btn i {
    margin-right: 8px;
    font-size: 18px;
}
/* spacing between buttons */
.footer-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
/* OPTIONAL: make LINE button green */
.footer-cta .theme-btn:last-child {
    background-color: #00B900;
    border-color: #00B900;
}
.footer-logo-cta {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0px 0px;
    border-radius: 8px;
}
/* map in the footer */
.footer-map {
    position: relative;
}
.footer-map-link {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
    text-decoration: none;
}
/* Services page */
/* Titles */
.content h2 {
    position: relative;
    padding-left: 20px; /* space for the gold line */
    font-size: 34px;
    margin-bottom: 15px;
}
/* Gold vertical line */
.content h2:before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    width: 4px;
    height: 70%;
    background: #d6a354;
    border-radius: 2px;
}
/* Text */
.service-details-area p,
.what-we-offer-three p {
    font-size: 16px;
    line-height: 1.7;
}
/* Images */
.service-details-area img,
.what-we-offer-three img {
    width: 100%;
    border-radius: 8px;
}
/* Price */
.price-box {
    margin-top: 20px;
}
.price-box span {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}
.price-box strong {
    font-size: 26px;
    font-weight: 700;
}
/* Dark section adjustments */
.what-we-offer-three .price-box span {
    color: rgba(255,255,255,0.7);
}
.what-we-offer-three .price-box strong {
    color: #fff;
}
/* Spacing */
.content.mb-40 {
    margin-bottom: 40px;
}
/* Padding for contact */
.p-custom {
    padding: 27px 10px;
}