:root {
    --primary: #c41e3a;
    --primary-dark: #9b1831;
    --secondary: #0d9488;
    --secondary-light: #5eead4;
    --accent: #f59e0b;
    --dark: #0b1220;
    --text: #334155;
    --muted: #64748b;
    --light-bg: #f0fdfa;
    --card-border: rgba(13, 148, 136, 0.18);
    --shadow-elevated: 0 22px 50px rgba(11, 18, 32, 0.12);
    --shadow-elevated-hover: 0 28px 60px rgba(196, 30, 58, 0.18);
    --radius-lg: 20px;
    --radius-xl: 26px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fafefe 0%, #ffffff 45%, #f8fafc 100%);
    overflow-x: hidden;
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

.top-strip {
    background: linear-gradient(92deg, #0b1220 0%, #132337 50%, #0f766e 100%);
    color: #e2e8f0;
    padding: 9px 0;
    font-size: 13px;
}

.top-strip a {
    color: #ffffff;
    font-weight: 600;
}

.top-strip a:hover {
    color: var(--secondary-light);
}

.top-strip-tag {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.top-sep {
    opacity: 0.45;
}

.main-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(11, 18, 32, 0.06);
    padding: 12px 0;
}

.menu-trigger {
    border: 1px solid rgba(11, 18, 32, 0.15);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.mobile-nav-drawer {
    max-width: 300px;
    border-right: 1px solid var(--card-border);
    background: linear-gradient(180deg, #ffffff, #f0fdfa);
}

.mobile-nav-drawer .offcanvas-title {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
}

.drawer-link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.drawer-link.active,
.drawer-link:hover {
    background: #ecfeff;
    color: var(--primary);
}

.navbar-brand img {
    width: auto;
    height: 52px;
    object-fit: contain;
}

.brand-text {
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    max-width: 140px;
}

.nav-link {
    font-weight: 600;
    color: #1e293b;
    margin: 0 6px;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.btn-primary {
    background: linear-gradient(125deg, var(--primary) 0%, var(--primary-dark) 45%, #b91c1c 100%);
    border: none;
    padding: 11px 20px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 28px rgba(196, 30, 58, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(196, 30, 58, 0.45);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    background: #ffffff;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.custom-outline {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    border-radius: 12px;
    padding: 11px 20px;
}

.custom-outline:hover {
    background: #ffffff;
    color: var(--dark);
    border-color: #ffffff;
}

.hero-slider-wrap .carousel-control-prev,
.hero-slider-wrap .carousel-control-next {
    width: 10%;
    opacity: 0.85;
}

.hero-slide {
    min-height: min(92vh, 720px);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(8, 15, 28, 0.88) 0%,
        rgba(15, 118, 110, 0.45) 45%,
        rgba(196, 30, 58, 0.28) 100%
    );
}

.hero-slider-wrap {
    position: relative;
}

.hero-slider-wrap::before {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: 120px;
    height: 120px;
    background: url("../../img/shape/shape-dot.svg") no-repeat center / contain;
    opacity: 0.45;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    max-width: 780px;
    color: #ffffff;
    padding: 100px 0 110px;
}

.hero-content h1 {
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.15rem);
    line-height: 1.14;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-content p {
    color: rgba(226, 232, 240, 0.95);
    font-size: 1.1rem;
    max-width: 560px;
}

.hero-tag.dark {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.35), rgba(255, 255, 255, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fffbeb;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-shape-banner {
    height: 110px;
    border-radius: 18px;
    background:
        linear-gradient(120deg, rgba(11, 18, 32, 0.9), rgba(19, 78, 74, 0.88)),
        url("../../img/shape/shape-wave.svg") no-repeat center / cover;
    box-shadow: var(--shadow-elevated);
}

.section-space {
    padding: 56px 0;
}

.section-tint {
    background: linear-gradient(180deg, #ecfeff 0%, #f0fdfa 40%, #f8fafc 100%);
}

.section-tint-warm {
    background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 50%, #f8fafc 100%);
}

.section-contact-surface {
    background: linear-gradient(180deg, #fff5f7 0%, #fff8f8 48%, #ffffff 100%);
    position: relative;
}

.section-contact-surface::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -30px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.2), transparent 68%);
    pointer-events: none;
}

.section-contact-surface::after {
    content: "";
    position: absolute;
    left: -70px;
    bottom: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 24, 49, 0.14), transparent 70%);
    pointer-events: none;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 32px;
}

.dual-subtitle {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-title {
    color: var(--dark);
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.info-block {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    box-shadow: var(--shadow-elevated);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated-hover);
}

.info-block h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.services-grid .info-block {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quick-stats {
    background: linear-gradient(135deg, #ffffff, #f8fffd);
    margin-top: -48px;
    position: relative;
    z-index: 5;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    isolation: isolate;
}

.quick-stats::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.18), transparent 70%);
    z-index: -1;
}

.stat-item {
    text-align: center;
    padding: 26px 12px;
    border-right: 1px solid #e2e8f0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.stat-item:hover {
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.8), #ffffff);
    transform: translateY(-2px);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
    font-size: 1.75rem;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
}

.stat-item p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.trust-points {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.trust-points div {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(11, 18, 32, 0.04);
}

.trust-points i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.mini-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.shadow-soft {
    box-shadow: var(--shadow-elevated);
    border-radius: var(--radius-lg);
}

.process-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    height: 100%;
    box-shadow: var(--shadow-elevated);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--primary));
    opacity: 0.9;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated-hover);
}

