:root {
    --primary-red: #dc2626;
    --dark-blue: #0f1e3b;
    --light-bg: #f5f7fb;
    --white: #ffffff;
    --text-dark: #1f2937;
    --radius-lg: 16px;
    --shadow-soft: 0 10px 30px rgba(15, 30, 59, 0.09);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
}

section {
    padding: 80px 0;
}

.emergency-strip {
    background: var(--primary-red);
    color: var(--white);
}

.emergency-call {
    color: var(--primary-red);
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 25px rgba(15, 30, 59, 0.08);
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark-blue);
}

.site-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 0.95rem;
    line-height: 1.2;
    max-width: 330px;
}

.drawer-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
}

.drawer-brand {
    font-size: 0.85rem;
    line-height: 1.2;
}

.nav-link {
    color: var(--dark-blue);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.drawer-toggle {
    background: var(--dark-blue);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1040;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    z-index: 1050;
    background: var(--dark-blue);
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    transition: var(--transition);
}

.mobile-drawer.open {
    left: 0;
}

.drawer-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.9rem;
}

.drawer-nav li {
    margin-bottom: 0.6rem;
}

.drawer-nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    padding: 0.5rem 0;
    display: inline-block;
    transition: var(--transition);
}

.drawer-nav a.active,
.drawer-nav a:hover {
    color: var(--white);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: url('../images/hero-banner2.png') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(15, 30, 59, 0.85) 0%, rgba(15, 30, 59, 0.58) 48%, rgba(15, 30, 59, 0.38) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.section-surface {
    position: relative;
    overflow: hidden;
}

.section-surface > .container {
    position: relative;
    z-index: 1;
}

.section-services {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.section-services::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
    top: -130px;
    left: -90px;
}

.section-stats {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-about {
    background: linear-gradient(140deg, #f4f8ff 0%, #eef4ff 100%);
}

.section-about::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.08);
    right: -80px;
    bottom: -100px;
}

.section-why {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.section-process {
    background: linear-gradient(140deg, #eef4ff 0%, #f8fbff 100%);
}

.section-process::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(15, 30, 59, 0.07);
    top: -90px;
    right: 8%;
}

.section-testimonials {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.section-testimonials::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    left: -80px;
    bottom: -80px;
}

.section-gallery {
    background: linear-gradient(150deg, #eef5ff 0%, #f8fbff 55%, #ffffff 100%);
}

.section-gallery::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.08);
    top: -90px;
    left: 7%;
}

.section-faqs {
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.section-faqs::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(15, 30, 59, 0.08);
    right: -90px;
    top: -80px;
}

.section-cta-block {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.about-intro-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-mission-section {
    background: linear-gradient(145deg, #eef4ff 0%, #f7fbff 100%);
}

.about-stats-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.about-cta-section {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.about-contact-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 249, 255, 0.9) 100%);
    border: 1px solid #e7eef9;
}

.services-grid-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.services-grid-section::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.07);
    right: -80px;
    top: -90px;
}

.services-emergency-section {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.services-booking-section {
    background: linear-gradient(145deg, #edf4ff 0%, #ffffff 100%);
}

.booking-help-card {
    max-width: 760px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid #e7eef9;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}

.contact-info-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-info-section::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.07);
    left: -90px;
    top: -70px;
}

.contact-form-card,
.contact-map-card {
    border: 1px solid #e7eef9;
}

.contact-form-card .form-control {
    border-radius: 10px;
    border: 1px solid #dbe5f3;
    padding: 0.65rem 0.9rem;
}

.contact-form-card .form-control:focus {
    border-color: #9bb1d3;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.12);
}

.contact-cta-section {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.hero-card,
.glass-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero h1 {
    color: var(--white);
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.86);
}

.section-title {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card,
.feature-card,
.contact-card,
.mission-card {
    border: 1px solid #edf0f7;
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
}

.service-card,
.feature-card,
.process-card,
.testimonial-card,
.stats-strip {
    border: 1px solid #e8eef8;
}

.service-card:hover,
.feature-card:hover,
.contact-card:hover,
.mission-card:hover {
    transform: translateY(-6px);
}

.stats-strip {
    border-radius: var(--radius-lg);
    border: 1px solid #edf0f7;
    padding: 1.6rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stats-item {
    text-align: center;
}

.stats-item h3 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.info-card-pop {
    transition: var(--transition);
}

.info-card-pop:hover {
    transform: translateY(-5px);
}

.about-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #e8eef8;
    background: #fff;
}

.about-side-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 430px;
    object-fit: cover;
    display: block;
}

.process-card,
.testimonial-card {
    border: 1px solid #edf0f7;
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.process-card {
    position: relative;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.12);
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.testimonial-card p {
    color: #4b5563;
}

.testimonial-wrap {
    position: relative;
    padding: 0 52px;
}

.new-testimonial-card {
    background: linear-gradient(170deg, #ffffff 0%, #f8fbff 100%);
    border-color: #e8eef8;
}

.testimonial-rating {
    color: #f59e0b;
    display: flex;
    gap: 3px;
    font-size: 0.9rem;
}

.new-testimonial-card h6 {
    color: var(--dark-blue);
    font-weight: 600;
}

.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e8eef8;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-6px);
}

.gallery-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.06);
}

