:root {
    --turquoise: #0f8f8a;
    --turquoise-dark: #085f5d;
    --turquoise-soft: #dff7f5;
    --gold: #c9a227;
    --gold-soft: #f8efd1;
    --navy: #072a35;
    --ink: #13323c;
    --muted: #5d6d73;
    --bg: #f4fbfb;
    --surface: #ffffff;
    --border: rgba(15, 143, 138, 0.12);
    --shadow: 0 18px 50px rgba(7, 42, 53, 0.12);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    line-height: 1.8;
    background:
        radial-gradient(circle at top right, rgba(201, 162, 39, 0.08), transparent 26%),
        radial-gradient(circle at left top, rgba(15, 143, 138, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

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

.text-gold {
    color: var(--gold);
}

.btn-turquoise {
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(15, 143, 138, 0.25);
}

.btn-turquoise:hover {
    color: #fff;
    transform: translateY(-1px);
}

.site-header {
    background: rgba(7, 42, 53, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
    position: relative;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    gap: 0.25rem;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    margin: 0 0.15rem;
    border-radius: 999px;
    padding: 0.6rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.navbar .dropdown-toggle::after {
    margin-left: 0.45rem;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.55rem 0.8rem;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.12) !important;
}

.navbar-brand {
    color: #fff !important;
}

.site-logo {
    height: 56px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 62px;
    width: auto;
    display: block;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--turquoise), var(--gold));
    box-shadow: 0 12px 28px rgba(15, 143, 138, 0.35);
}

.dropdown-menu {
    padding: 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(7, 42, 53, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.dropdown-menu-dark {
    background: rgba(7, 42, 53, 0.98);
}

.dropdown-item {
    border-radius: 14px;
    padding: 0.72rem 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.dropdown-divider {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(7, 42, 53, 0.18), rgba(15, 143, 138, 0.22)),
        var(--hero-bg, linear-gradient(135deg, #08212a, #0f8f8a));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 42, 53, 0.18), rgba(15, 143, 138, 0.20)),
        radial-gradient(circle at top right, rgba(201, 162, 39, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 22%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 42, 53, 0.12), rgba(15, 143, 138, 0.16));
    z-index: 0;
    pointer-events: none;
}

.hero-content-wrap {
    z-index: 1;
}

.hero-copy {
    max-width: 860px;
    padding: 2rem 2.25rem;
    border-radius: 32px;
    background: rgba(7, 42, 53, 0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.hero-slider-section {
    position: relative;
    background: linear-gradient(180deg, #05161d 0%, #0b2831 100%);
}

.hero-slider {
    position: relative;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    min-height: 720px;
}

.hero-slider .carousel-item {
    position: relative;
    overflow: hidden;
    background: #05161d;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: saturate(1.05) contrast(1.03);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(4, 18, 24, 0.88) 0%, rgba(5, 24, 31, 0.78) 45%, rgba(4, 18, 24, 0.62) 100%);
    z-index: 1;
}

.hero-slide-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    z-index: 1;
    pointer-events: none;
}

.hero-slide-glow-one {
    top: 60px;
    right: 7%;
    width: 220px;
    height: 220px;
    background: rgba(201, 162, 39, 0.15);
}

.hero-slide-glow-two {
    bottom: 80px;
    left: 8%;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-slide-shell {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
}

.hero-slide-copy {
    max-width: 560px;
    padding: 1rem 0;
}

.hero-kicker,
.hero-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 800;
}

.hero-slide-copy h1 {
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0.75rem 0 1rem;
    color: #fff;
}

.hero-slide-copy p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.84);
    max-width: 58ch;
}

.hero-action-row .btn {
    min-width: 168px;
}

.hero-microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.15rem;
}

.hero-microcopy span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.13);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-microcopy i {
    color: var(--gold);
}

.hero-visual-wrap {
    display: flex;
    justify-content: flex-end;
}

.hero-visual-frame {
    position: relative;
    width: min(100%, 540px);
    padding: 0.85rem;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.hero-visual-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 28px;
}

.hero-visual-badge {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 1.1rem;
    border-radius: 22px;
    background: rgba(6, 24, 32, 0.78);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.hero-slide-panel {
    color: #fff;
}

.hero-slide-panel-card {
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(7, 42, 53, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.hero-slide-panel-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0.7rem 0 1rem;
}

.hero-slide-panel-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.hero-slide-panel-card li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-slide-panel-card li i {
    color: var(--gold);
    margin-top: 0.2rem;
}

.hero-slide-stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-top: 0.85rem;
}

.hero-slide-stat {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(7, 42, 53, 0.70);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-slide-stat strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1;
    color: #fff;
}

.hero-slide-stat span {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.74);
}

.hero-indicators {
    z-index: 3;
    margin-bottom: 1rem;
}

.hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.45);
}

.hero-indicators .active {
    width: 36px;
    background-color: var(--gold);
}

.hero-control {
    width: 58px;
    height: 58px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: transparent;
    opacity: 1;
    border: 1px solid transparent;
}

.carousel-control-prev.hero-control {
    left: 2rem;
}

.carousel-control-next.hero-control {
    right: 2rem;
}

.hero-control:hover {
    background: rgba(7, 42, 53, 0.16);
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-one {
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(201, 162, 39, 0.18);
}

.hero-glow-two {
    bottom: -120px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 800;
}

.section-pad {
    padding: 5.75rem 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 2.25rem;
}

.section-heading h2,
.section-title,
.page-hero h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0.5rem 0 0.75rem;
}

.section-heading p,
.section-text,
.page-hero p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.85;
}

.hero-panel,
.content-card,
.feature-card,
.testimonial-card,
.blog-card,
.job-card,
.sidebar-card,
.form-card,
.feature-panel,
.mini-card,
.contact-strip {
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero-panel {
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
}

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

.about-image-card {
    position: relative;
}

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

.about-image-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    background: rgba(7, 42, 53, 0.88);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(7, 42, 53, 0.2);
}

.about-image-badge i {
    color: var(--gold);
}

.hero-placeholder {
    min-height: 320px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(15, 143, 138, 0.9), rgba(7, 42, 53, 0.95)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 10px, transparent 10px 20px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    font-size: 3.5rem;
}

.ui-sprite {
    width: 64px;
    height: 64px;
    color: var(--gold);
}

.hero-placeholder p {
    font-size: 1rem;
    margin: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 1rem;
    border-radius: 18px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 1.25rem;
}

.stat-card span {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    color: rgba(255,255,255,0.84);
}

.hero-points div {
    padding: 0.8rem 0.95rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.feature-card {
    padding: 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.job-card:hover,
.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(7, 42, 53, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--turquoise-soft), var(--gold-soft));
    color: var(--turquoise);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.feature-card h3,
.testimonial-card strong,
.job-card h3,
.blog-card h3 {
    font-weight: 800;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.info-box {
    padding: 1.35rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(223, 247, 245, 0.65) 100%);
    border: 1px solid rgba(15, 143, 138, 0.12);
    box-shadow: 0 18px 40px rgba(7, 42, 53, 0.08);
}

.info-box i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--turquoise-soft), var(--gold-soft));
    color: var(--turquoise);
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
}