.process-card span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, var(--secondary), #0f766e);
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

.process-card h5 {
    color: var(--dark);
    margin-bottom: 8px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.process-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-elevated);
    height: 100%;
    transition: transform 0.22s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card.v2 {
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, #ffffff 0%, #f0fdfa 100%);
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.testimonial-card.v2 i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.testimonial-slide {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(125deg, #0b1220, #134e4a);
    color: #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid rgba(94, 234, 212, 0.2);
    box-shadow: var(--shadow-elevated);
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.55;
}

.testimonial-card h6 {
    margin: 0;
    color: var(--primary);
    font-weight: 700;
}

.cta-band {
    padding: 32px 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    background: linear-gradient(125deg, #fff5f5 0%, #f0fdfa 50%, #ecfeff 100%);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-elevated);
}

.testimonial-flow-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-flow-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: testimonialFlow 26s linear infinite;
}

.testimonial-flow-wrap:hover .testimonial-flow-track {
    animation-play-state: paused;
}

.testimonial-flow-card {
    width: min(360px, 82vw);
    background: linear-gradient(160deg, #ffffff 0%, #f0fdfa 100%);
    border: 1px solid rgba(13, 148, 136, 0.22);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 18px 42px rgba(11, 18, 32, 0.12);
}

.testimonial-flow-card i {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-flow-card p {
    margin-bottom: 12px;
    color: #334155;
    line-height: 1.6;
}

.testimonial-flow-card h6 {
    margin: 0;
    color: var(--primary);
    font-weight: 700;
}

.cta-band h3 {
    color: var(--dark);
    font-family: "Outfit", sans-serif;
    margin-bottom: 8px;
    font-weight: 800;
}

.page-hero {
    background: linear-gradient(125deg, #0b1220 0%, #134e4a 50%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 64px 0;
    text-align: center;
}

.page-hero h1 {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    margin-bottom: 8px;
}

.page-hero-image {
    background: linear-gradient(rgba(8, 15, 28, 0.76), rgba(15, 118, 110, 0.55)), url("../../img/banner.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.gallery-item img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    background: #fff;
    padding: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 24px rgba(11, 18, 32, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-elevated-hover);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-elevated);
    background: #fff;
}

.gallery-preview {
    display: block;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.75));
    pointer-events: none;
}

.gallery-label {
    position: absolute;
    left: 14px;
    bottom: 12px;
    color: #fff;
    font-weight: 700;
    z-index: 1;
    font-size: 14px;
}

.gallery-lightbox-modal .modal-content {
    background: rgba(8, 15, 28, 0.95);
    border: 1px solid rgba(94, 234, 212, 0.35);
    border-radius: var(--radius-lg);
}

.gallery-lightbox-modal .modal-body {
    position: relative;
    text-align: center;
    padding: 0 18px 22px;
}

#galleryLightboxImage {
    max-height: 75vh;
    width: auto;
    max-width: 100%;
    border-radius: 14px;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    z-index: 6;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.gallery-nav-btn:hover {
    background: rgba(94, 234, 212, 0.65);
}

.gallery-nav-prev {
    left: 8px;
}

.gallery-nav-next {
    right: 8px;
}

.gallery-lightbox-count {
    color: #d1fae5;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.contact-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-top: 4px solid var(--primary);
    height: 100%;
    box-shadow: 0 18px 40px rgba(155, 24, 49, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 44px rgba(155, 24, 49, 0.16);
}

.contact-card h4 i {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.contact-card h4 {
    color: var(--dark);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.contact-card a {
    color: var(--primary-dark);
    font-weight: 700;
}

.contact-card-grid .contact-card p {
    font-size: 1.05rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    margin-bottom: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.section-fixed-bg {
    background: linear-gradient(rgba(240, 253, 250, 0.93), rgba(255, 250, 245, 0.93)), url("../../img/im4.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-fixed-bg-dark {
    background: linear-gradient(rgba(8, 15, 28, 0.9), rgba(19, 78, 74, 0.88)), 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: 16px;
    right: 12px;
    width: 120px;
    height: 120px;
    background: url("../../img/shape/shape-3.png") no-repeat center / contain;
    opacity: 0.25;
    pointer-events: none;
}

.image-service-grid .service-image-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-elevated);
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    position: relative;
}

.image-service-grid .service-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-service-grid .service-image-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-elevated-hover);
}

.image-service-grid .service-image-card:hover::after {
    opacity: 1;
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 18, 32, 0.55) 100%);
}

.service-content {
    padding: 22px;
}

.service-content h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.service-content p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.55;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-left: 5px solid var(--accent);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(11, 18, 32, 0.05);
}

.faq-item h5 {
    margin-bottom: 8px;
    color: var(--dark);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.faq-form-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-elevated);
}

