* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --brand-red: #d60000;
    --brand-dark: #1a1a1a;
    --brand-gray: #f8f9fa;
}

/* top header */
.top-header {
    background: #51d8fa;
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 0;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    margin-right: 1.2rem;
}

.top-header a:hover {
    color: #ffd6d6;
}

.top-header .social-icons a {
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

/* -------------------------------- */
.rotate-animation {
    animation: 5s linear infinite rotate-ring;
}
.align-items-start {
    align-items: flex-start !important;
}
.flex-column {
    flex-direction: column !important;
}
.start-0 {
    left: 0 !important;
}
.top-0 {
    top: 0 !important;
}
.position-absolute {
    position: absolute !important;
}
.d-flex {
    display: flex !important;
}
/* Rotating Image Animation */
.rotate-animation {
    animation: rotate-ring 8s linear infinite;
}

/* Rotation Keyframes */
@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* image rotation  */

/* navbar */

.navbar-brand img {
    height: 70px;
    width: auto;
    margin-right: 8px;
}

.navbar-brand .brand-text {
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
}

.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: #000000 !important;
}

.navbar .btn-danger {
    background: var(--brand-red);
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 40px;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: #fff;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.nav-link:focus, .nav-link:hover {
    color: rgb(81 216 250);
}

.navbar .btn-danger i {
    margin-right: 6px;
}

/* hero carousel */
.carousel-item {
    height: 75vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 25%;
    text-align: left;
}

.carousel-caption h1 {
    font-size: 3.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
}

.carousel-caption p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 0 1.5rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    border-radius: 40px;
    padding: 12px 32px;
    font-weight: 600;
    margin-right: 12px;
}

/* sections */
section {
    padding: 70px 0;
}

.section-title {
    font-weight: 700;
    color: var(--brand-dark);
    position: relative;
    margin-bottom: 2.5rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-red);
    margin-top: 10px;
}

.service-card,
.city-card,
.feature-box {
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    padding: 24px 18px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover,
.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(214, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.feature-box i {
    font-size: 2.2rem;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(214, 0, 0, 0.25);
}

.process-step .step-line {
    height: 3px;
    background: #ddd;
    width: 80%;
    margin: 0 auto;
}

/* pricing table */
.table thead th {
    background: var(--brand-red);
    color: #fff;
}

.table tbody tr:hover {
    background: #fff5f5;
}

/* gallery */
.gallery-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.25s;
}

.gallery-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-img:hover img {
    transform: scale(1.02);
}

.gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    animation: zoomIn .4s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    transition: .3s;
}

.close-btn:hover {
    color: #ffc107;
}

@keyframes zoomIn {
    from {
        transform: scale(.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */

@media(max-width:768px) {

    .gallery-item img {
        height: 220px;
    }

    .close-btn {
        font-size: 35px;
        right: 20px;
    }

    #lightbox img {
        max-width: 95%;
    }
}

/* testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin: 10px;
}

.testimonial-card .stars {
    color: #f5b342;
    letter-spacing: 3px;
}

/* faq accordion */
.accordion-button:not(.collapsed) {
    background: var(--brand-red);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--brand-red);
}

/* cta */
.cta-section {
    background: var(--brand-red);
    color: #fff;
    padding: 60px 0;
}

.cta-section .btn {
    border-radius: 40px;
    padding: 12px 36px;
    font-weight: 600;
    margin: 0 8px;
    background: #fff;
    color: var(--brand-red);
}

.cta-section .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-section .btn-outline-light:hover {
    background: #fff;
    color: var(--brand-red);
}

/* footer */
footer {
    background: #111;
    color: #ddd;
    padding: 50px 0 20px;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

footer .footer-logo {
    height: 50px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
}

/* floating buttons */
.float-btn {
    position: fixed;
    right: 24px;
    z-index: 1030;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
    border: none;
    animation: pulse 2s infinite;
}

.float-btn.call {
    bottom: 100px;
    background: var(--brand-red);
}

.float-btn.whatsapp {
    bottom: 30px;
    background: #25d366;
}

.float-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(214, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(214, 0, 0, 0);
    }
}

/* map embed */
.map-container iframe {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    border: 0;
}

/* responsive */
@media (max-width: 992px) {
    .carousel-item {
        height: 60vh;
    }

    .carousel-caption h1 {
        font-size: 2.2rem;
    }

    .top-header .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 12px;
    }

    .top-header .social-icons {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        bottom: 15%;
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .carousel-caption .btn {
        padding: 8px 20px;
        margin-bottom: 6px;
    }
}

.bg-soft-red {
    background: #fff6f6;
}