.info-box h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.info-box p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.feature-panel {
    padding: 2rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 42, 53, 0.98), rgba(15, 143, 138, 0.92));
}

.feature-panel.alt {
    background:
        linear-gradient(135deg, rgba(15, 143, 138, 0.96), rgba(201, 162, 39, 0.88));
}

.check-list,
.list-check,
.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.check-list li,
.list-check li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.list-check li::before,
.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    margin-top: 0.1rem;
}

.promise-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.promise-icons div,
.pill {
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-weight: 600;
}

.content-card,
.sidebar-card,
.form-card {
    padding: 1.75rem;
}

.content-card h2,
.content-card h3,
.sidebar-card h4,
.form-card h2 {
    font-weight: 800;
}

.sidebar-card {
    background: linear-gradient(135deg, var(--navy), var(--turquoise-dark));
    color: #fff;
}

.sidebar-card p {
    color: rgba(255,255,255,0.78);
}

.cta-strip,
.contact-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 2.25rem;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy), var(--turquoise));
    color: #fff;
}

.cta-strip-split,
.cta-strip-alt {
    min-height: 220px;
}

.contact-strip-wide {
    padding: 2.15rem 2.5rem;
}

.testimonial-card {
    padding: 1.6rem;
    background: #fff;
}

.testimonial-card .stars,
.stars {
    color: var(--gold);
}

