:root {
    --primary: #0c6cf2;
    --secondary: #12b3a8;
    --accent: #d63384;
    --dark: #0f172a;
    --text: #334155;
    --light-bg: #f3f8ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.top-strip {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    color: #e2e8f0;
    padding: 8px 0;
    font-size: 14px;
}

.top-strip a {
    color: #ffffff;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(2, 25, 58, 0.08);
    padding: 10px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand img {
    width: auto;
    height: 56px;
    object-fit: contain;
}

.navbar-brand span {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.nav-link {
    font-weight: 600;
    color: #1e293b;
    margin: 0 4px;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    background: #ffffff;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #ffffff;
}

.custom-outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: transparent;
}

.custom-outline:hover {
    background: #ffffff;
    color: #0f172a;
}

.hero-section {
    background: linear-gradient(130deg, #e8f3ff, #effffb);
    padding: 90px 0 70px;
    animation: fadeUp 0.8s ease;
}

.hero-slider-wrap .carousel-control-prev,
.hero-slider-wrap .carousel-control-next {
    width: 8%;
}

.hero-slide {
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 22, 40, 0.78), rgba(214, 51, 132, 0.22));
}

.hero-slider-wrap {
    position: relative;
}

.hero-slider-wrap:before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 130px;
    height: 130px;
    background: url("../../img/shape/shape-2.png") no-repeat center/contain;
    opacity: 0.6;
    z-index: 3;
}

.hero-content {
    max-width: 760px;
    color: #ffffff;
    padding: 100px 0;
}

.hero-content h1 {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.15;
}

.hero-content p {
    color: #d8e7ff;
}

.hero-tag.dark {
    background: rgba(255, 255, 255, 0.17);
    color: #ffffff;
}

.hero-premium {
    position: relative;
    overflow: hidden;
}

.hero-premium:before,
.hero-premium:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-premium:before {
    width: 340px;
    height: 340px;
    background: rgba(18, 179, 168, 0.16);
    top: -120px;
    right: -80px;
}

.hero-premium:after {
    width: 240px;
    height: 240px;
    background: rgba(12, 108, 242, 0.12);
    bottom: -70px;
    left: -70px;
}

.hero-premium .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(12, 108, 242, 0.1);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-section h1 {
    color: var(--dark);
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #dbe7ff;
    box-shadow: 0 15px 35px rgba(12, 108, 242, 0.1);
}

.hero-info-row {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.hero-info-row i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    background: #eaf2ff;
    margin-top: 2px;
}