.faq-form-card h4 {
    font-family: "Outfit", sans-serif;
    color: var(--dark);
    font-weight: 800;
}

.faq-form-card p {
    color: var(--muted);
}

.form-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 12px;
}

.alert-form {
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-form-success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #047857;
}

.alert-form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.site-footer {
    background: linear-gradient(180deg, #070d18 0%, #0b1220 100%);
    color: #94a3b8;
    padding: 68px 0 24px;
    position: relative;
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.site-footer::before {
    width: 300px;
    height: 300px;
    left: -120px;
    top: -80px;
    background: url("../../img/shape/shape-wave.svg") no-repeat center / contain;
    opacity: 0.55;
}

.site-footer::after {
    width: 360px;
    height: 360px;
    right: -150px;
    bottom: -140px;
    background: url("../../img/shape/shape-dot.svg") no-repeat center / contain;
    opacity: 0.45;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.pre-footer {
    background: linear-gradient(125deg, #0f766e 0%, #0b1220 55%, #9b1831 100%);
    color: #ffffff;
    padding: 32px 0;
    position: relative;
}

.pre-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 45%);
    pointer-events: none;
}

.pre-footer h3 {
    font-family: "Outfit", sans-serif;
    margin-bottom: 8px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
}

.pre-footer a {
    color: #fff;
}

.btn-glow {
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25);
}

.btn-prefooter {
    background: linear-gradient(135deg, #fef08a, #f59e0b);
    color: #0b1220;
    border: none;
    font-weight: 800;
}

.btn-prefooter:hover {
    color: #0b1220;
    transform: translateY(-2px);
}

.site-footer h4 {
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.site-footer a {
    color: #cbd5e1;
}

.footer-links a:hover {
    color: var(--secondary-light);
}

.footer-bottom {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
    text-align: center;
}

.btn-success {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border: none;
    border-radius: 12px;
    color: #fff;
    padding: 10px 16px;
    font-weight: 700;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 96px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 120;
}

.fab-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    animation: pulse 2s infinite;
}

.fab-call {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.fab-wa {
    background: linear-gradient(135deg, #0d9488, #10b981);
}

.icon-info i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 12px;
}

.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 22px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #e2e8f0;
}

.glass-card h5 {
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.reveal-stagger > .scroll-reveal,
.reveal-stagger > .scroll-reveal-up,
.reveal-stagger > .scroll-reveal-down,
.reveal-stagger > .scroll-reveal-left,
.reveal-stagger > .scroll-reveal-right,
.reveal-stagger > [class*="col-"] .scroll-reveal,
.reveal-stagger > [class*="col-"] .scroll-reveal-up {
    transition-delay: 0s;
}

.reveal-stagger > *:nth-child(1) .scroll-reveal,
.reveal-stagger > *:nth-child(1).scroll-reveal,
.reveal-stagger > *:nth-child(1) .scroll-reveal-up,
.reveal-stagger > *:nth-child(1).scroll-reveal-up {
    transition-delay: 0.05s;
}

.reveal-stagger > *:nth-child(2) .scroll-reveal,
.reveal-stagger > *:nth-child(2).scroll-reveal,
.reveal-stagger > *:nth-child(2) .scroll-reveal-up,
.reveal-stagger > *:nth-child(2).scroll-reveal-up {
    transition-delay: 0.12s;
}

.reveal-stagger > *:nth-child(3) .scroll-reveal,
.reveal-stagger > *:nth-child(3).scroll-reveal,
.reveal-stagger > *:nth-child(3) .scroll-reveal-up,
.reveal-stagger > *:nth-child(3).scroll-reveal-up {
    transition-delay: 0.19s;
}

.reveal-stagger > *:nth-child(4) .scroll-reveal,
.reveal-stagger > *:nth-child(4).scroll-reveal,
.reveal-stagger > *:nth-child(4) .scroll-reveal-up,
.reveal-stagger > *:nth-child(4).scroll-reveal-up {
    transition-delay: 0.26s;
}

.reveal-stagger > *:nth-child(5) .scroll-reveal,
.reveal-stagger > *:nth-child(5).scroll-reveal,
.reveal-stagger > *:nth-child(5) .scroll-reveal-up {
    transition-delay: 0.33s;
}

.reveal-stagger > *:nth-child(6) .scroll-reveal,
.reveal-stagger > *:nth-child(6).scroll-reveal {
    transition-delay: 0.4s;
}

.scroll-reveal,
.scroll-reveal-up,
.scroll-reveal-down,
.scroll-reveal-left,
.scroll-reveal-right {
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal {
    transform: translateY(26px);
}

.scroll-reveal-up {
    transform: translateY(40px);
}

.scroll-reveal-down {
    transform: translateY(-36px);
}

.scroll-reveal-left {
    transform: translateX(-32px);
}

.scroll-reveal-right {
    transform: translateX(32px);
}

.scroll-reveal.revealed,
.scroll-reveal-up.revealed,
.scroll-reveal-down.revealed,
.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    }
}

@keyframes testimonialFlow {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }

    .menu-trigger {
        display: inline-flex;
    }

    .navbar-brand span {
        font-size: 15px;
    }

    .navbar-brand img {
        height: 46px;
    }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -28px;
    }

    .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,
    .section-fixed-bg-dark {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .top-strip .top-strip-links {
        width: 100%;
        justify-content: flex-start;
    }

    .floating-actions {
        right: 12px;
        bottom: 76px;
    }
}