.testimonial-meta {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.blog-card {
    overflow: hidden;
    background: #fff;
}

.blog-card img,
.blog-thumb-placeholder {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(15, 143, 138, 0.15), rgba(201, 162, 39, 0.18));
}

.blog-body {
    padding: 1.5rem;
}

.blog-category {
    display: inline-flex;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-detail-hero {
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.18);
    pointer-events: none;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.blog-detail-article {
    padding: 1rem;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.blog-detail-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 1.7rem;
}

.blog-detail-image-wrap::after {
    content: "";
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--turquoise));
}

.blog-detail-image {
    width: 100%;
    height: clamp(280px, 42vw, 500px);
    object-fit: cover;
    display: block;
}

.post-content {
    padding: 0.4rem 0.8rem 0.9rem;
}

.post-content p {
    font-size: 1.08rem;
    line-height: 1.95;
}

.post-content h2 {
    margin-top: 1.5rem;
}

.blog-detail-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 1rem;
}

.blog-side-card {
    padding: 1.35rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.blog-side-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.blog-side-card p {
    color: var(--muted);
    line-height: 1.75;
}

.blog-side-card-accent {
    background: linear-gradient(135deg, var(--navy), var(--turquoise-dark));
    color: #fff;
}

.blog-side-card-accent h3,
.blog-side-card-accent p {
    color: #fff;
}

.blog-side-list,
.blog-service-links {
    display: grid;
    gap: 0.7rem;
}

.blog-side-list a {
    display: grid;
    gap: 0.15rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: #f6fbfc;
    color: var(--navy);
}

.blog-side-list a:hover,
.blog-service-links a:hover {
    color: var(--turquoise);
    transform: translateY(-1px);
}

.blog-side-list span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-service-links a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    background: rgba(223, 247, 245, 0.58);
    color: var(--navy);
    font-weight: 700;
}

.blog-service-links i {
    font-size: 1.35rem;
    color: var(--turquoise);
}

.blog-side-newsletter {
    background: linear-gradient(180deg, #ffffff, rgba(248, 239, 209, 0.55));
}

.blog-detail-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--navy), var(--turquoise));
    color: #fff;
    box-shadow: var(--shadow);
}

.blog-detail-footer-cta h3 {
    color: #fff;
    margin-bottom: 0.35rem;
}

.blog-detail-footer-cta p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.job-card {
    padding: 1.5rem;
    background: #fff;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
    margin-top: 1rem;
}

.mini-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mini-card {
    padding: 1.25rem;
    background: #fff;
    text-align: center;
}

.mini-card i {
    font-size: 1.5rem;
    color: var(--turquoise);
    margin-bottom: 0.75rem;
}

.page-hero {
    padding: 5.25rem 0 2.5rem;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    margin: 0.75rem 0 1rem;
}

.bg-soft {
    background: linear-gradient(180deg, rgba(223, 247, 245, 0.6), rgba(255,255,255,0));
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 14px;
    border-color: rgba(15, 143, 138, 0.18);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 0.2rem rgba(15, 143, 138, 0.12);
}

.simple-wysiwyg-source {
    display: none;
}

.simple-wysiwyg {
    border: 1px solid rgba(15, 143, 138, 0.18);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.simple-wysiwyg-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.6rem;
    background: #f6fbfc;
    border-bottom: 1px solid rgba(15, 143, 138, 0.12);
}

