/********** SMIG Services — Modern UI **********/
:root {
    --primary: #2B7A5E;
    --primary-dark: #1F5C47;
    --primary-light: #E8F3EE;
    --secondary: #C9A87C;
    --secondary-dark: #A8875A;
    --accent: #4A9B8E;
    --light: #F7FAF8;
    --dark: #1A2E28;
    --text: #4A5568;
    --text-muted: #718096;
    --white: #FFFFFF;
    --border: rgba(43, 122, 94, 0.12);
    --shadow-sm: 0 2px 8px rgba(26, 46, 40, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 46, 40, 0.1);
    --shadow-lg: 0 20px 50px rgba(26, 46, 40, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 76px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-display);
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.font-weight-bold { font-weight: 700 !important; }
.font-weight-semi-bold { font-weight: 600 !important; }
.font-weight-medium { font-weight: 500 !important; }

p { color: var(--text); }

a {
    transition: color var(--transition), opacity var(--transition);
}

img { max-width: 100%; }

/* ---- Buttons ---- */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    transition: all var(--transition);
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(43, 122, 94, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(43, 122, 94, 0.35);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(201, 168, 124, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

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

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    background: transparent;
}

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

.btn-curved { border-radius: var(--radius-md) !important; }
.btn-curved-5 { border-radius: var(--radius-sm) !important; }

.btn-square { width: 36px; height: 36px; }
.btn-sm-square { width: 28px; height: 28px; }
.btn-lg-square { width: 46px; height: 46px; }
.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---- Preloader ---- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.preloader img {
    height: 80px;
    width: auto;
    animation: pulse-logo 1.5s ease-in-out infinite;
}

.preloader h3,
.preloader center h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin: 0;
}

@keyframes pulse-logo {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.97); }
}

/* ---- Topbar ---- */
.site-topbar {
    background: var(--dark);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
}

.site-topbar a,
.site-topbar span {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.site-topbar a:hover { color: var(--white); }

.site-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.site-topbar__item i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* ---- Navbar ---- */
.site-nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    transition: box-shadow var(--transition), padding var(--transition);
    z-index: 1030;
}

.site-nav.sticky-top.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.logo {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.site-nav .navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--dark);
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.site-nav .navbar-nav .nav-link:hover,
.site-nav .navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.site-nav .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.site-nav .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.site-nav .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.site-nav .navbar-toggler {
    border: 1px solid var(--border);
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
}

.site-nav .btn-primary {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        padding: 1rem 0;
        border-top: 1px solid var(--border);
        margin-top: 0.75rem;
    }

    .site-nav .btn-primary {
        margin-top: 0.75rem;
        width: 100%;
    }

    .logo { height: 48px; }
}

/* Legacy navbar overrides */
.navbar-light .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
}

.top-shape::before { display: none; }

/* ---- Section system ---- */
.section {
    padding: 5rem 0;
}

.section--light { background: var(--light); }
.section--dark { background: var(--dark); color: var(--white); }

.section-header {
    max-width: 640px;
    margin-bottom: 3rem;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title h5::before,
.section-title h5::after {
    display: none;
}

.section-title .section-label { margin-bottom: 0.75rem; }

/* ---- Hero (homepage) ---- */
.hero-modern {
    position: relative;
    min-height: clamp(520px, 82vh, 720px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-modern__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-modern__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 46, 40, 0.92) 0%,
        rgba(43, 122, 94, 0.75) 50%,
        rgba(26, 46, 40, 0.85) 100%
    );
}

.hero-modern__content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-badge i { color: var(--secondary); }

.hero-modern h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-modern__lead {
    color: rgba(255,255,255,0.88);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-trust__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-trust__item i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.875rem;
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 155, 142, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover { color: var(--white); }

.breadcrumb-nav i,
.breadcrumb-nav .sep {
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
}

.breadcrumb-nav .current {
    color: var(--secondary);
    font-weight: 600;
}

.hero-header,
.header-404,
.header-error {
    background: linear-gradient(135deg, rgba(26,46,40,0.92), rgba(43,122,94,0.82)), url(../img/hero-2.jpg) center/cover no-repeat !important;
}

/* ---- Cards ---- */
.specialism-card,
.card-modern {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.specialism-card:hover,
.card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43, 122, 94, 0.25);
}

.specialism-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-light), rgba(74,155,142,0.15));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.specialism-card h4,
.card-modern h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--dark);
}