.hero-info-row small {
    color: #64748b;
    font-weight: 600;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.hero-badges i {
    color: var(--secondary);
    margin-right: 4px;
}

.section-space {
    padding: 50px 0;
}

.section-tint {
    background: linear-gradient(180deg, #f7fbff, #effff9);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 26px;
}

.dual-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    margin-bottom: 12px;
}

.info-block {
    background: #ffffff;
    border: 1px solid #dce8ff;
    border-radius: 14px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.info-block h4 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 20px;
}

.services-grid .info-block {
    transition: transform 0.2s ease;
}

.services-grid .info-block:hover {
    transform: translateY(-5px);
}

.quick-stats {
    background: #ffffff;
    margin-top: -45px;
    position: relative;
    z-index: 5;
    border: 1px solid #dbe7ff;
    border-radius: 16px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 24px 10px;
    border-right: 1px solid #e2e8f0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 30px;
}

.stat-item p {
    margin: 0;
    color: #475569;
    font-weight: 500;
}

.trust-points {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.trust-points div {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-points i {
    color: var(--primary);
    margin-right: 8px;
}

.mini-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.shadow-soft {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.process-card {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: 14px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.process-card span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    margin-bottom: 14px;
}

.process-card h5 {
    color: var(--dark);
    margin-bottom: 8px;
}

.process-card p {
    margin-bottom: 0;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.testimonial-card.v2 {
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.testimonial-card.v2 i {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 10px;
}

.testimonial-slide {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    font-size: 19px;
    font-weight: 600;
}

.testimonial-card p {
    font-size: 17px;
    margin-bottom: 12px;
}

.testimonial-card h6 {
    margin: 0;
    color: var(--primary);
}

.cta-band {
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #dbe7ff;
    background: linear-gradient(120deg, #ecf4ff, #f0fffb);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.cta-band h3 {
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;
}

.page-hero {
    background: linear-gradient(120deg, #0c6cf2, #12b3a8);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-hero-image {
    background: linear-gradient(rgba(5, 18, 43, 0.65), rgba(5, 18, 43, 0.65)), url("../../img/banner.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid #dce8ff;
}

.contact-card {
    background: var(--light-bg);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #dbeafe;
    height: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    margin-bottom: 14px;
}

.contact-form textarea {
    min-height: 140px;
}

.section-fixed-bg {
    background: linear-gradient(rgba(247, 251, 255, 0.94), rgba(247, 251, 255, 0.94)), url("../../img/im4.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-fixed-bg-dark {
    background: linear-gradient(rgba(8, 23, 45, 0.86), rgba(8, 23, 45, 0.86)), url("../../img/im5.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-fixed-bg,
.section-fixed-bg-dark {
    position: relative;
    overflow: hidden;
}

.section-fixed-bg:before {
    content: "";
    position: absolute;
    top: 14px;
    right: 10px;
    width: 130px;
    height: 130px;
    background: url("../../img/shape/shape-3.png") no-repeat center/contain;
    opacity: 0.3;
}

.section-fixed-bg-dark:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 8px;
    width: 170px;
    height: 110px;
    background: url("../../img/shape/shape-4.png") no-repeat center/contain;
    opacity: 0.35;
}

.image-service-grid .service-image-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dbe7ff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.image-service-grid .service-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.service-image {
    height: 190px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 18px;
}

.service-content h4 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 20px;
}

.service-content p {
    margin-bottom: 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-left: 5px solid var(--accent);
    border-radius: 12px;
    padding: 18px 18px 16px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.faq-item h5 {
    margin-bottom: 8px;
    color: var(--dark);
}

.faq-item p {
    margin-bottom: 0;
}

.faq-form-card {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.faq-form-card h4 {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
}

.faq-form-card p {
    color: #64748b;
}

.site-footer {
    background: linear-gradient(180deg, #091326, #0f172a);
    color: #cbd5e1;
    padding: 65px 0 20px;
}

.pre-footer {
    background: linear-gradient(120deg, #0c6cf2, #12b3a8);
    color: #ffffff;
    padding: 28px 0;
}

.pre-footer h3 {
    font-family: "Poppins", sans-serif;
    margin-bottom: 6px;
    font-size: 28px;
}

.site-footer h4 {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.site-footer a {
    color: #cfe7ff;
}

.footer-bottom {
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
}

.btn-success {
    background: #16a34a;
    border: none;
    border-radius: 10px;
    color: #fff;
    padding: 9px 14px;
}

.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 120;
}

.fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
    animation: pulse 1.8s infinite;
}

.fab-call {
    background: linear-gradient(120deg, #0c6cf2, #d63384);
}

.fab-wa {
    background: linear-gradient(120deg, #0fbf67, #21db84);
}

.icon-info i {
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #eaf2ff;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(3px);
    color: #dbeafe;
}

.glass-card h5 {
    color: #ffffff;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22); }
    50% { transform: scale(1.06); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); }
    100% { transform: scale(1); box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22); }
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-section h1 {
        font-size: 35px;
    }

    .navbar-brand span { font-size: 15px; }
    .navbar-brand img { height: 48px; }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -20px;
    }

    .stat-item {
        border-right: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero-image,
    .section-fixed-bg,
    .section-fixed-bg-dark {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .hero-badges span {
        font-size: 12px;
    }

    .floating-actions {
        right: 10px;
        bottom: 70px;
    }
}