.simple-wysiwyg-button {
    min-width: 38px;
    height: 34px;
    border: 1px solid rgba(15, 143, 138, 0.18);
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    font-weight: 800;
    line-height: 1;
}

.simple-wysiwyg-button:hover,
.simple-wysiwyg-button:focus {
    border-color: var(--turquoise);
    color: var(--turquoise);
    outline: 0;
}

.simple-wysiwyg-editor {
    min-height: 180px;
    padding: 0.95rem 1rem;
    color: var(--body);
    line-height: 1.7;
    outline: 0;
}

.simple-wysiwyg-editor:focus {
    box-shadow: inset 0 0 0 0.2rem rgba(15, 143, 138, 0.12);
}

.simple-wysiwyg-editor:empty::before {
    content: attr(data-placeholder);
    color: #8a9ba3;
}

.simple-wysiwyg-editor h2,
.simple-wysiwyg-editor h3,
.simple-wysiwyg-editor p,
.simple-wysiwyg-editor ul,
.simple-wysiwyg-editor ol {
    margin: 0 0 0.75rem;
}

.simple-wysiwyg-editor ul,
.simple-wysiwyg-editor ol {
    padding-left: 1.35rem;
}

.simple-wysiwyg-editor h2 {
    font-size: 1.45rem;
}

.simple-wysiwyg-editor h3 {
    font-size: 1.15rem;
}

.btn-outline-turquoise {
    border: 1px solid var(--turquoise);
    color: var(--turquoise);
    background: transparent;
}

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

.site-header .btn,
.hero-section .btn,
.section-pad .btn,
.page-hero .btn,
.content-card .btn,
.form-card .btn,
.cta-strip .btn,
.contact-strip .btn,
.feature-panel .btn {
    padding: 0.95rem 1.5rem;
    font-weight: 700;
}

.btn.is-processing,
button.is-processing,
input.is-processing {
    cursor: wait;
    opacity: 0.72;
    pointer-events: none;
}

.feature-panel p,
.content-card p,
.job-card p,
.testimonial-card p,
.blog-card p {
    font-size: 1.03rem;
    line-height: 1.85;
}

.rich-text > :last-child {
    margin-bottom: 0;
}

.rich-text ul,
.rich-text ol {
    padding-left: 1.35rem;
}

.rich-text li {
    margin-bottom: 0.4rem;
}

.rich-text h2,
.rich-text h3 {
    color: var(--navy);
}

.rich-text h2 {
    font-size: 1.75rem;
}

.rich-text h3 {
    font-size: 1.35rem;
}

.map-wrap iframe,
.map-placeholder {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(7, 42, 53, 0.96), rgba(15, 143, 138, 0.9));
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.site-footer {
    background: linear-gradient(180deg, #061f27 0%, #041319 100%);
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.7rem;
    color: rgba(255,255,255,0.76);
}

.footer-links a {
    color: rgba(255,255,255,0.76);
}

.footer-links a:hover {
    color: #fff;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,0.09);
    transition: 0.2s ease;
}

.social-link.dark {
    color: var(--navy);
    background: var(--turquoise-soft);
}

.social-link:hover {
    transform: translateY(-2px);
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.35);
    z-index: 1000;
}

.admin-body {
    background: #eef5f7;
}

.admin-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(180deg, #061f27 0%, #03232e 100%);
    color: #fff;
    padding: 1.5rem;
}

.admin-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.admin-logo-plate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 0.85rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.admin-sidebar-logo {
    display: block;
    width: 100%;
    max-width: 210px;
    height: auto;
}

.admin-brand small {
    display: block;
    color: rgba(255,255,255,0.6);
    padding-left: 0.15rem;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-nav a {
    color: rgba(255,255,255,0.78);
    padding: 0.85rem 1rem;
    border-radius: 14px;
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.admin-nav i {
    margin-right: 0.55rem;
}

.admin-main {
    padding: 1.25rem;
}

.admin-topbar {
    background: #fff;
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--ink);
    text-decoration: none;
}

.admin-user:hover {
    color: var(--turquoise);
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turquoise), var(--gold));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}