.feature-list li i {
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ---- Service cards ---- */
.service-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-item .rounded-top {
    border-radius: 0 !important;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover img {
    transform: scale(1.06);
}

.service-item .bg-light {
    background: var(--white) !important;
    border-radius: 0 !important;
    padding: 1.25rem !important;
    border-top: 1px solid var(--border);
}

.service-item .bg-light h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.service-item .bg-light::after { display: none; }

.service-cta-card {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.service-cta-card h3 {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
}

.service-cta-card p { color: rgba(255,255,255,0.88); }

.service-cta-card h2 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* ---- About image ---- */
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(43,122,94,0.2);
    border-radius: var(--radius-xl);
    z-index: 1;
    pointer-events: none;
    margin: 1rem;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

/* ---- Appointment / forms ---- */
.bg-appointment {
    background: linear-gradient(135deg, rgba(26,46,40,0.94), rgba(43,122,94,0.88)), url(../img/service-errand.jpg) center/cover no-repeat !important;
    border-radius: var(--radius-xl);
    margin: 3rem auto;
    max-width: calc(100% - 2rem);
    overflow: hidden;
}

.appointment-section {
    padding: 3rem 0;
}

.appointment-form,
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.appointment-form h2,
.form-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.appointment-form .form-control,
.appointment-form .form-select,
.form-card .form-control,
.form-card .form-select,
.contact-us-form .form-control {
    height: 52px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--light);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus,
.form-card .form-control:focus,
.contact-us-form .form-control:focus,
.contact-us-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(43, 122, 94, 0.15);
    background: var(--white);
}

.contact-us-form textarea.form-control {
    height: auto;
    min-height: 140px;
}

.field-error {
    color: #DC3545;
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

/* Staff apply form green bg variant */
.staff-apply-form {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark)) !important;
    border-radius: var(--radius-lg);
}

.staff-apply-form h1,
.staff-apply-form h2 { color: var(--white) !important; }

/* ---- CTA banner ---- */
.bg-join-us {
    background: url(../img/join-us.jpg) center/cover no-repeat;
    position: relative;
}

.bg-join-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 40, 0.55);
}

.bg-join-us .container { position: relative; z-index: 1; }

.offer-text {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl) !important;
    backdrop-filter: blur(12px);
    padding: 3rem !important;
}

.offer-text h1,
.offer-text .display-5 {
    color: var(--white);
    font-weight: 800;
}

.offer-text p { color: rgba(255,255,255,0.9) !important; }

/* ---- Blog cards ---- */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.04);
}

.blog-card__body { padding: 1.5rem; }

.blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card__title:hover { color: var(--primary); }

.blog-card__meta {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.blog-sidebar-card {
    background: linear-gradient(145deg, var(--primary-light), var(--light));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}

/* ---- Newsletter ---- */
.newsletter-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.newsletter-band .form-control {
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    height: 54px;
    padding: 0 1.25rem;
    font-size: 0.9375rem;
}

.newsletter-band .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0 1.75rem;
}

/* ---- Contact ---- */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-item i {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
    min-height: 320px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding-top: 4rem;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.site-footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    transition: color var(--transition);
}

.site-footer a:hover {
    color: var(--white);
    padding-left: 4px;
}

.site-footer a i { color: var(--accent); font-size: 0.75rem; }

.site-footer__brand img {
    height: 52px;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.site-footer__brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    padding-left: 0;
    transform: translateY(-2px);
}

.social-links a i { color: var(--white); }

.site-footer__bottom {
    background: #0F1F1A;
    padding: 1.25rem 0;
    margin-top: 3rem;
    font-size: 0.8125rem;
}

.site-footer__bottom a {
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* ---- Back to top ---- */
.back-to-top {
    position: fixed;
    display: none;
    right: 24px;
    bottom: 24px;
    left: auto;
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    z-index: 99;
    box-shadow: var(--shadow-md);
}

/* ---- Carousel legacy ---- */
.carousel-caption {
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    text-align: left;
}

/* ---- Price carousel ---- */
.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: var(--transition);
}

.price-carousel:hover .owl-nav { opacity: 1; }

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    transition: var(--transition);
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--primary-dark);
}

.price-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
}

/* ---- Testimonials ---- */
.bg-testimonial {
    background: url(../img/service-medication2.jpg) center/cover no-repeat;
}

.testimonial-carousel {
    background: rgba(43, 122, 94, 0.92);
    border-radius: var(--radius-lg);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

/* ---- Utilities ---- */
.text-theme { color: var(--primary) !important; }
.bg-light { background: var(--light) !important; }
.img-curved { border-radius: var(--radius-lg) !important; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 576px) {
    .values-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .section { padding: 3.5rem 0; }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.tawk-min.chat-icon {}
