/* =========================================================
   HELLO NURSE — GLOBAL THEME
========================================================= */
:root {
    --primary: #082B7A;
    --secondary: #16B9C8;
    --accent: #FF7B7B;

    --primary-soft: #EEF4FF;
    --secondary-soft: #E8FCFD;
    --accent-soft: #FFF0F0;

    --dark-text: #1E293B;
    --light-text: #64748B;

    --light-bg: #F8FBFD;
    --card-bg: #FFFFFF;

    --border-color: rgba(8, 43, 122, 0.10);

    --primary-gradient: linear-gradient(135deg, #082B7A, #16B9C8);
    --hero-gradient: linear-gradient(135deg, #082B7A 0%, #0F4DB8 45%, #16B9C8 100%);
    --accent-gradient: linear-gradient(135deg, #FF7B7B, #FF9E9E);
    --soft-gradient: linear-gradient(135deg, #EEF4FF, #E8FCFD);

    --shadow-sm: 0 10px 30px rgba(2, 6, 23, 0.06);
    --shadow-md: 0 18px 45px rgba(2, 6, 23, 0.10);

    --radius-sm: .75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    --transition: all .3s ease;
}

/* =========================================================
   DARK MODE
========================================================= */
body.dark-mode {
    --primary: #38BDF8;
    --secondary: #22D3EE;
    --accent: #FF7B7B;

    --primary-soft: #0F172A;
    --secondary-soft: #082F49;
    --accent-soft: rgba(255, 123, 123, 0.12);

    --dark-text: #E5E7EB;
    --light-text: #CBD5E1;

    --light-bg: #020617;
    --card-bg: #0F172A;

    --border-color: rgba(255,255,255,0.08);

    --primary-gradient: linear-gradient(135deg, #082B7A, #16B9C8);
    --hero-gradient: linear-gradient(135deg, #061A4D 0%, #082B7A 50%, #16B9C8 100%);
    --accent-gradient: linear-gradient(135deg, #FF7B7B, #FF9E9E);
    --soft-gradient: linear-gradient(135deg, #082F49, #0F172A);

    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.30);
}

/* =========================================================
   BASE
========================================================= */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--light-bg);
    color: var(--dark-text);
    font-family: 'Poppins', 'Inter', sans-serif;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: all 0.25s ease;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
    height: auto;
}

p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.text-muted {
    color: var(--light-text) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-text);
    line-height: 1.25;
    font-weight: 700;
}

/* =========================================================
   UTILITIES
========================================================= */
.bg-primary-gradient {
    background: var(--primary-gradient) !important;
    color: #fff !important;
}

.bg-hero-gradient {
    background: var(--hero-gradient) !important;
    color: #fff !important;
}

.bg-accent-gradient {
    background: var(--accent-gradient) !important;
    color: #fff !important;
}

.bg-soft-gradient {
    background: var(--soft-gradient) !important;
}

.bg-primary-soft {
    background: var(--primary-soft) !important;
}

.bg-secondary-soft {
    background: var(--secondary-soft) !important;
}

.bg-accent-soft {
    background: var(--accent-soft) !important;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.text-secondary-custom {
    color: var(--secondary) !important;
}

.text-accent-custom {
    color: var(--accent) !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-soft {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-soft-lg {
    box-shadow: var(--shadow-md) !important;
}

/* =========================================================
   FRONT LAYOUT
========================================================= */
.site-main {
    padding-top: 88px;
}

section {
    position: relative;
    overflow: hidden;
}

section.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.container,
.container-fluid,
.row {
    max-width: 100%;
}

.page-header,
.breadcrumb-section,
.hero-section,
.inner-hero,
.page-banner {
    position: relative;
    overflow: hidden;
}

.page-header,
.inner-hero,
.page-banner {
    background: var(--hero-gradient);
}

.page-header h1,
.hero-section h1,
.inner-hero h1,
.page-banner h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-header .lead,
.hero-section .lead,
.inner-hero .lead,
.page-banner .lead {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    flex-wrap: wrap;
    row-gap: 0.35rem;
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    word-break: break-word;
}

.breadcrumb-item a {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: var(--light-text);
}

#services,
#why-us,
#cta,
#contact {
    scroll-margin-top: 100px;
}

/* =========================================================
   TEXT ON DARK / GRADIENT
========================================================= */
.page-header,
.hero-slide,
.bg-primary-gradient,
.bg-hero-gradient,
.bg-accent-gradient,
#cta,
.cta-section {
    color: #fff;
}

.page-header h1,
.page-header h2,
.page-header h3,
.page-header h4,
.hero-slide h1,
.hero-slide h2,
.hero-slide h3,
.hero-slide h4,
#cta h1,
#cta h2,
#cta h3,
#cta h4,
.bg-primary-gradient h1,
.bg-primary-gradient h2,
.bg-primary-gradient h3,
.bg-primary-gradient h4,
.bg-hero-gradient h1,
.bg-hero-gradient h2,
.bg-hero-gradient h3,
.bg-hero-gradient h4,
.bg-accent-gradient h1,
.bg-accent-gradient h2,
.bg-accent-gradient h3,
.bg-accent-gradient h4,
.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4,
.cta-section h5,
.cta-section h6 {
    color: #fff !important;
}

.page-header p,
.page-header .lead,
.hero-slide p,
.hero-slide .lead,
.bg-primary-gradient p,
.bg-primary-gradient .lead,
.bg-hero-gradient p,
.bg-hero-gradient .lead,
.bg-accent-gradient p,
.bg-accent-gradient .lead,
#cta p,
#cta .lead,
.cta-section p,
.cta-section .lead {
    color: rgba(255, 255, 255, 0.92) !important;
}

.hero-slide .lead,
.page-header .lead,
#cta .lead,
.cta-section .lead {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* =========================================================
   CARDS
========================================================= */
.card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.card:hover {
    transform: translateY(-2px);
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    transition: all 0.25s ease;
    border-radius: 999px;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary,
.btn-book-care {
    background: var(--primary-gradient);
    border: none;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-book-care:hover,
.btn-book-care:focus {
    background: var(--hero-gradient);
    border: none;
    color: #fff;
}

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-accent {
    background: var(--accent-gradient);
    border: none;
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent);
    border: none;
    color: #fff;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-outline-light:hover {
    color: var(--primary);
}

/* =========================================================
   LOGO SIZING
========================================================= */
.logo-wide {
    height: 68px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.logo-mobile {
    height: 52px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.logo-brand {
    flex-shrink: 0;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
    padding: 0.9rem 0;
    background: rgba(255,255,255,0.96) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color) !important;
    transition: all 0.3s ease;
}

body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.94) !important;
}

.navbar.scrolled {
    box-shadow: 0 8px 24px rgba(8, 43, 122, 0.10) !important;
}

body.dark-mode .navbar.scrolled {
    background: rgba(15, 23, 42, 0.98) !important;
}

.navbar .nav-link,
.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    padding: 0.75rem 1rem;
    position: relative;
    transition: all 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 4px;
    height: 2px;
    border-radius: 10px;
    background: var(--accent);
}

.navbar-toggler {
    border: 0;
    padding: 0.35rem 0.45rem;
    flex-shrink: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-cta .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================================================
   HELLO NURSE — PREMIUM HERO
========================================================= */
.hello-hero-wrapper {
    margin-top: -88px;
}

.helloHeroSwiper {
    width: 100%;
    height: 100vh;
    min-height: 680px;
}

.hello-hero-slide {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hello-hero-slide.swiper-slide-active {
    animation: helloHeroZoom 8s ease forwards;
}

@keyframes helloHeroZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 108%;
    }
}

.hello-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
        rgba(7, 28, 102, 0.92) 0%,
        rgba(7, 28, 102, 0.76) 42%,
        rgba(20, 197, 211, 0.28) 100%),
        linear-gradient(180deg,
        rgba(0, 0, 0, 0.28),
        rgba(0, 0, 0, 0.35));
    z-index: 1;
}

.hello-hero-content {
    position: relative;
    z-index: 2;
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: clamp(1.5rem, 5vw, 5rem);
}
.min-vh-hello-hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hello-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 123, 123, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 123, 123, 0.45);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.hello-hero-badge i {
    color: var(--accent);
    font-size: 1.05rem;
}

.hello-hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.02;
    font-weight: 800;
    max-width: 960px;
    margin-bottom: 1.35rem;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.hello-hero-subtitle {
    max-width: 760px;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92) !important;
    margin-bottom: 2rem;
}

.hello-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* =========================================================
   SWIPER
========================================================= */
.landingHeroSwiper .swiper-pagination,
.helloHeroSwiper .swiper-pagination {
    bottom: 28px !important;
}

.landingHeroSwiper .swiper-pagination-bullet,
.testimonialSwiper .swiper-pagination-bullet,
.helloHeroSwiper .swiper-pagination-bullet {
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    opacity: 1;
}

.landingHeroSwiper .swiper-pagination-bullet-active,
.testimonialSwiper .swiper-pagination-bullet-active,
.helloHeroSwiper .swiper-pagination-bullet-active {
    width: 46px;
    background: var(--accent);
    opacity: 1;
}

.landingHeroSwiper .swiper-button-next,
.landingHeroSwiper .swiper-button-prev,
.helloHeroSwiper .swiper-button-next,
.helloHeroSwiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.landingHeroSwiper .swiper-button-next:hover,
.landingHeroSwiper .swiper-button-prev:hover,
.helloHeroSwiper .swiper-button-next:hover,
.helloHeroSwiper .swiper-button-prev:hover {
    background: var(--accent);
}

.landingHeroSwiper .swiper-button-next::after,
.landingHeroSwiper .swiper-button-prev::after,
.helloHeroSwiper .swiper-button-next::after,
.helloHeroSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

/* =========================================================
   FAQ
========================================================= */
.custom-faq .accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm);
}