.admin-panel {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 1.5rem;
}

.table thead th {
    background: #f6fbfc;
    color: var(--navy);
    border-bottom: 0;
}

@media (max-width: 991px) {
    .hero-points,
    .hero-stats,
    .mini-card-grid,
    .info-grid,
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        min-height: 760px;
    }

    .navbar .container {
        gap: 0.75rem;
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 0.9rem;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(5, 24, 31, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

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

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

    .navbar .nav-link {
        margin: 0;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        padding: 0.95rem 1rem;
    }

    .navbar .nav-item.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 0.35rem;
    }

    .navbar .btn {
        width: 100%;
    }

    .navbar .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0.4rem 0 0;
        padding: 0.45rem;
        border-radius: 18px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        max-height: none;
        overflow: visible;
    }

    .navbar .dropdown-item {
        white-space: normal;
        color: rgba(255, 255, 255, 0.92);
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.08);
    }

    .hero-slide-shell {
        padding: 6rem 0 4rem;
    }

    .hero-slide-copy {
        max-width: none;
    }

    .hero-visual-wrap {
        justify-content: flex-start;
    }

    .hero-visual-frame {
        width: min(100%, 640px);
    }

    .cta-strip,
    .contact-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-detail-sidebar {
        position: static;
    }

    .blog-detail-footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-sidebar {
        position: relative;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 3.5rem 0;
    }

    .hero-section {
        min-height: auto;
        padding: 4.5rem 0 3.5rem;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        min-height: 640px;
    }

    .hero-slide-shell {
        padding: 5.5rem 0 3.5rem;
    }

    .hero-control {
        width: 48px;
        height: 48px;
    }

    .site-logo {
        height: 44px;
    }

    .about-image-card img {
        min-height: 320px;
    }

    .hero-copy {
        padding: 1.35rem 1.15rem;
    }

    .hero-slide-copy {
        padding: 0.75rem 0;
    }

    .hero-slide-copy h1 {
        font-size: clamp(1.95rem, 8vw, 2.6rem);
    }

    .hero-slide-copy p,
    .hero-microcopy span {
        font-size: 0.96rem;
    }

    .hero-visual-image {
        height: 280px;
    }

    .navbar .nav-link {
        margin: 0.2rem 0;
    }

    .content-card,
    .sidebar-card,
    .form-card,
    .feature-panel {
        padding: 1.35rem;
    }

    .blog-detail-article {
        padding: 0.75rem;
        border-radius: 22px;
    }

    .post-content {
        padding: 0.25rem 0.35rem 0.65rem;
    }

    .cta-strip,
    .contact-strip {
        padding: 1.45rem;
        border-radius: 22px;
    }

    .page-hero {
        padding: 4rem 0 2rem;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

@media (max-width: 575px) {
    .section-pad {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 4rem 0 2.5rem;
    }

    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        min-height: 560px;
    }

    .hero-slide-shell {
        padding: 4.5rem 0 3rem;
    }

    .hero-slide-copy h1 {
        font-size: clamp(1.85rem, 10vw, 2.35rem);
    }

    .hero-slide-copy p {
        font-size: 0.95rem;
    }

    .hero-action-row {
        flex-direction: column;
    }

    .hero-action-row .btn,
    .site-header .btn {
        width: 100%;
    }

    .hero-microcopy {
        flex-direction: column;
    }

    .hero-microcopy span {
        width: 100%;
    }

    .hero-visual-frame {
        padding: 0.65rem;
        border-radius: 26px;
    }

    .hero-visual-image {
        height: 240px;
    }

    .hero-control {
        width: 40px;
        height: 40px;
    }

    .page-hero p,
    .section-heading p,
    .section-text {
        font-size: 1rem;
    }
}