.faq-intro-card {
    background: linear-gradient(155deg, #0f1e3b 0%, #1a325f 100%);
    color: #eaf0ff;
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-intro-card .section-title {
    color: var(--white);
}

.faq-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
}

.faq-points i {
    color: #60a5fa;
    margin-top: 2px;
}

.faq-accordion .accordion-item {
    border: 1px solid #e4ebf7;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    box-shadow: 0 6px 16px rgba(15, 30, 59, 0.06);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--dark-blue);
    background: #ffffff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-red);
    background: #fff7f7;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    color: #4b5563;
    background: #ffffff;
}

.testimonial-control {
    width: 38px;
    height: 38px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-blue);
    border-radius: 10px;
    opacity: 0.9;
}

.testimonial-control.carousel-control-prev {
    left: 0;
}

.testimonial-control.carousel-control-next {
    right: 0;
}

.testimonial-control .carousel-control-prev-icon,
.testimonial-control .carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

.testimonial-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c5cfdf;
    border: 0;
}

.testimonial-indicators .active {
    background: var(--primary-red);
}

.reveal-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.icon-chip {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.11);
    color: var(--primary-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cta-strip {
    background: var(--primary-red);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.page-banner {
    background: var(--dark-blue);
    color: var(--white);
    padding: 70px 0;
}

.counter-box {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 1.4rem;
}

.counter-box h3 {
    color: var(--primary-red);
    font-weight: 700;
}

.site-footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.85);
}

.site-footer h5 {
    color: var(--white);
    margin-bottom: 0.9rem;
}

.footer-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.55rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact i {
    /* margin-right: 0.4rem; */
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.88);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 108px;
    z-index: 1025;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.float-btn {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-size: 1.35rem;
    box-shadow: 0 16px 24px rgba(15, 30, 59, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.07);
    box-shadow: 0 20px 30px rgba(15, 30, 59, 0.35);
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    opacity: 0;
}

.whatsapp-btn {
    background: #22c55e;
    box-shadow: 0 16px 26px rgba(34, 197, 94, 0.35);
    animation: whatsappFloat 2.4s infinite ease-in-out;
}

.whatsapp-btn::before {
    border-color: rgba(34, 197, 94, 0.5);
    animation: rippleGreen 2.1s infinite;
}

.whatsapp-btn i {
    animation: whatsappPop 2.4s infinite;
    font-size: 35px;
}

.call-btn {
    background: var(--primary-red);
    box-shadow: 0 16px 26px rgba(220, 38, 38, 0.35);
    animation: callPulse 1.8s infinite ease-in-out;
}

.call-btn::before {
    border-color: rgba(220, 38, 38, 0.5);
    animation: rippleRed 1.8s infinite;
}

.call-btn i {
    animation: callRing 1.8s infinite;
}

@keyframes whatsappFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    45% {
        transform: translateY(-5px);
    }
}

@keyframes whatsappPop {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

@keyframes rippleGreen {
    0% {
        transform: scale(0.92);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.18);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@keyframes callPulse {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes rippleRed {
    0% {
        transform: scale(0.9);
        opacity: 0.55;
    }
    80% {
        transform: scale(1.22);
        opacity: 0;
    }
    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

@keyframes callRing {
    0%,
    100% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(16deg);
    }
    40% {
        transform: rotate(-14deg);
    }
    60% {
        transform: rotate(10deg);
    }
    80% {
        transform: rotate(-8deg);
    }
}

.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--dark-blue);
    color: var(--white);
    display: none;
    z-index: 1025;
}

.scroll-top-btn.show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