.custom-faq .accordion-button {
    background: var(--card-bg);
    color: var(--dark-text);
    box-shadow: none !important;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: rgba(22, 185, 200, 0.08);
    color: var(--primary);
}

body.dark-mode .custom-faq .accordion-button:not(.collapsed) {
    background: rgba(22, 185, 200, 0.12);
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-faq .accordion-body {
    background: var(--card-bg);
    padding: 1.1rem 1.25rem 1.25rem;
}

/* =========================================================
   FORMS
========================================================= */
.form-control,
.form-select {
    border-radius: 14px;
    border: 1px solid var(--border-color);
    padding: 0.85rem 1rem;
    background: var(--card-bg);
    color: var(--dark-text);
    box-shadow: none !important;
}

.form-control::placeholder {
    color: var(--light-text);
    opacity: 1;
}

.form-select {
    color: var(--light-text);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.15rem rgba(22, 185, 200, 0.16) !important;
}

.form-label {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* =========================================================
   BADGES / ICON HELPERS
========================================================= */
.badge-primary-soft {
    background: var(--primary-soft);
    color: var(--primary);
}

.badge-secondary-soft {
    background: var(--secondary-soft);
    color: var(--secondary);
}

.badge-accent-soft {
    background: var(--accent-soft);
    color: var(--accent);
}

.icon-box-primary,
.icon-box-secondary,
.icon-box-accent,
.service-icon,
.feature-icon,
.value-icon,
.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.icon-box-primary,
.service-icon {
    background: var(--primary-soft);
    color: var(--primary);
}

.icon-box-secondary,
.value-icon {
    background: var(--secondary-soft);
    color: var(--secondary);
}

.icon-box-accent,
.feature-icon,
.contact-icon {
    background: var(--accent-soft);
    color: var(--accent);
}

/* =========================================================
   CTA SECTION
========================================================= */
.cta-section {
    background: var(--hero-gradient);
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer,
footer {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-color: var(--border-color) !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-about {
    color: var(--light-text);
    line-height: 1.9;
    max-width: 360px;
}

.footer-title {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a,
.footer-contact a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links li a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: var(--light-text);
    line-height: 1.8;
}

.footer-divider {
    border-color: var(--border-color);
}

.footer-bottom p {
    color: var(--light-text);
}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    z-index: 1050;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */
@media (max-width: 991.98px) {
    .site-main {
        padding-top: 78px;
    }

    section.py-5 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .navbar {
        padding: 0.7rem 0;
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .navbar-brand {
        max-width: calc(100% - 76px);
        margin-right: 0;
    }

    .logo-mobile {
        height: 44px;
    }

    .navbar-toggler {
        border: 1px solid rgba(8, 43, 122, 0.14);
        background: rgba(255, 255, 255, 0.88);
        border-radius: 14px;
        padding: 0.42rem 0.62rem;
        box-shadow: none;
        transition: all 0.25s ease;
    }

    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(22, 185, 200, 0.35);
        transform: translateY(-1px);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.18rem rgba(22, 185, 200, 0.14);
    }

    .navbar-collapse {
        margin-top: 0.95rem;
        transition: all 0.3s ease;
    }

    .mobile-nav-card {
        width: 100%;
        background: linear-gradient(135deg, rgba(238, 244, 255, 0.92), rgba(232, 252, 253, 0.92));
        border: 1px solid rgba(255, 255, 255, 0.55);
        border-radius: 1.45rem;
        padding: 1rem;
        box-shadow: 0 18px 40px rgba(8, 43, 122, 0.10);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    body.dark-mode .mobile-nav-card {
        background: linear-gradient(135deg, rgba(8, 43, 122, 0.35), rgba(15, 23, 42, 0.95));
        border-color: rgba(255, 255, 255, 0.08);
    }

    .navbar-nav {
        width: 100%;
        gap: 0.55rem;
        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar .nav-link,
    .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 58px;
        padding: 0.95rem 1rem;
        text-align: center;
        font-size: 1.05rem;
        font-weight: 700;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.22);
        overflow: hidden;
        margin: 0;
    }

    .navbar .nav-link::after,
    .navbar-nav .nav-link::after {
        left: 18%;
        right: 18%;
        bottom: 12px;
        background: var(--accent);
        transform: scaleX(0.35);
        transform-origin: center;
        transition: transform 0.28s ease;
    }

    .navbar .nav-link:hover,
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.58);
        color: var(--primary) !important;
        transform: translateY(-1px);
    }

    .navbar .nav-link:hover::after,
    .navbar-nav .nav-link:hover::after,
    .navbar .nav-link.active::after,
    .navbar-nav .nav-link.active::after {
        transform: scaleX(1);
    }

    .navbar .nav-link.active,
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.98);
        color: var(--primary) !important;
        box-shadow: 0 10px 24px rgba(8, 43, 122, 0.10);
    }

    .nav-cta {
        width: 100%;
        display: flex;
        gap: 0.7rem;
        margin-top: 1rem !important;
        padding-top: 0.2rem;
    }

    .nav-cta .btn {
        flex: 1 1 0;
        min-height: 48px;
        padding: 0.78rem 0.9rem;
        font-size: 0.98rem;
    }

    .landingHeroSwiper .swiper-button-next,
    .landingHeroSwiper .swiper-button-prev,
    .helloHeroSwiper .swiper-button-next,
    .helloHeroSwiper .swiper-button-prev {
        display: none;
    }

    .hello-hero-wrapper {
        margin-top: -78px;
    }

    .helloHeroSwiper,
    .hello-hero-slide {
        min-height: 86vh;
        height: 86vh;
    }

    .min-vh-hello-hero {
        min-height: 86vh;
        padding-top: 115px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hello-hero-title {
        font-size: clamp(2.1rem, 10vw, 3.4rem);
        line-height: 1.08;
        margin-left: auto;
        margin-right: auto;
    }

    .hello-hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
        margin-left: auto;
        margin-right: auto;
    }

    .hello-hero-actions {
        justify-content: center;
    }

    .hello-hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .hello-hero-overlay {
        background:
            linear-gradient(180deg,
            rgba(7, 28, 102, 0.90),
            rgba(7, 28, 102, 0.72)),
            rgba(0, 0, 0, 0.28);
    }

    .site-footer {
        padding-top: 3rem !important;
        padding-bottom: 1.5rem !important;
    }

    .footer-logo {
        height: 54px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-cta .btn {
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */
@media (max-width: 767.98px) {
    section {
        overflow: hidden;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .page-header,
    .breadcrumb-section,
    .hero-section,
    .inner-hero,
    .page-banner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .page-header .container,
    .breadcrumb-section .container,
    .hero-section .container,
    .inner-hero .container,
    .page-banner .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-header h1,
    .hero-section h1,
    .inner-hero h1,
    .page-banner h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.15;
        word-break: break-word;
    }

    .page-header p,
    .hero-section p,
    .inner-hero p,
    .page-banner p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .card,
    .service-card,
    .feature-card,
    .faq-card,
    .testimonial-card {
        border-radius: 1.1rem;
    }

    .btn-lg {
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
    }

    .site-footer .row > div {
        margin-bottom: 0.5rem;
    }

    .footer-logo {
        height: 48px;
    }

    .footer-about {
        font-size: 1rem;
        line-height: 1.85;
        margin-bottom: 1rem;
    }

    .footer-title {
        margin-bottom: 0.85rem;
        font-size: 1.05rem;
    }

    .footer-links li {
        margin-bottom: 0.65rem;
    }

    .footer-contact p {
        margin-bottom: 0.75rem !important;
    }

    .footer-cta {
        margin-top: 0.25rem;
    }

    .footer-cta .btn {
        flex: 1 1 calc(50% - 0.375rem);
        min-height: 44px;
        padding: 0.72rem 0.95rem;
    }

    .footer-bottom {
        gap: 0.35rem;
    }

    .footer-bottom p {
        line-height: 1.7;
    }
}

/* =========================================================
   RESPONSIVE — SMALL PHONES
========================================================= */
@media (max-width: 575.98px) {
    .site-main {
        padding-top: 74px;
    }

    .logo-mobile {
        height: 40px;
    }

    .mobile-nav-card {
        border-radius: 1.2rem;
        padding: 0.92rem;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar .nav-link,
    .navbar-nav .nav-link {
        min-height: 54px;
        font-size: 1rem;
        padding: 0.9rem 0.95rem;
        border-radius: 0.95rem;
    }

    .navbar .nav-link::after,
    .navbar-nav .nav-link::after {
        left: 20%;
        right: 20%;
        bottom: 11px;
    }

    .nav-cta {
        gap: 0.6rem;
    }

    .nav-cta .btn {
        min-height: 46px;
        font-size: 0.94rem;
        padding: 0.72rem 0.8rem;
    }

    .helloHeroSwiper,
    .hello-hero-slide {
        min-height: 84vh;
        height: 84vh;
    }

    .hello-hero-badge {
        font-size: 0.78rem;
        padding: 0.45rem 0.8rem;
    }

    .hello-hero-title {
        font-size: 2.1rem;
    }

    .hello-hero-subtitle {
        font-size: 0.95rem;
    }

    .hello-hero-actions .btn {
        max-width: 100%;
        white-space: normal;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-slide .lead,
    .page-header .lead,
    #cta .lead,
    .cta-section .lead {
        font-size: 1rem;
    }

    .site-footer {
        padding-top: 2.5rem !important;
    }

    .footer-logo {
        height: 44px;
    }

    .footer-about {
        font-size: 0.98rem;
    }

    .footer-cta {
        gap: 0.65rem;
    }

    .footer-cta .btn {
        font-size: 0.95rem;
        padding: 0.7rem 0.85rem;
    }
}
