:root {
    --orange: #F3754B;

    /* Akeela Logo Green */
    --teal: #009DA5;

    /* Replace old dark green */
    --dark: #009DA5;
    --dark2: #008B92;

    --cream: #F8F7F3;
    --white: #FFFFFF;
    --muted: #667577;

    --border: rgba(0,157,165,.15);

    --font-heading: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(1320px, 90%);
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16,43,45,.08);
    transition: .35s ease;
}

.header-inner {
    width: min(1440px, 94%);
    height: 88px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: .9;
    min-width: 150px;
}

.brand-akeela {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--teal);
}

.brand-dental {
    margin-top: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--orange);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: #385355;
    transition: .25s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--orange);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: .3s;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-call {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
}

.call-icon {
    color: var(--teal);
}

.header-button,
.btn-primary {
    background: var(--orange);
    color: white;
    padding: 15px 21px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.header-button:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(243,117,75,.25);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 34px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--dark);
    margin: 6px 0;
}

.mobile-menu {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--dark);
}

/* =====================================================
   HERO SLIDESHOW BACKGROUND
===================================================== */

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--dark);
    z-index: 0;
}

.hero-background img.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /* Doctor + patient composition */
    object-position: 65% center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1.2s ease-in-out,
        visibility 1.2s ease-in-out;
}

.hero-background img.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile */
@media (max-width: 768px) {

    .hero-background img.hero-slide {
        object-position: 62% center;
    }

}

/* =====================================================
   HERO OVERLAY
   Keeps left side dark for text
===================================================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(8,35,37,.96) 0%,
            rgba(8,35,37,.90) 22%,
            rgba(8,35,37,.72) 40%,
            rgba(8,35,37,.38) 58%,
            rgba(8,35,37,.12) 78%,
            rgba(8,35,37,.04) 100%
        );
}

/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1320px,90%);
    margin: auto;
    color: white;
    padding-top: 70px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-location span {
    width: 34px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 92px);
    line-height: 1.02;
    letter-spacing: -4px;
    font-weight: 700;
    max-width: 850px;
}

.hero h1 span {
    color: var(--orange);
}

.hero-description {
    max-width: 600px;
    margin-top: 27px;

    color: rgba(255,255,255,.82);

    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 35px;
}

.btn-outline {
    padding: 15px 22px;

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 100px;

    font-size: 12px;
    font-weight: 700;

    transition: .3s;
}

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

/* =====================================================
   HERO TRUST
===================================================== */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 60px;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-trust-item strong {
    font-family: var(--font-heading);
    font-size: 27px;
}

.hero-trust-item span {
    font-size: 9px;
    letter-spacing: 1.5px;
    line-height: 1.5;

    color: rgba(255,255,255,.65);

    text-transform: uppercase;
}

.hero-divider {
    width: 1px;
    height: 42px;
    background: rgba(255,255,255,.25);
}

/* =====================================================
   HERO SIDE LABEL
===================================================== */

.hero-side-label {
    position: absolute;
    z-index: 2;

    right: 28px;
    top: 50%;

    transform: translateY(-50%);

    writing-mode: vertical-rl;

    color: rgba(255,255,255,.55);

    font-size: 9px;
    letter-spacing: 4px;
    line-height: 1.8;
}

/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-indicator {
    position: absolute;

    bottom: 35px;
    right: 6%;

    z-index: 3;

    color: white;

    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 8px;
    letter-spacing: 2px;
}

.scroll-indicator i {
    width: 45px;
    height: 1px;
    background: var(--orange);
}

/* =====================================================
   MOBILE HERO
===================================================== */

@media (max-width: 768px) {

    .hero {
        min-height: 700px;
    }

    .hero-background img.hero-slide {
        object-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,35,37,.94) 0%,
                rgba(8,35,37,.78) 55%,
                rgba(8,35,37,.35) 100%
            );
    }

    .hero-content {
        width: 88%;
        padding-top: 40px;
    }

    .hero h1 {
        font-size: clamp(42px, 11vw, 64px);
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 500px;
    }

    .hero-trust {
        gap: 18px;
        margin-top: 40px;
    }

    .hero-trust-item strong {
        font-size: 22px;
    }

    .hero-side-label {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {
    background: var(--dark);
    color: white;
}

.trust-bar-inner {
    width: min(1200px,90%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.trust-block {
    padding: 28px 25px;
    border-right: 1px solid rgba(255,255,255,.12);

    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-block:last-child {
    border-right: none;
}

.trust-number {
    color: var(--orange);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
}

.trust-block span:last-child {
    color: rgba(255,255,255,.65);
    font-size: 10px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =====================================================
   COMMON SECTIONS
===================================================== */

.section-padding {
    padding: 130px 0;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-eyebrow span {
    width: 32px;
    height: 2px;
    background: var(--orange);
}

.section-eyebrow.light {
    color: rgba(255,255,255,.75);
}

.section-eyebrow.light span {
    background: var(--orange);
}

.section-heading {
    max-width: 800px;
    margin: auto;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .section-eyebrow {
    justify-content: center;
}

.section-heading h2,
.about-content h2,
.doctor-content h2,
.services-heading h2,
.contact-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(38px,4.5vw,65px);
    line-height: 1.08;
    letter-spacing: -3px;
    margin-top: 20px;
}

.section-heading h2 em,
.about-content h2 em,
.doctor-content h2 em,
.services-heading h2 em,
.contact-content h2 em {
    color: var(--orange);
    font-style: normal;
}

.section-heading p {
    margin: 20px auto 0;
    max-width: 620px;
    color: var(--muted);
    line-height: 1.8;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: var(--cream);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    height: 650px;
    overflow: hidden;
    border-radius: 4px;
}

.image-frame img {
    height: 100%;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: -35px;
    right: -35px;

    background: var(--orange);
    color: white;

    padding: 27px 35px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-card strong {
    font-family: var(--font-heading);
    font-size: 42px;
}

.experience-card span {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content .lead {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark);
}

.about-content p:not(.lead) {
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 28px;

    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-link span {
    color: var(--orange);
    font-size: 20px;
}


/* =====================================================
   IMPLANT FEATURE
===================================================== */

.implant-feature {
    position: relative;
    height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.implant-image {
    position: absolute;
    inset: 0;
}

.implant-image img {
    height: 100%;
    object-fit: cover;
}

.implant-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7,34,35,.92),
            rgba(7,34,35,.58),
            rgba(7,34,35,.18)
        );
}

.implant-content {
    position: relative;
    z-index: 2;
}

.implant-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(55px,7vw,100px);
    line-height: .95;
    letter-spacing: -5px;
    margin-top: 25px;
}

.implant-content h2 strong {
    color: var(--orange);
}

.implant-content p {
    max-width: 550px;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    margin: 30px 0;
}

.btn-white {
    background: white;
    color: var(--dark);
    padding: 16px 23px;
    border-radius: 100px;
    display: inline-flex;
    gap: 15px;
    font-size: 11px;
    font-weight: 800;
}

.giant-number {
    position: absolute;
    right: -30px;
    bottom: -100px;
    font-family: var(--font-heading);
    font-size: 420px;
    line-height: 1;
    font-weight: 800;
    color: rgba(255,255,255,.05);
}


/* =====================================================
   PROCESS
===================================================== */

.process-section {
    background: white;
}

.process-section .section-heading {
    margin-bottom: 65px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-card {
    position: relative;
    padding: 45px 32px;
    min-height: 310px;
    border-right: 1px solid var(--border);
    transition: .4s;
}

.process-card:last-child {
    border-right: none;
}

.process-card:hover,
.process-card.featured {
    background: var(--dark);
    color: white;
    transform: translateY(-8px);
}

.process-number {
    font-size: 10px;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 2px;
}

.process-icon {
    font-size: 30px;
    color: var(--teal);
    margin: 35px 0 25px;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
}

.process-card p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.process-card:hover p,
.process-card.featured p {
    color: rgba(255,255,255,.65);
}


/* =====================================================
   AKEELA SERVICES — STRUCTURE 2
===================================================== */

.ak-services-v2 {
    position: relative;
    padding: 135px 0 110px;
    background: #f8f7f3;
    overflow: hidden;
}

.ak-services-v2-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.ak-services-v2-header {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.ak-services-v2-label {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--orange);
}

.ak-services-v2-label span {
    width: 27px;
    height: 2px;
    background: var(--orange);
}

.ak-services-v2-heading h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 72px);
    line-height: .97;
    letter-spacing: -3.5px;

    color: var(--teal);
}

.ak-services-v2-heading h2 em {
    font-style: normal;
    color: var(--teal);
}

.ak-services-v2-header > p {
    max-width: 370px;
    margin: 0 0 6px;

    font-size: 12px;
    line-height: 1.85;

    color: var(--muted);
}


/* =====================================================
   SIGNATURE TREATMENT
===================================================== */

.ak-services-v2-feature {
    display: grid;

    grid-template-columns: .95fr 1.15fr .8fr;

    min-height: 390px;

    overflow: hidden;

    border-radius: 18px;

    background: var(--teal);
}


/* =====================================================
   FEATURE COPY
===================================================== */

.ak-v2-feature-copy {
    display: flex;
    flex-direction: column;

    padding: 40px 38px;
}

.ak-v2-feature-top {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 28px;
}

.ak-v2-feature-number {
    font-family: var(--font-heading);

    font-size: 27px;
    font-weight: 700;

    color: white;
}

.ak-v2-feature-category {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255,255,255,.58);
}

.ak-v2-feature-copy h3 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: clamp(34px, 3.5vw, 48px);

    line-height: .98;

    letter-spacing: -2.5px;

    color: white;
}

.ak-v2-feature-copy h3 span {
    color: white;
}

.ak-v2-feature-copy p {
    max-width: 330px;

    margin: 22px 0 0;

    font-size: 11px;

    line-height: 1.75;

    color: rgba(255,255,255,.72);
}


/* =====================================================
   FEATURE BUTTON
===================================================== */

.ak-v2-feature-button {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    width: fit-content;

    gap: 25px;

    margin-top: auto;

    padding: 12px 16px;

    border-radius: 100px;

    background: white;

    color: var(--teal);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .3s ease;
}

.ak-v2-feature-button span {
    color: var(--orange);

    font-size: 14px;
}

.ak-v2-feature-button:hover {
    transform: translateY(-2px);
}


/* =====================================================
   FEATURE IMAGE
===================================================== */

.ak-v2-feature-image {
    position: relative;

    min-height: 390px;

    overflow: hidden;
}

.ak-v2-feature-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;
}

.ak-services-v2-feature:hover
.ak-v2-feature-image img {
    transform: scale(1.035);
}


/* =====================================================
   BENEFITS
===================================================== */

.ak-v2-feature-benefits {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px 30px;

    background: #008f97;
}

.ak-v2-benefit {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(255,255,255,.15);
}

.ak-v2-benefit:last-child {
    border-bottom: none;
}

.ak-v2-benefit-icon {
    width: 31px;
    height: 31px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--teal);

    font-size: 18px;
}

.ak-v2-benefit strong {
    display: block;

    margin-bottom: 3px;

    font-family: var(--font-heading);

    font-size: 12px;

    color: white;
}

.ak-v2-benefit span {
    display: block;

    font-size: 8px;

    line-height: 1.45;

    color: rgba(255,255,255,.66);
}


/* =====================================================
   OTHER SERVICES
===================================================== */

.ak-services-v2-grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    margin-top: 18px;

    border: 1px solid rgba(0,157,165,.14);

    border-radius: 16px;

    overflow: hidden;

    background: white;
}

.ak-v2-service-card {
    min-height: 265px;

    padding: 24px 22px 22px;

    background: white;

    border-right: 1px solid rgba(0,157,165,.14);

    display: flex;

    flex-direction: column;

    transition:
        background .3s ease,
        transform .3s ease;
}

.ak-v2-service-card:last-child {
    border-right: none;
}

.ak-v2-service-card:hover {
    background: #eef9f9;
}


/* =====================================================
   SERVICE CARD TOP
===================================================== */

.ak-v2-service-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 42px;
}

.ak-v2-service-number {
    font-family: var(--font-heading);

    font-size: 23px;

    font-weight: 700;

    color: var(--orange);
}

.ak-v2-service-icon {
    width: 29px;
    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--teal);

    color: white;

    font-size: 16px;
}


/* =====================================================
   CATEGORY
===================================================== */

.ak-v2-service-category {
    display: block;

    margin-bottom: 9px;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    color: var(--teal);
}


/* =====================================================
   SERVICE TITLE
===================================================== */

.ak-v2-service-card h3 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: 22px;

    line-height: 1.04;

    letter-spacing: -1px;

    color: var(--teal);
}


/* =====================================================
   SERVICE DESCRIPTION
===================================================== */

.ak-v2-service-card p {
    margin: 13px 0 0;

    font-size: 9px;

    line-height: 1.65;

    color: var(--muted);
}


/* =====================================================
   SERVICE LINK
===================================================== */

.ak-v2-service-card > a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: auto;

    padding-top: 20px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    color: var(--teal);
}

.ak-v2-service-card > a span {
    font-size: 16px;

    color: var(--orange);

    transition: transform .25s ease;
}

.ak-v2-service-card:hover > a span {
    transform: translate(4px, -3px);
}


/* =====================================================
   FOOTER
===================================================== */

.ak-services-v2-footer {
    display: grid;

    grid-template-columns: 115px 1fr 270px;

    align-items: center;

    gap: 22px;

    margin-top: 28px;
}

.ak-services-v2-footer > span {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--teal);
}

.ak-services-v2-footer > div {
    height: 1px;

    background: rgba(0,157,165,.16);
}

.ak-services-v2-footer p {
    margin: 0;

    font-size: 9px;

    line-height: 1.6;

    color: var(--muted);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .ak-services-v2-header {
        grid-template-columns: 1fr .7fr;
        gap: 40px;
    }

    .ak-services-v2-feature {
        grid-template-columns: 1fr 1fr;
    }

    .ak-v2-feature-copy,
    .ak-v2-feature-image {
        min-height: 390px;
    }

    .ak-v2-feature-benefits {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns: repeat(4, 1fr);

        padding: 18px 25px;
    }

    .ak-v2-benefit {
        border-bottom: none;

        padding: 8px 12px;

        border-right: 1px solid rgba(255,255,255,.15);
    }

    .ak-v2-benefit:last-child {
        border-right: none;
    }

    .ak-services-v2-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ak-v2-service-card:nth-child(3) {
        border-right: none;
    }

    .ak-v2-service-card:nth-child(n+4) {
        border-top: 1px solid rgba(0,157,165,.14);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .ak-services-v2 {
        padding: 80px 0 70px;
    }

    .ak-services-v2-container {
        width: 88%;
    }

    .ak-services-v2-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 40px;
    }

    .ak-services-v2-heading h2 {
        font-size: 44px;

        letter-spacing: -2.5px;
    }

    .ak-services-v2-feature {
        grid-template-columns: 1fr;
    }

    .ak-v2-feature-copy {
        min-height: 350px;

        padding: 30px 25px;
    }

    .ak-v2-feature-image {
        min-height: 260px;

        order: 2;
    }

    .ak-v2-feature-benefits {
        grid-column: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        padding: 20px;
    }

    .ak-v2-benefit {
        border: none;

        padding: 9px 4px;
    }

    .ak-v2-benefit-icon {
        width: 27px;
        height: 27px;

        font-size: 15px;
    }

    .ak-v2-benefit strong {
        font-size: 10px;
    }

    .ak-v2-benefit span {
        font-size: 7px;
    }

    .ak-services-v2-grid {
        grid-template-columns: 1fr;
    }

    .ak-v2-service-card {
        min-height: 220px;

        border-right: none;

        border-bottom: 1px solid rgba(0,157,165,.14);
    }

    .ak-v2-service-card:last-child {
        border-bottom: none;
    }

    .ak-v2-service-card:nth-child(n+4) {
        border-top: none;
    }

    .ak-v2-service-top {
        margin-bottom: 30px;
    }

    .ak-services-v2-footer {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .ak-services-v2-footer > div {
        width: 100%;
    }
}

/* =====================================================
   DOCTOR
===================================================== */

.doctor-section {
    background: white;
}

.doctor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.doctor-image {
    position: relative;
    height: 650px;
}

.doctor-image img {
    height: 100%;
    object-fit: cover;
}

.doctor-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;

    background: var(--teal);
    color: white;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.doctor-badge span {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
}

.doctor-badge small {
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.doctor-content h4 {
    margin-top: 20px;
    color: var(--teal);
    font-size: 13px;
    line-height: 1.7;
}

.doctor-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 22px;
}

.doctor-details {
    display: flex;
    gap: 35px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.doctor-details div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doctor-details strong {
    color: var(--orange);
    font-size: 10px;
}

.doctor-details span {
    font-size: 11px;
    font-weight: 700;
}


/* =====================================================
   VIDEO
===================================================== */

.video-section {
    position: relative;
    min-height: 750px;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
}

.video-background {
    position: absolute;
    inset: 0;
}

.video-background img {
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,35,37,.78);
}

.video-content {
    position: relative;
    z-index: 2;
    width: min(1320px,90%);
    margin: auto;
}

.video-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(55px,7vw,100px);
    line-height: .94;
    letter-spacing: -5px;
    margin-top: 25px;
}

.video-content h2 em {
    color: var(--orange);
    font-style: normal;
}

.video-content p {
    margin: 25px 0;
    color: rgba(255,255,255,.7);
}

.play-button {
    border: 1px solid rgba(255,255,255,.4);
    background: transparent;
    color: white;
    border-radius: 100px;
    padding: 15px 22px;
    font-size: 11px;
    font-weight: 700;

    display: inline-flex;
    gap: 12px;
    align-items: center;
}

.play-button span {
    color: var(--orange);
}


/* =====================================================
   CERTIFICATIONS
===================================================== */

.certification-section {
    background: var(--cream);
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 60px;
}

.certificate-card {
    height: 360px;
    background: white;
    padding: 15px;
    border: 1px solid var(--border);
}

.certificate-placeholder {
    height: 100%;
    border: 1px dashed rgba(0,157,165,.3);

    display: grid;
    place-items: center;

    color: var(--teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =====================================================
   WHY
===================================================== */

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

.why-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 120px;
}

.why-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px,4.5vw,68px);
    line-height: 1.05;
    letter-spacing: -3px;
    margin-top: 25px;
}

.why-heading h2 em {
    color: var(--orange);
    font-style: normal;
}

.why-items {
    border-top: 1px solid rgba(255,255,255,.15);
}

.why-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);

    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
}

.why-item > span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
}

.why-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
}

.why-item p {
    color: rgba(255,255,255,.58);
    font-size: 12px;
    line-height: 1.7;
    margin-top: 7px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    background: var(--cream);
}

.contact-card {
    background: white;
    padding: 75px;

    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;

    border: 1px solid var(--border);
}

.contact-content > p {
    color: var(--muted);
    max-width: 550px;
    line-height: 1.8;
    margin-top: 25px;
}

.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.whatsapp-button {
    padding: 15px 23px;
    border: 1px solid var(--teal);
    border-radius: 100px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
}

.contact-details {
    border-left: 1px solid var(--border);
    padding-left: 50px;
}

.contact-detail {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);

    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-detail:last-child {
    border: none;
}

.contact-detail span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-detail a,
.contact-detail p {
    font-size: 13px;
    line-height: 1.6;
}

.contact-detail small {
    color: var(--muted);
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #0A2527;
    color: white;
    padding: 80px 0 25px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 280px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    line-height: 1.8;
    margin-top: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links h4 {
    color: var(--orange);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-links a,
.footer-links p {
    color: rgba(255,255,255,.58);
    font-size: 11px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.1);

    display: flex;
    justify-content: space-between;

    color: rgba(255,255,255,.35);
    font-size: 9px;
}


/* =====================================================
   ANIMATIONS
===================================================== */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: 1s ease;
}

.reveal {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px) {

    .desktop-nav {
        gap: 18px;
    }

    .header-call {
        display: none;
    }

    .section-grid,
    .doctor-grid {
        gap: 50px;
    }

    .process-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .process-card:nth-child(2) {
        border-right: none;
    }

    .services-heading {
        grid-template-columns: 1fr;
    }

    .why-grid {
        gap: 60px;
    }

    .footer-main {
        grid-template-columns: repeat(2,1fr);
    }

}


@media(max-width:800px) {

    .header-inner {
        height: 75px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        background: white;
        padding: 25px;
        flex-direction: column;
        gap: 18px;
        border-top: 1px solid var(--border);
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-book {
        background: var(--orange);
        color: white;
        padding: 14px 20px;
        border-radius: 50px;
        text-align: center;
    }

    .hero {
        min-height: 760px;
    }

    .hero h1 {
        font-size: 49px;
        letter-spacing: -2.5px;
    }

    .hero-side-label {
        display: none;
    }

    .hero-trust {
        gap: 15px;
        margin-top: 40px;
    }

    .hero-divider {
        height: 35px;
    }

    .trust-bar-inner {
        grid-template-columns: repeat(2,1fr);
    }

    .trust-block:nth-child(2) {
        border-right: none;
    }

    .section-padding {
        padding: 85px 0;
    }

    .section-grid,
    .doctor-grid,
    .why-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .image-frame,
    .doctor-image {
        height: 500px;
    }

    .experience-card {
        right: 15px;
        bottom: -20px;
    }

    .implant-feature {
        height: 650px;
    }

    .giant-number {
        font-size: 260px;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .service-large {
        grid-column: span 2;
        grid-row: auto;
        min-height: 500px;
    }

    .certificate-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-card {
        padding: 45px 30px;
    }

    .contact-details {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 40px 0 0;
    }

}


@media(max-width:520px) {

    .brand-akeela {
        font-size: 21px;
    }

    .hero-content {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-trust {
        flex-wrap: wrap;
    }

    .hero-divider {
        display: none;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

    .trust-block {
        padding: 22px 10px;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .section-heading h2,
    .about-content h2,
    .doctor-content h2,
    .services-heading h2,
    .contact-content h2 {
        letter-spacing: -2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-large {
        grid-column: auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .certificate-grid {
        grid-template-columns: 1fr;
    }

    .doctor-details {
        flex-direction: column;
        gap: 15px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}/* =====================================================
   EXPERIENCE — PREMIUM TIMELINE
===================================================== */

.experience-section {
    background: var(--cream);
    overflow: hidden;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 75px;
}

.experience-header h2 {
    max-width: 650px;
    margin-top: 18px;
    margin-bottom: 0;
}

.experience-header p {
    max-width: 360px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

.experience-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 28px;
}

.experience-steps::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(16,43,45,.15);
}

.experience-item {
    position: relative;
    z-index: 2;
}

.experience-top {
    height: 45px;
    display: flex;
    align-items: center;
    position: relative;
}

.experience-index {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: .12em;
    background: var(--cream);
    padding-right: 14px;
}

.experience-dot {
    position: absolute;
    left: 50%;
    top: 14px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--teal);
    transform: translateX(-50%);
    transition: all .35s ease;
}

.experience-body {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 34px 30px 32px;
    min-height: 255px;
    margin-top: 30px;
    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease,
        border-color .45s ease;
}

.experience-item:hover .experience-body {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(16,43,45,.10);
    border-color: rgba(0,157,165,.3);
}

.experience-item:hover .experience-dot {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 0 7px rgba(243,117,75,.12);
}

.experience-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--teal);
    margin-bottom: 17px;
}

.experience-body h3 {
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 1.25;
    color: var(--dark);
    margin: 0 0 16px;
}

.experience-body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}


/* =====================================================
   AKEELA SERVICES — STRUCTURE 2
===================================================== */

.services-section {
    position: relative;
    padding: 135px 0 110px;
    background: #f8f7f3;
    overflow: hidden;
}

.services-section .services-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.services-section .services-header {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.services-section .services-label {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--orange);
}

.services-section .services-label span {
    width: 27px;
    height: 2px;
    background: var(--orange);
}

.services-section .services-header h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 72px);
    line-height: .97;
    letter-spacing: -3.5px;

    color: var(--teal);
}

.services-section .services-header h2 em {
    font-style: normal;
    color: var(--teal);
}

.services-section .services-header > p {
    max-width: 370px;
    margin: 0 0 6px;

    font-size: 12px;
    line-height: 1.85;

    color: var(--muted);
}


/* =====================================================
   FEATURED SERVICE
===================================================== */

.services-section .services-feature {
    display: grid;

    grid-template-columns: .95fr 1.15fr .8fr;

    min-height: 390px;

    overflow: hidden;

    border-radius: 18px;

    background: var(--teal);
}


/* =====================================================
   FEATURE CONTENT
===================================================== */

.services-section .feature-copy {
    display: flex;
    flex-direction: column;

    padding: 40px 38px;
}

.services-section .feature-top {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;
}

.services-section .feature-number {
    font-family: var(--font-heading);

    font-size: 27px;
    font-weight: 700;

    color: white;
}

.services-section .feature-category {
    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255,255,255,.58);
}

.services-section .feature-copy h3 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: clamp(34px, 3.5vw, 48px);

    line-height: .98;

    letter-spacing: -2.5px;

    color: white;
}

.services-section .feature-copy h3 span {
    color: var(--orange);
}

.services-section .feature-copy p {
    max-width: 330px;

    margin: 22px 0 0;

    font-size: 11px;

    line-height: 1.75;

    color: rgba(255,255,255,.72);
}


/* =====================================================
   FEATURE BUTTON
===================================================== */

.services-section .feature-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: fit-content;

    gap: 25px;

    margin-top: auto;

    padding: 12px 16px;

    border-radius: 100px;

    background: white;

    color: var(--teal);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: .3s ease;
}

.services-section .feature-button span {
    color: var(--orange);

    font-size: 14px;
}

.services-section .feature-button:hover {
    transform: translateY(-2px);
}


/* =====================================================
   FEATURE IMAGE
===================================================== */

.services-section .feature-image {
    position: relative;

    min-height: 390px;

    overflow: hidden;
}

.services-section .feature-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;
}

.services-section .services-feature:hover
.feature-image img {
    transform: scale(1.035);
}


/* =====================================================
   FEATURE BENEFITS
===================================================== */

.services-section .feature-benefits {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 35px 30px;

    background: #008f97;
}

.services-section .benefit {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(255,255,255,.15);
}

.services-section .benefit:last-child {
    border-bottom: none;
}

.services-section .benefit-icon {
    width: 31px;
    height: 31px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--teal);

    font-size: 18px;
}

.services-section .benefit strong {
    display: block;

    margin-bottom: 3px;

    font-family: var(--font-heading);

    font-size: 12px;

    color: white;
}

.services-section .benefit span {
    display: block;

    font-size: 8px;

    line-height: 1.45;

    color: rgba(255,255,255,.66);
}


/* =====================================================
   OTHER SERVICES
===================================================== */

.services-section .services-other-grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    margin-top: 18px;

    border: 1px solid rgba(0,157,165,.14);

    border-radius: 16px;

    overflow: hidden;

    background: white;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.services-section .other-service {
    min-height: 265px;

    padding: 24px 22px 22px;

    background: white;

    border-right: 1px solid rgba(0,157,165,.14);

    display: flex;
    flex-direction: column;

    transition:
        background .3s ease,
        transform .3s ease;
}

.services-section .other-service:last-child {
    border-right: none;
}

.services-section .other-service:hover {
    background: #eef9f9;
}


/* =====================================================
   CARD TOP
===================================================== */

.services-section .service-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 42px;
}

.services-section .service-number {
    font-family: var(--font-heading);

    font-size: 23px;

    font-weight: 700;

    color: var(--orange);
}

.services-section .service-icon {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--teal);

    color: white;

    font-size: 16px;
}


/* =====================================================
   CATEGORY
===================================================== */

.services-section .service-category {
    display: block;

    margin-bottom: 9px;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    color: var(--teal);
}


/* =====================================================
   TITLE
===================================================== */

.services-section .other-service h3 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: 22px;

    line-height: 1.04;

    letter-spacing: -1px;

    color: var(--teal);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.services-section .other-service p {
    margin: 13px 0 0;

    font-size: 9px;

    line-height: 1.65;

    color: var(--muted);
}


/* =====================================================
   LINK
===================================================== */

.services-section .other-service > a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: auto;

    padding-top: 20px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    color: var(--teal);
}

.services-section .other-service > a span {
    font-size: 16px;

    color: var(--orange);

    transition: transform .25s ease;
}

.services-section .other-service:hover > a span {
    transform: translate(4px, -3px);
}


/* =====================================================
   BOTTOM INFORMATION
===================================================== */

.services-section .services-footer {
    display: grid;

    grid-template-columns: 115px 1fr 270px;

    align-items: center;

    gap: 22px;

    margin-top: 28px;
}

.services-section .services-footer > span {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--teal);
}

.services-section .services-footer > div {
    height: 1px;

    background: rgba(0,157,165,.16);
}

.services-section .services-footer p {
    margin: 0;

    font-size: 9px;

    line-height: 1.6;

    color: var(--muted);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .services-section {
        padding: 100px 0 80px;
    }

    .services-section .services-header {
        grid-template-columns: 1fr .7fr;

        gap: 40px;
    }

    .services-section .services-feature {
        grid-template-columns: 1fr 1fr;
    }

    .services-section .feature-copy {
        min-height: 390px;
    }

    .services-section .feature-image {
        min-height: 390px;
    }

    .services-section .feature-benefits {

        grid-column: 1 / -1;

        display: grid;

        grid-template-columns: repeat(4, 1fr);

        padding: 18px 25px;
    }

    .services-section .benefit {
        border-bottom: none;

        padding: 8px 12px;

        border-right: 1px solid rgba(255,255,255,.15);
    }

    .services-section .benefit:last-child {
        border-right: none;
    }

    .services-section .services-other-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-section .other-service:nth-child(3) {
        border-right: none;
    }

    .services-section .other-service:nth-child(n+4) {
        border-top: 1px solid rgba(0,157,165,.14);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .services-section {
        padding: 80px 0 70px;
    }

    .services-section .services-container {
        width: 88%;
    }

    .services-section .services-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 40px;
    }

    .services-section .services-header h2 {
        font-size: 44px;

        letter-spacing: -2.5px;
    }

    .services-section .services-feature {
        grid-template-columns: 1fr;
    }

    .services-section .feature-copy {
        min-height: 350px;

        padding: 30px 25px;
    }

    .services-section .feature-image {
        min-height: 260px;

        order: 2;
    }

    .services-section .feature-benefits {

        grid-column: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        padding: 20px;
    }

    .services-section .benefit {
        border: none;

        padding: 9px 4px;
    }

    .services-section .benefit-icon {
        width: 27px;
        height: 27px;

        font-size: 15px;
    }

    .services-section .benefit strong {
        font-size: 10px;
    }

    .services-section .benefit span {
        font-size: 7px;
    }

    .services-section .services-other-grid {
        grid-template-columns: 1fr;
    }

    .services-section .other-service {

        min-height: 220px;

        border-right: none;

        border-bottom: 1px solid rgba(0,157,165,.14);
    }

    .services-section .other-service:last-child {
        border-bottom: none;
    }

    .services-section .other-service:nth-child(n+4) {
        border-top: none;
    }

    .services-section .service-top {
        margin-bottom: 30px;
    }

    .services-section .services-footer {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .services-section .services-footer > div {
        width: 100%;
    }

}

/* =====================================================
   SERVICES FOOTER
===================================================== */

.services-footer {
    margin-top: 55px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .experience-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .experience-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .experience-steps::before {
        display: none;
    }

    .experience-top {
        height: 30px;
    }

    .experience-dot {
        display: none;
    }

    .experience-body {
        margin-top: 0;
    }

    .service-featured {
        grid-column: span 2;
    }

}


@media (max-width: 700px) {

    .experience-header {
        margin-bottom: 45px;
    }

    .experience-header h2 {
        font-size: 34px;
    }

    .experience-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .experience-top {
        height: auto;
        margin-bottom: 8px;
    }

    .experience-index {
        background: transparent;
        padding: 0;
    }

    .experience-body {
        min-height: auto;
        padding: 27px 24px;
    }


    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-featured {
        grid-column: span 1;
        min-height: 430px;
    }

    .service-featured-content {
        padding: 30px 25px;
    }

    .service-featured h3 {
        font-size: 36px;
    }

    .service-card-image {
        height: 200px;
    }

    .service-card-content {
        padding: 24px;
    }

}/* =====================================================
   PREMIUM EXPERIENCE SECTION
===================================================== */

.experience-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.experience-header {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
}

.experience-heading h2 {
    margin: 18px 0 0;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -2.5px;
    color: var(--dark);
}

.experience-heading h2 em {
    font-style: normal;
    color: var(--orange);
}

.experience-header > p {
    max-width: 500px;
    margin: 0 0 5px auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* GRID */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}


/* CONNECTING LINE */

.experience-grid::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 7%;
    right: 7%;
    height: 1px;
    background: rgba(16,43,45,.14);
    z-index: 0;
}


/* CARD */

.experience-card {
    position: relative;
    z-index: 1;
    min-height: 420px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(16,43,45,.08);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition:
        transform .5s cubic-bezier(.22,1,.36,1),
        box-shadow .5s ease,
        border-color .4s ease;
}

.experience-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(16,43,45,.12);
    border-color: rgba(243,117,75,.35);
}


/* TOP */

.experience-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--orange);
}

.experience-tag {
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #829092;
}


/* ICON */

.experience-icon {
    width: 66px;
    height: 66px;
    margin: 48px 0 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: #fff;
    font-size: 23px;
    transition:
        transform .5s ease,
        background .4s ease;
}

.experience-card:hover .experience-icon {
    transform: rotate(12deg) scale(1.08);
    background: var(--orange);
}


/* CONTENT */

.experience-card h3 {
    margin: 0 0 18px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.7px;
}

.experience-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}


/* FOOTER */

.experience-card-footer {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(16,43,45,.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.experience-card-footer span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #889496;
}

.experience-card-footer b {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--dark);
}


/* BOTTOM */

.experience-bottom {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(16,43,45,.1);
    display: flex;
    justify-content: space-between;
}

.experience-bottom span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #899596;
}


/* =====================================================
   PREMIUM SERVICES
===================================================== */

.services-section {
    background: #fff;
    overflow: hidden;
}

.services-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.services-heading h2 {
    margin: 18px 0 0;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -2.5px;
    color: var(--dark);
}

.services-heading h2 em {
    font-style: normal;
    color: var(--orange);
}

.services-heading > p {
    max-width: 500px;
    margin: 0 0 5px auto;
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}


/* MAIN GRID */

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* =====================================================
   FEATURED 72 HOURS CARD
===================================================== */

.service-featured {
    position: relative;
    min-height: 570px;
    grid-column: span 2;
    overflow: hidden;
    border-radius: 5px;
    background: var(--dark);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.service-featured-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.22,1,.36,1);
}

.service-featured:hover .service-featured-image img {
    transform: scale(1.07);
}

.service-featured-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(10,30,32,.94) 0%,
            rgba(10,30,32,.72) 42%,
            rgba(10,30,32,.15) 100%
        );
}


/* BADGE */

.featured-badge {
    position: absolute;
    top: 28px;
    left: 30px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.featured-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}


/* BIG NUMBER */

.featured-number {
    position: absolute;
    top: 20px;
    right: 28px;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 110px;
    line-height: 1;
    font-weight: 800;
    color: rgba(255,255,255,.07);
}


/* FEATURE CONTENT */

.service-featured-content {
    position: absolute;
    left: 38px;
    bottom: 38px;
    z-index: 3;
    max-width: 570px;
}

.service-small-label {
    display: block;
    margin-bottom: 18px;
    color: rgba(255,255,255,.7);
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}

.service-featured-content h3 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(42px, 4vw, 60px);
    line-height: .98;
    letter-spacing: -2px;
}

.service-featured-content h3 strong {
    color: var(--orange);
    font-weight: 700;
}

.service-featured-content p {
    max-width: 470px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.75;
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-cta b {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}

.service-featured:hover .featured-cta b {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg);
}


/* =====================================================
   NORMAL SERVICE CARDS
===================================================== */

.service-card-new {
    position: relative;
    min-height: 275px;
    overflow: hidden;
    border-radius: 5px;
    background: var(--dark);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.service-card-image {
    position: absolute;
    inset: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22,1,.36,1);
}

.service-card-new:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(10,30,32,.18) 0%,
            rgba(10,30,32,.82) 72%,
            rgba(10,30,32,.96) 100%
        );
    z-index: 1;
    transition: background .4s ease;
}

.service-card-new:hover .service-card-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(10,30,32,.1) 0%,
            rgba(10,30,32,.76) 60%,
            rgba(10,30,32,.98) 100%
        );
}


/* NUMBER */

.service-card-number {
    position: absolute;
    top: 22px;
    left: 23px;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: #fff;
}


/* ARROW */

.service-card-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all .4s ease;
}

.service-card-new:hover .service-card-arrow {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg);
}


/* CARD CONTENT */

.service-card-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 23px;
    z-index: 3;
}

.service-card-content > span {
    display: block;
    margin-bottom: 9px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.65);
}

.service-card-content h3 {
    margin: 0 0 9px;
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.7px;
}

.service-card-content p {
    margin: 0;
    max-width: 340px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.6;
}


/* FOOTER */

.services-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 42px;
}

.services-footer .phone-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.services-footer .phone-link strong {
    color: var(--dark);
}


/* =====================================================
   APPOINTMENT POPUP
===================================================== */

.appointment-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .4s ease,
        visibility .4s ease;
}

.appointment-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* BACKDROP */

.appointment-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8,27,29,.72);
    backdrop-filter: blur(8px);
}


/* MODAL */

.appointment-modal {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    min-height: 500px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.3);
    transform: translateY(35px) scale(.96);
    transition: transform .55s cubic-bezier(.22,1,.36,1);
}

.appointment-popup.show .appointment-modal {
    transform: translateY(0) scale(1);
}


/* CLOSE */

.appointment-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(16,43,45,.55);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all .3s ease;
}

.appointment-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg);
}


/* IMAGE */

.appointment-modal-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.appointment-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.appointment-popup.show .appointment-modal-image img {
    transform: scale(1.03);
}

.appointment-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(16,43,45,.05),
        rgba(16,43,45,.72)
    );
}

.appointment-mini-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* CONTENT */

.appointment-modal-content {
    padding: 65px 55px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.appointment-label {
    margin-bottom: 16px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--orange);
}

.appointment-modal-content h2 {
    margin: 0 0 20px;
    font-family: var(--font-heading);
    color: var(--dark);
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -2px;
}

.appointment-modal-content h2 em {
    font-style: normal;
    color: var(--orange);
}

.appointment-modal-content > p {
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    max-width: 400px;
}


/* ACTIONS */

.appointment-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.appointment-primary,
.appointment-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-width: 155px;
    padding: 15px 18px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: all .35s ease;
}

.appointment-primary {
    background: var(--dark);
    color: #fff;
}

.appointment-primary:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.appointment-whatsapp {
    border: 1px solid rgba(16,43,45,.15);
    color: var(--dark);
    background: #fff;
}

.appointment-whatsapp:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}


/* CONTACT */

.appointment-contact {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(16,43,45,.1);
}

.appointment-contact span {
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #7c898a;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid::before {
        display: none;
    }

    .service-featured {
        grid-column: span 2;
    }

    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .experience-header,
    .services-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .experience-header > p,
    .services-heading > p {
        margin: 0;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: 350px;
    }

    .experience-bottom {
        display: none;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .service-featured {
        grid-column: span 1;
        min-height: 500px;
    }

    .service-featured-content {
        left: 25px;
        right: 25px;
        bottom: 28px;
    }

    .service-featured-content h3 {
        font-size: 42px;
    }

    .services-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .appointment-modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .appointment-modal-image {
        min-height: 220px;
        max-height: 240px;
    }

    .appointment-modal-content {
        padding: 35px 28px 30px;
    }

}


@media (max-width: 520px) {

    .experience-heading h2,
    .services-heading h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .experience-card {
        padding: 23px;
    }

    .experience-icon {
        margin-top: 35px;
    }

    .service-featured {
        min-height: 470px;
    }

    .service-featured-content h3 {
        font-size: 38px;
    }

    .featured-number {
        font-size: 80px;
    }

    .appointment-popup {
        padding: 12px;
    }

    .appointment-modal-content h2 {
        font-size: 40px;
    }

    .appointment-actions {
        flex-direction: column;
    }

    .appointment-primary,
    .appointment-whatsapp {
        width: 100%;
    }

}/* =====================================================
   AKEELA APPOINTMENT POPUP
   ===================================================== */

.ak-appt-popup {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    width: 350px;
    max-width: calc(100vw - 32px);

    padding: 25px 25px 23px;

    background: rgba(255,255,255,.97);
    border: 1px solid rgba(16,43,45,.12);
    border-radius: 22px;

    box-shadow:
        0 25px 70px rgba(16,43,45,.2),
        0 5px 20px rgba(16,43,45,.08);

    backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(.96);

    transition:
        opacity .45s ease,
        visibility .45s ease,
        transform .45s cubic-bezier(.2,.8,.2,1);
}

.ak-appt-popup.ak-appt-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ak-appt-accent {
    position: absolute;
    top: 0;
    left: 24px;
    width: 42px;
    height: 3px;
    background: var(--orange);
    border-radius: 0 0 5px 5px;
}

.ak-appt-close {
    position: absolute;
    top: 13px;
    right: 14px;

    width: 28px;
    height: 28px;

    border: 0;
    border-radius: 50%;

    background: var(--cream);
    color: var(--dark);

    font-size: 18px;
    line-height: 1;
    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease;
}

.ak-appt-close:hover {
    transform: rotate(90deg);
    background: var(--dark);
    color: white;
}

.ak-appt-kicker {
    display: block;
    margin-bottom: 10px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
    color: var(--teal);
}

.ak-appt-content h3 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: 29px;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--dark);
}

.ak-appt-content h3 em {
    font-style: normal;
    color: var(--orange);
}

.ak-appt-content > p {
    margin: 11px 0 17px;

    font-size: 12px;
    line-height: 1.5;
    color: var(--muted);
}

.ak-appt-special {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 12px;
    border-radius: 13px;

    background: var(--cream);
}

.ak-appt-special > span {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: var(--orange);
    color: white;

    font-size: 12px;
}

.ak-appt-special strong {
    display: block;
    font-size: 11px;
    color: var(--dark);
}

.ak-appt-special small {
    display: block;
    margin-top: 3px;

    font-size: 9px;
    line-height: 1.4;
    color: var(--muted);
}

.ak-appt-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.ak-appt-call,
.ak-appt-wa {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;
    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;

    transition:
        transform .25s ease,
        background .25s ease;
}

.ak-appt-call {
    flex: 1;
    gap: 8px;
    background: var(--dark);
    color: white;
}

.ak-appt-call:hover {
    transform: translateY(-2px);
    background: var(--teal);
}

.ak-appt-wa {
    padding: 0 15px;
    border: 1px solid var(--border);
    color: var(--dark);
}

.ak-appt-wa:hover {
    transform: translateY(-2px);
    background: var(--cream);
}

@media (max-width: 600px) {

    .ak-appt-popup {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        padding: 21px;
        border-radius: 18px;
    }

    .ak-appt-content h3 {
        font-size: 26px;
    }

}/* =====================================================
   AKEELA EXPERIENCE + SERVICES UPGRADE
   Scoped styles only — existing website untouched
   ===================================================== */

.ak-experience-section,
.ak-services-section {
    position: relative;
    width: 100%;
    padding: 110px 6%;
    overflow: hidden;
}

.ak-experience-head,
.ak-services-head {
    max-width: 1280px;
    margin: 0 auto 55px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}

.ak-section-kicker {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    color: var(--orange);
}

.ak-experience-head h2,
.ak-services-head h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.045em;
    color: var(--dark);
}

.ak-experience-head h2 em,
.ak-services-head h2 em {
    font-style: normal;
    color: var(--teal);
}

.ak-experience-head > p,
.ak-services-head > p {
    max-width: 390px;
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* ================= EXPERIENCE ================= */

.ak-experience-timeline {
    position: relative;
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ak-experience-timeline::before {
    content: "";
    position: absolute;
    top: 43px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.ak-exp-card {
    position: relative;
    z-index: 1;
    min-height: 390px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease,
        border-color .45s ease;
}

.ak-exp-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -65px;
    bottom: -65px;
    border-radius: 50%;
    background: var(--teal);
    opacity: .04;
    transition: transform .5s ease;
}

.ak-exp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(16,43,45,.12);
    border-color: rgba(0,157,165,.3);
}

.ak-exp-card:hover::after {
    transform: scale(2);
}

.ak-exp-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 65px;
}

.ak-exp-number {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--orange);
}

.ak-exp-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--teal);
    font-size: 17px;
    transition: transform .4s ease;
}

.ak-exp-card:hover .ak-exp-icon {
    transform: rotate(25deg) scale(1.1);
}

.ak-exp-label,
.ak-service-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--muted);
    margin-bottom: 14px;
}

.ak-exp-card h3 {
    margin: 0 0 17px;
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1.05;
    letter-spacing: -.035em;
    color: var(--dark);
}

.ak-exp-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

.ak-exp-line {
    width: 38px;
    height: 2px;
    margin-top: auto;
    margin-bottom: 17px;
    background: var(--orange);
    transition: width .4s ease;
}

.ak-exp-card:hover .ak-exp-line {
    width: 75px;
}

.ak-exp-bottom {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--dark);
}

.ak-exp-highlight {
    background: var(--dark);
    border-color: var(--dark);
}

.ak-exp-highlight h3,
.ak-exp-highlight .ak-exp-bottom {
    color: var(--white);
}

.ak-exp-highlight p,
.ak-exp-highlight .ak-exp-label {
    color: rgba(255,255,255,.62);
}

.ak-exp-highlight .ak-exp-icon {
    background: rgba(255,255,255,.1);
}


/* ================= SERVICES ================= */

.ak-services-section {
    background: var(--cream);
}

.ak-services-grid {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ak-service-card {
    position: relative;
    min-width: 0;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        box-shadow .5s ease,
        border-color .4s ease;
}

.ak-service-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 25px 65px rgba(16,43,45,.13);
    border-color: rgba(0,157,165,.25);
}

.ak-service-image {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.ak-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.ak-service-card:hover .ak-service-image img {
    transform: scale(1.07);
}

.ak-service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16,43,45,0) 25%,
        rgba(16,43,45,.58) 100%
    );
}

.ak-service-number {
    position: absolute;
    right: 22px;
    bottom: 18px;
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.ak-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 9px 13px;
    border-radius: 30px;
    background: var(--orange);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.ak-service-content {
    padding: 28px 30px 30px;
}

.ak-service-content h3 {
    margin: 0 0 15px;
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: -.04em;
    color: var(--dark);
}

.ak-service-content p {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.ak-service-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: var(--dark);
    border-color: var(--dark);
}

.ak-service-featured .ak-service-image {
    height: 100%;
    min-height: 380px;
}

.ak-service-featured .ak-service-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ak-service-featured .ak-service-label {
    color: var(--orange);
}

.ak-service-featured .ak-service-content h3 {
    font-size: clamp(38px, 4vw, 58px);
    color: var(--white);
}

.ak-service-featured .ak-service-content h3 em {
    color: var(--orange);
    font-style: normal;
}

.ak-service-featured .ak-service-content p {
    color: rgba(255,255,255,.65);
}

.ak-service-cta,
.ak-service-arrow {
    width: fit-content;
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--dark);
}

.ak-service-cta {
    padding: 13px 17px;
    border-radius: 30px;
    background: var(--white);
    transition: gap .3s ease, background .3s ease;
}

.ak-service-cta:hover {
    gap: 20px;
    background: var(--orange);
    color: white;
}

.ak-service-arrow {
    color: var(--teal);
    transition: gap .3s ease;
}

.ak-service-arrow:hover {
    gap: 12px;
}

.ak-services-footer {
    max-width: 1280px;
    margin: 28px auto 0;
    display: flex;
    gap: 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    color: var(--muted);
}


/* ================= MOBILE ================= */

@media (max-width: 950px) {

    .ak-experience-head,
    .ak-services-head {
        display: block;
    }

    .ak-experience-head > p,
    .ak-services-head > p {
        margin-top: 22px;
    }

    .ak-experience-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .ak-experience-timeline::before {
        display: none;
    }

    .ak-service-featured {
        grid-template-columns: 1fr;
    }

    .ak-service-featured .ak-service-image {
        min-height: 300px;
    }

}

@media (max-width: 600px) {

    .ak-experience-section,
    .ak-services-section {
        padding: 75px 5%;
    }

    .ak-experience-head h2,
    .ak-services-head h2 {
        font-size: 40px;
    }

    .ak-experience-timeline,
    .ak-services-grid {
        grid-template-columns: 1fr;
    }

    .ak-service-featured {
        grid-column: span 1;
    }

    .ak-service-featured .ak-service-content {
        padding: 32px 25px;
    }

    .ak-service-featured .ak-service-content h3 {
        font-size: 42px;
    }

    .ak-service-image {
        height: 220px;
    }

    .ak-exp-card {
        min-height: 340px;
    }

    .ak-services-footer {
        flex-wrap: wrap;
    }
}.hero-trust-item strong .counter {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}/* =====================================================
   AKEELA BRAND COLOR BALANCE
   Green background = White text
===================================================== */

/* Green background sections */

.trust-bar,
.stats-bar,
.brand-strip,
.green-section,
.dark-section {
    color: #FFFFFF;
}

/* Text inside green backgrounds */

.trust-bar *,
.stats-bar *,
.brand-strip *,
.green-section *,
.dark-section * {
    color: #FFFFFF;
}

/* Keep orange only for important accents/buttons */

.trust-bar .accent,
.stats-bar .accent,
.brand-strip .accent {
    color: #FFFFFF;
}

/* Green background buttons */

.trust-bar .btn,
.stats-bar .btn,
.green-section .btn {
    color: #FFFFFF;
}

/* Green background links */

.trust-bar a,
.stats-bar a,
.brand-strip a,
.green-section a,
.dark-section a {
    color: #FFFFFF;
}

/* Borders/dividers on green */

.trust-bar .divider,
.stats-bar .divider,
.brand-strip .divider {
    background: rgba(255,255,255,.28);
}/* =====================================================
   AKEELA ABOUT SECTION
===================================================== */

.ak-about {
    position: relative;
    padding: 130px 0;
    background: var(--cream);
    overflow: hidden;
}

.ak-about-container {
    width: min(1180px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;

    align-items: center;
}


/* =====================================================
   LEFT
===================================================== */

.ak-about-left {
    position: relative;
}

.ak-about-image-wrap {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.ak-about-main-image {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .6s ease;
}

.ak-about-image-wrap:hover .ak-about-main-image {
    transform: scale(1.03);
}


/* =====================================================
   TRUST STRIP
===================================================== */

.ak-about-trust {
    display: flex;
    align-items: center;

    margin-top: 22px;
    padding: 24px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ak-about-trust-item {
    flex: 1;
}

.ak-about-trust-item strong {
    display: block;

    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1;

    color: var(--teal);
}

.ak-about-trust-item span {
    display: block;

    margin-top: 8px;

    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 1.3px;

    text-transform: uppercase;

    color: var(--muted);
}

.ak-about-trust-line {
    width: 1px;
    height: 42px;

    background: var(--border);
}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.ak-about-content {
    max-width: 600px;
}

.ak-section-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--teal);
}

.ak-section-label span {
    width: 25px;
    height: 2px;

    background: var(--orange);
}

.ak-about-content h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.02;
    letter-spacing: -3px;

    color: var(--teal);
}

.ak-about-content h2 em {
    display: block;

    font-style: normal;
    color: var(--orange);
}

.ak-about-content p {
    margin: 22px 0 0;

    max-width: 570px;

    font-size: 14px;
    line-height: 1.85;

    color: var(--muted);
}

.ak-about-content .ak-about-lead {
    margin-top: 30px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--teal);
}


/* =====================================================
   HIGHLIGHT
===================================================== */

.ak-about-highlight {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 32px;
    padding: 20px 22px;

    background: #FFFFFF;

    border-left: 3px solid var(--orange);

    box-shadow: 0 12px 35px rgba(0,157,165,.07);
}

.ak-about-highlight-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--teal);
    color: white;

    font-size: 22px;
}

.ak-about-highlight strong {
    display: block;

    font-family: var(--font-heading);
    font-size: 14px;

    color: var(--teal);
}

.ak-about-highlight span {
    display: block;

    margin-top: 5px;

    font-size: 10px;
    line-height: 1.5;

    color: var(--muted);
}


/* =====================================================
   LINK
===================================================== */

.ak-about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--teal);

    transition: .3s;
}

.ak-about-link span {
    color: var(--orange);
    font-size: 16px;

    transition: transform .3s;
}

.ak-about-link:hover {
    color: var(--orange);
}

.ak-about-link:hover span {
    transform: translateX(5px);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .ak-about {
        padding: 90px 0;
    }

    .ak-about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ak-about-image-wrap {
        height: 420px;
    }

    .ak-about-content {
        max-width: none;
    }

}

@media (max-width: 600px) {

    .ak-about-container {
        width: 88%;
    }

    .ak-about-image-wrap {
        height: 330px;
    }

    .ak-about-trust {
        gap: 12px;
    }

    .ak-about-trust-item strong {
        font-size: 23px;
    }

    .ak-about-trust-item span {
        font-size: 8px;
    }

    .ak-about-content h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .ak-about-highlight {
        padding: 16px;
    }

}/* =====================================================
   AKEELA SERVICES — PREMIUM GRID
===================================================== */

.ak-services {
    position: relative;
    padding: 135px 0 110px;
    background: #f8f7f3;
}

.ak-services-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.ak-services-header {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;

    align-items: end;
    margin-bottom: 65px;
}

.ak-services-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--orange);
}

.ak-services-label span {
    width: 26px;
    height: 2px;
    background: var(--orange);
}

.ak-services-header h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(45px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -3.5px;

    color: var(--teal);
}

.ak-services-header h2 em {
    font-style: normal;
    color: var(--teal);
}

.ak-services-header > p {
    max-width: 390px;

    margin: 0 0 7px;

    font-size: 13px;
    line-height: 1.8;

    color: var(--muted);
}


/* =====================================================
   GRID
===================================================== */

.ak-services-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
}


/* =====================================================
   CARD
===================================================== */

.ak-service-card {
    min-width: 0;

    display: grid;
    grid-template-rows: 285px auto;

    background: #ffffff;

    border: 1px solid rgba(0,157,165,.13);
    border-radius: 20px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.ak-service-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0,157,165,.3);

    box-shadow:
        0 20px 50px rgba(0,157,165,.10);
}


/* =====================================================
   IMAGE
===================================================== */

.ak-service-image {
    position: relative;

    width: 100%;
    height: 285px;

    overflow: hidden;

    background: #e9eeee;
}

.ak-service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}

.ak-service-card:hover .ak-service-image img {
    transform: scale(1.035);
}


/* IMAGE DARKEN */

.ak-service-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 35%,
            rgba(0,0,0,.35) 100%
        );

    pointer-events: none;
}


/* NUMBER */

.ak-service-number {
    position: absolute;

    right: 20px;
    bottom: 17px;

    z-index: 2;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    color: white;
}


/* BADGE */

.ak-service-badge {
    position: absolute;

    left: 18px;
    top: 18px;

    z-index: 2;

    padding: 8px 13px;

    border-radius: 100px;

    background: var(--orange);
    color: white;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}


/* =====================================================
   CONTENT
===================================================== */

.ak-service-content {
    min-height: 265px;

    padding: 30px 32px 32px;

    display: flex;
    flex-direction: column;
}

.ak-service-category {
    display: block;

    margin-bottom: 10px;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--teal);
}

.ak-service-content h3 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: 31px;
    line-height: 1.02;

    letter-spacing: -1.5px;

    color: var(--teal);
}

.ak-service-content h3 strong {
    color: var(--orange);
    font-weight: 700;
}

.ak-service-content p {
    max-width: 440px;

    margin: 18px 0 0;

    font-size: 12px;
    line-height: 1.75;

    color: var(--muted);
}


/* =====================================================
   LINK
===================================================== */

.ak-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-top: auto;
    padding-top: 25px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--teal);

    transition: color .25s ease;
}

.ak-service-link span {
    font-size: 15px;

    color: var(--orange);

    transition: transform .25s ease;
}

.ak-service-link:hover {
    color: var(--orange);
}

.ak-service-link:hover span {
    transform: translate(4px, -3px);
}


/* =====================================================
   FEATURED CARD
===================================================== */

.ak-service-featured {
    border-color: var(--teal);
}

.ak-service-featured .ak-service-content {
    background: var(--teal);
}

.ak-service-featured .ak-service-category {
    color: rgba(255,255,255,.65);
}

.ak-service-featured .ak-service-content h3 {
    color: white;
}

.ak-service-featured .ak-service-content h3 strong {
    color: var(--orange);
}

.ak-service-featured .ak-service-content p {
    color: rgba(255,255,255,.75);
}

.ak-service-featured .ak-service-link {
    color: white;
}

.ak-service-featured .ak-service-link span {
    color: var(--orange);
}


/* =====================================================
   BOTTOM
===================================================== */

.ak-services-bottom {
    display: grid;

    grid-template-columns: 70px 1fr auto;

    align-items: center;

    gap: 25px;

    margin-top: 35px;
    padding-top: 28px;

    border-top: 1px solid rgba(0,157,165,.15);
}

.ak-services-bottom > span {
    font-family: var(--font-heading);

    font-size: 30px;
    font-weight: 700;

    color: var(--teal);
}

.ak-services-bottom p {
    margin: 0;

    font-size: 11px;
    line-height: 1.6;

    color: var(--muted);
}

.ak-services-bottom a {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--teal);
}

.ak-services-bottom a span {
    font-size: 15px;
    color: var(--orange);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .ak-services {
        padding: 100px 0 80px;
    }

    .ak-services-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ak-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ak-service-card {
        grid-template-rows: 230px auto;
    }

    .ak-service-image {
        height: 230px;
    }

    .ak-service-content {
        min-height: 245px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 620px) {

    .ak-services {
        padding: 80px 0 65px;
    }

    .ak-services-container {
        width: 88%;
    }

    .ak-services-header {
        margin-bottom: 40px;
    }

    .ak-services-header h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .ak-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ak-service-card {
        grid-template-rows: 230px auto;
    }

    .ak-service-image {
        height: 230px;
    }

    .ak-service-content {
        min-height: 235px;
        padding: 26px;
    }

    .ak-service-content h3 {
        font-size: 28px;
    }

    .ak-services-bottom {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .ak-services-bottom a {
        grid-column: 2;
    }

}/* =====================================================
   AKEELA DENTAL CARE
   PREMIUM SERVICES SECTION
===================================================== */

.ak-services-premium {
    position: relative;
    padding: 125px 0 115px;
    background: #f8f7f3;
    overflow: hidden;
}

.ak-services-premium-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.ak-services-premium-header {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.ak-services-premium-label {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 20px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--orange);
}

.ak-services-premium-label span {
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.ak-services-premium-header h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(46px, 5vw, 72px);
    line-height: .96;
    letter-spacing: -3.5px;
    font-weight: 700;

    color: var(--teal);
}

.ak-services-premium-header h2 em {
    font-style: normal;
    color: var(--teal);
}

.ak-services-premium-intro {
    padding-bottom: 5px;
}

.ak-services-premium-intro p {
    max-width: 370px;

    margin: 0 0 25px;

    font-size: 12px;
    line-height: 1.85;

    color: var(--muted);
}

.ak-services-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--orange);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: var(--teal);
}

.ak-services-view-all span {
    color: var(--orange);
    font-size: 15px;
    transition: transform .3s ease;
}

.ak-services-view-all:hover span {
    transform: translate(4px,-3px);
}


/* =====================================================
   SIGNATURE TREATMENT
===================================================== */

.ak-service-signature {
    display: grid;

    grid-template-columns: .95fr 1.05fr;

    min-height: 475px;

    margin-bottom: 22px;

    overflow: hidden;

    border-radius: 20px;

    background: var(--teal);

    box-shadow:
        0 20px 60px rgba(0,0,0,.07);
}


/* IMAGE */

.ak-service-signature-image {
    position: relative;
    min-height: 475px;
    overflow: hidden;
}

.ak-service-signature-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.ak-service-signature:hover
.ak-service-signature-image img {
    transform: scale(1.045);
}

.ak-service-image-tag {
    position: absolute;

    left: 24px;
    top: 24px;

    padding: 9px 13px;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 100px;

    background: rgba(0,0,0,.18);

    backdrop-filter: blur(8px);

    color: white;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.7px;
}


/* CONTENT */

.ak-service-signature-content {
    display: flex;
    flex-direction: column;

    padding: 42px 44px;

    color: white;
}

.ak-service-number {
    font-family: var(--font-heading);

    font-size: 13px;
    font-weight: 800;

    color: rgba(255,255,255,.6);

    letter-spacing: 1px;
}

.ak-service-signature-main {
    margin-top: auto;
    margin-bottom: auto;
}

.ak-service-category {
    display: block;

    margin-bottom: 16px;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255,255,255,.58);
}

.ak-service-signature-main h3 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: clamp(42px, 4vw, 58px);
    line-height: .95;
    letter-spacing: -3px;

    color: white;
}

.ak-service-signature-main h3 em {
    font-style: normal;
    color: var(--orange);
}

.ak-service-signature-main p {
    max-width: 430px;

    margin: 24px 0 28px;

    font-size: 12px;
    line-height: 1.75;

    color: rgba(255,255,255,.73);
}

.ak-service-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;

    width: fit-content;

    padding: 13px 17px;

    border-radius: 100px;

    background: white;

    color: var(--teal);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;

    transition: transform .3s ease;
}

.ak-service-primary-link span {
    color: var(--orange);
    font-size: 14px;
}

.ak-service-primary-link:hover {
    transform: translateY(-3px);
}


/* SIGNATURE STATS */

.ak-service-signature-points {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.17);
}

.ak-service-signature-points div {
    padding-right: 15px;

    border-right: 1px solid rgba(255,255,255,.17);
}

.ak-service-signature-points div:last-child {
    border-right: none;
    padding-left: 15px;
}

.ak-service-signature-points div:nth-child(2) {
    padding-left: 15px;
}

.ak-service-signature-points strong {
    display: block;

    margin-bottom: 5px;

    font-family: var(--font-heading);

    font-size: 15px;

    color: white;
}

.ak-service-signature-points span {
    display: block;

    font-size: 7px;
    line-height: 1.45;

    letter-spacing: .5px;

    color: rgba(255,255,255,.55);
}


/* =====================================================
   SERVICE GRID
===================================================== */

.ak-service-premium-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 18px;
}


/* CARD */

.ak-service-premium-card {
    display: flex;
    flex-direction: column;

    min-height: 455px;

    overflow: hidden;

    border: 1px solid rgba(0,157,165,.13);
    border-radius: 17px;

    background: white;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease,
        border-color .3s ease;
}

.ak-service-premium-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0,157,165,.28);

    box-shadow:
        0 22px 55px rgba(0,70,74,.10);
}


/* CARD IMAGE */

.ak-service-card-image {
    position: relative;

    height: 220px;

    overflow: hidden;

    background: #dfeeed;
}

.ak-service-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .75s cubic-bezier(.2,.8,.2,1);
}

.ak-service-premium-card:hover
.ak-service-card-image img {
    transform: scale(1.06);
}


/* IMAGE OVERLAY */

.ak-service-card-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05) 30%,
            rgba(0,0,0,.28) 100%
        );

    pointer-events: none;
}


/* NUMBER */

.ak-service-card-number {
    position: absolute;

    z-index: 2;

    left: 18px;
    top: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 50%;

    background: white;

    font-family: var(--font-heading);

    font-size: 11px;
    font-weight: 800;

    color: var(--orange);

    box-shadow: 0 5px 18px rgba(0,0,0,.12);
}


/* ARROW */

.ak-service-card-arrow {
    position: absolute;

    z-index: 2;

    right: 18px;
    bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: var(--teal);

    color: white;

    font-size: 16px;

    transition:
        transform .3s ease,
        background .3s ease;
}

.ak-service-premium-card:hover
.ak-service-card-arrow {
    transform: translate(2px,-2px);

    background: var(--orange);
}


/* CARD CONTENT */

.ak-service-card-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 25px 25px 23px;
}

.ak-service-card-category {
    display: block;

    margin-bottom: 10px;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    color: var(--teal);
}

.ak-service-card-content h3 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: 25px;
    line-height: 1.05;
    letter-spacing: -1.1px;

    color: var(--teal);
}

.ak-service-card-content p {
    max-width: 330px;

    margin: 15px 0 0;

    font-size: 10px;
    line-height: 1.7;

    color: var(--muted);
}

.ak-service-card-content > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;
    padding-top: 22px;

    border-top: 1px solid rgba(0,157,165,.12);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.1px;

    text-transform: uppercase;

    color: var(--teal);
}

.ak-service-card-content > a span {
    color: var(--orange);

    font-size: 16px;

    transition: transform .25s ease;
}

.ak-service-card-content > a:hover span {
    transform: translate(4px,-3px);
}


/* =====================================================
   FOOTER
===================================================== */

.ak-services-premium-footer {
    display: grid;

    grid-template-columns: 110px 1fr 310px;

    align-items: center;

    gap: 22px;

    margin-top: 27px;
}

.ak-services-premium-footer > span {
    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;

    color: var(--teal);
}

.ak-services-premium-footer > div {
    height: 1px;

    background: rgba(0,157,165,.16);
}

.ak-services-premium-footer p {
    margin: 0;

    font-size: 9px;
    line-height: 1.6;

    color: var(--muted);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .ak-services-premium-header {
        grid-template-columns: 1fr .8fr;
        gap: 40px;
    }

    .ak-service-signature {
        grid-template-columns: 1fr 1fr;
    }

    .ak-service-signature-image {
        min-height: 430px;
    }

    .ak-service-signature-content {
        padding: 35px;
    }

    .ak-service-premium-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .ak-services-premium {
        padding: 80px 0 70px;
    }

    .ak-services-premium-container {
        width: 88%;
    }

    .ak-services-premium-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 38px;
    }

    .ak-services-premium-header h2 {
        font-size: 44px;
        letter-spacing: -2.5px;
    }

    .ak-services-premium-intro p {
        font-size: 11px;
    }


    /* SIGNATURE */

    .ak-service-signature {
        grid-template-columns: 1fr;

        min-height: auto;

        border-radius: 16px;
    }

    .ak-service-signature-image {
        min-height: 290px;
    }

    .ak-service-signature-content {
        min-height: 470px;

        padding: 28px 24px;
    }

    .ak-service-signature-main {
        margin-top: 45px;
        margin-bottom: 45px;
    }

    .ak-service-signature-main h3 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .ak-service-signature-points {
        grid-template-columns: repeat(3,1fr);
    }


    /* CARDS */

    .ak-service-premium-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .ak-service-premium-card {
        min-height: 430px;
    }

    .ak-service-card-image {
        height: 220px;
    }


    /* FOOTER */

    .ak-services-premium-footer {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .ak-services-premium-footer p {
        max-width: 350px;
    }

}/* =====================================================
   SERVICES — CHANGE TEAL SERVICE TEXT TO ORANGE
   ===================================================== */

.ak-service-content h3 {
    color: #F3754B !important;
}

.ak-service-content h3 strong {
    color: #F3754B !important;
}

.ak-service-category {
    color: #F3754B !important;
}

.ak-service-link {
    color: #F3754B !important;
}

.ak-service-link span {
    color: #F3754B !important;
}

/* Service card border + hover accent */
.ak-service-card {
    border-color: rgba(243,117,75,.18);
}

.ak-service-card:hover {
    border-color: rgba(243,117,75,.35);
    box-shadow: 0 20px 50px rgba(243,117,75,.10);
}/* =====================================================
   AKEELA SERVICES V2 — ORANGE TEXT
   ===================================================== */

.ak-v2-service-card h3 {
    color: #F3754B !important;
}

.ak-v2-service-card .ak-v2-service-category {
    color: #F3754B !important;
}

.ak-v2-service-card > a {
    color: #F3754B !important;
}

.ak-v2-service-card > a span {
    color: #F3754B !important;
}/* =====================================================
   AK – PREMIUM PATIENT STORIES
===================================================== */

.ak-testimonials {
    position: relative;
    width: 100%;
    padding: 85px 0 90px;
    background: #ffffff;
    overflow: hidden;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.ak-testimonials-container {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.82fr 1.18fr;

    gap: 80px;
    align-items: center;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.ak-testimonials-left {
    position: relative;
}


.ak-testimonial-number {
    margin-bottom: 30px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: #009DA5;
}


.ak-testimonial-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: #009DA5;
}


.ak-testimonial-eyebrow span {
    width: 30px;
    height: 1px;

    display: block;

    background: #F3754B;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.ak-testimonials-left h2 {
    margin: 0;

    font-size: clamp(48px, 5vw, 70px);

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 500;

    color: #F3754B;
}


.ak-testimonials-left h2 em {
    display: inline-block;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.02em;

    font-weight: 400;

    font-style: italic;

    color: #009DA5;
}


/* =====================================================
   LEFT DIVIDER
===================================================== */

.ak-testimonial-divider {
    width: 55px;
    height: 1px;

    margin: 30px 0 22px;

    background: #dce8e8;
}


/* =====================================================
   INTRO TEXT
===================================================== */

.ak-testimonial-intro-text {
    max-width: 370px;

    margin: 0;

    font-size: 14px;

    line-height: 1.75;

    color: #718385;
}


/* =====================================================
   SIGNATURE TEXT
===================================================== */

.ak-testimonial-signature {
    margin-top: 25px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: #17383a;
}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.ak-testimonials-right {
    width: 100%;
    min-width: 0;
}


/* =====================================================
   TESTIMONIAL CARD
===================================================== */

.ak-testimonial-card {
    position: relative;

    width: 100%;

    height: 385px;
    min-height: 385px;
    max-height: 385px;

    padding: 45px 55px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #f4faf9;

    border: 1px solid #e1eeee;

    overflow: hidden;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* =====================================================
   BIG QUOTE
===================================================== */

.ak-testimonial-large-quote {
    position: absolute;

    top: 2px;
    right: 30px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 155px;

    line-height: 1;

    font-weight: 400;

    color: #009DA5;

    opacity: 0.065;

    pointer-events: none;
}


/* =====================================================
   STARS
===================================================== */

.ak-testimonial-stars {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    font-size: 13px;

    letter-spacing: 4px;

    color: #F3754B;
}


/* =====================================================
   REVIEW TEXT
===================================================== */

.ak-testimonial-text {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;

    height: 130px;
    min-height: 130px;
    max-height: 130px;

    margin: 0;

    overflow: hidden;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 4;

    font-size: clamp(22px, 2.1vw, 29px);

    line-height: 1.42;

    letter-spacing: -0.025em;

    color: #17383a;
}


/* =====================================================
   PATIENT DETAILS
===================================================== */

.ak-testimonial-patient {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 13px;

    height: 46px;
    min-height: 46px;

    margin-top: 24px;
}


.ak-patient-avatar {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #009DA5;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.03em;
}


.ak-patient-details {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.ak-patient-details strong {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.04em;

    color: #17383a;
}


.ak-patient-details span {
    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color: #849697;
}


/* =====================================================
   CARD NUMBER
===================================================== */

.ak-card-number {
    position: absolute;

    right: 28px;
    bottom: 22px;

    z-index: 3;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.14em;

    color: #009DA5;
}


/* =====================================================
   PROGRESS
===================================================== */

.ak-story-progress {
    width: 100%;

    margin-top: 18px;
}


.ak-story-progress-line {
    position: relative;

    width: 100%;
    height: 2px;

    background: #dce8e8;

    overflow: hidden;
}


.ak-story-progress-line span {
    position: absolute;

    top: 0;
    left: 0;

    width: 6.66%;
    height: 100%;

    background: #009DA5;

    transition: width 0.45s ease;
}


/* =====================================================
   NAVIGATION
===================================================== */

.ak-testimonial-navigation {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    margin-top: 18px;
}


.ak-testimonial-navigation button {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #17383a;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.15em;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.ak-testimonial-navigation button:hover {
    color: #009DA5;
}


.ak-testimonial-navigation button:first-child:hover {
    transform: translateX(-3px);
}


.ak-testimonial-navigation button:last-child {
    justify-self: end;
}


.ak-testimonial-navigation button:last-child:hover {
    transform: translateX(3px);
}


.ak-testimonial-navigation button span {
    font-size: 17px;

    font-weight: 400;

    line-height: 1;
}


.ak-story-label {
    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.15em;

    color: #9aabab;
}


/* =====================================================
   CARD ANIMATION
===================================================== */

.ak-testimonial-card.changing {
    animation: akTestimonialChange 0.5s ease;
}


@keyframes akTestimonialChange {

    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.ak-testimonials-left,
.ak-testimonials-right {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.ak-testimonials.animate-ready .ak-testimonials-left,
.ak-testimonials.animate-ready .ak-testimonials-right {
    opacity: 0;

    transform: translateY(30px);
}


.ak-testimonials.animate-ready.visible .ak-testimonials-left,
.ak-testimonials.animate-ready.visible .ak-testimonials-right {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .ak-testimonials {
        padding: 75px 0 80px;
    }

    .ak-testimonials-container {
        width: calc(100% - 60px);

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .ak-testimonials-left h2 {
        font-size: 58px;
    }

    .ak-testimonial-intro-text {
        max-width: 500px;
    }

    .ak-testimonial-card {
        height: 385px;
        min-height: 385px;
        max-height: 385px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .ak-testimonials {
        padding: 65px 0 70px;
    }

    .ak-testimonials-container {
        width: calc(100% - 30px);

        gap: 38px;
    }

    .ak-testimonial-number {
        margin-bottom: 24px;
    }

    .ak-testimonials-left h2 {
        font-size: 44px;

        line-height: 1;
    }

    .ak-testimonial-divider {
        margin: 26px 0 20px;
    }

    .ak-testimonial-intro-text {
        font-size: 14px;

        line-height: 1.7;
    }

    .ak-testimonial-signature {
        margin-top: 22px;
    }

    .ak-testimonial-card {

        height: 360px;
        min-height: 360px;
        max-height: 360px;

        padding: 35px 24px;
    }

    .ak-testimonial-large-quote {
        top: 0;
        right: 10px;

        font-size: 120px;
    }

    .ak-testimonial-stars {
        margin-bottom: 18px;

        font-size: 12px;

        letter-spacing: 3px;
    }

    .ak-testimonial-text {

        height: 125px;
        min-height: 125px;
        max-height: 125px;

        font-size: 20px;

        line-height: 1.42;

        -webkit-line-clamp: 4;
    }

    .ak-testimonial-patient {
        margin-top: 20px;
    }

    .ak-card-number {
        right: 20px;
        bottom: 18px;
    }

    .ak-story-label {
        display: none;
    }

    .ak-testimonial-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .ak-testimonial-navigation button:last-child {
        justify-self: end;
    }

/* =========================================================
   AKEELA DENTAL CARE
   GALLERY DROPDOWN — CLEAN VERSION
========================================================= */

/* Gallery wrapper */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}


/* Gallery button */
.nav-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    height: 100%;

    color: #314c4e;
    text-decoration: none;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;
    cursor: pointer;
}


/* Arrow */
.nav-dropdown .dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
    line-height: 1;

    transition: transform 0.25s ease;
}


/* =========================================================
   DROPDOWN CONTAINER
========================================================= */

.nav-dropdown .dropdown-menu {
    position: absolute;

    top: calc(100% + 10px);
    left: 50%;

    width: 180px;

    padding: 8px;

    background: #ffffff;

    border: 1px solid rgba(0, 157, 165, 0.12);
    border-radius: 12px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);

    transform: translateX(-50%) translateY(12px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 99999;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* =========================================================
   SHOW DROPDOWN
========================================================= */

.nav-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* Arrow rotation */

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* Gallery active / hover */

.nav-dropdown:hover > .dropdown-toggle {
    color: #009DA5;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.nav-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 40px;

    padding: 0 14px;

    box-sizing: border-box;

    background: transparent;

    color: #314c4e;

    text-decoration: none;

    font-family: inherit;
    font-size: 10px;
    font-weight: 600;

    border-radius: 7px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


/* Link hover */

.nav-dropdown .dropdown-menu a:hover {
    background: rgba(0, 157, 165, 0.07);

    color: #009DA5;

    padding-left: 18px;
}


/* =========================================================
   DROPDOWN TOP POINTER
========================================================= */

.nav-dropdown .dropdown-menu::before {
    content: "";

    position: absolute;

    top: -6px;
    left: 50%;

    width: 10px;
    height: 10px;

    background: #ffffff;

    border-left: 1px solid rgba(0, 157, 165, 0.12);
    border-top: 1px solid rgba(0, 157, 165, 0.12);

    transform: translateX(-50%) rotate(45deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .nav-dropdown {
        display: block;
        width: 100%;
        height: auto;
    }

    .nav-dropdown .dropdown-toggle {
        display: flex;

        width: 100%;
        height: auto;

        padding: 15px 0;

        justify-content: space-between;
    }

    .nav-dropdown .dropdown-menu {
        position: static;

        width: 100%;

        padding: 0;

        background: transparent;

        border: 0;
        border-radius: 0;

        box-shadow: none;

        transform: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        display: none;
    }

    .nav-dropdown .dropdown-menu::before {
        display: none;
    }

    .nav-dropdown:hover > .dropdown-menu {
        display: none;
    }

    .nav-dropdown.mobile-open > .dropdown-menu {
        display: block;
    }

    .nav-dropdown .dropdown-menu a {
        min-height: 40px;
        padding-left: 20px;
    }

    .nav-dropdown .dropdown-menu a:hover {
        padding-left: 24px;
    }
}
}/* =========================================================
   AKEELA CINEMATIC HERO — FULL CSS
========================================================= */

.ak-cinematic-hero {
    position: relative;
    height: 720px;
    min-height: 680px;
    overflow: hidden;
    background: #063b3d;
    color: #fff;
    isolation: isolate;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.ak-cinematic-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.ak-cinematic-bg img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    /* Better framing — keeps patient and lower chair area */
    object-position: 68% 35%;

    transform: scale(.98);

    animation: none;
}


/* =========================================================
   DARK GRADIENT OVERLAY
========================================================= */

.ak-cinematic-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(2,35,37,.96) 0%,
            rgba(2,42,44,.88) 24%,
            rgba(2,48,50,.62) 46%,
            rgba(2,48,50,.24) 70%,
            rgba(2,48,50,.05) 100%
        );
}


/* Bottom cinematic fade */

.ak-cinematic-hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 160px;

    background:
        linear-gradient(
            transparent,
            rgba(2,35,37,.38)
        );

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   CONTENT CONTAINER
========================================================= */

.ak-cinematic-content {
    width: min(1240px, calc(100% - 80px));

    height: 100%;

    margin: 0 auto;

    padding-top: 135px;

    position: relative;

    z-index: 5;
}


/* =========================================================
   LOCATION / EYEBROW
========================================================= */

.ak-cinematic-location {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.4px;

    color: rgba(255,255,255,.78);
}

.ak-cinematic-location span {
    width: 27px;
    height: 2px;

    background: #f3754b;

    display: block;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.ak-cinematic-content h1 {
    margin: 0;

    max-width: 700px;

    font-size: clamp(62px, 6.2vw, 90px);

    line-height: .88;

    letter-spacing: -5px;

    font-weight: 700;

    color: #ffffff;
}

.ak-cinematic-content h1 span {
    color: #ffffff;
}


/* =========================================================
   72 HOURS HEADING
========================================================= */

.ak-cinematic-content h2 {
    margin: 20px 0 0;

    font-size: clamp(34px, 3.5vw, 51px);

    line-height: .98;

    letter-spacing: -2.5px;

    font-weight: 500;

    color: rgba(255,255,255,.95);
}

.ak-cinematic-content h2 strong {
    color: #f3754b;

    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.ak-cinematic-content > p {
    max-width: 520px;

    margin: 24px 0 28px;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.ak-cinematic-actions {
    display: flex;

    align-items: center;

    gap: 20px;
}


/* Primary */

.ak-cinematic-primary {
    height: 52px;

    padding: 0 21px;

    display: inline-flex;

    align-items: center;

    gap: 27px;

    background: #f3754b;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition: .3s ease;
}

.ak-cinematic-primary span {
    font-size: 17px;

    font-weight: 400;
}

.ak-cinematic-primary:hover {
    background: #ffffff;

    color: #073b3e;

    transform: translateY(-2px);
}


/* Secondary */

.ak-cinematic-secondary {
    height: 52px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.85);

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    border-bottom: 1px solid rgba(255,255,255,.35);

    transition: .3s ease;
}

.ak-cinematic-secondary span {
    color: #f3754b;

    font-size: 16px;
}

.ak-cinematic-secondary:hover {
    color: #ffffff;

    border-color: #f3754b;
}


/* =========================================================
   HERO STATS
========================================================= */

.ak-cinematic-stats {
    display: flex;

    align-items: center;

    margin-top: 43px;
}

.ak-cinematic-stat {
    display: flex;

    align-items: center;

    gap: 10px;
}

.ak-cinematic-stat strong {
    font-size: 25px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: -1px;

    color: #ffffff;
}

.ak-cinematic-stat span {
    font-size: 7px;

    line-height: 1.45;

    letter-spacing: 1.2px;

    color: rgba(255,255,255,.48);
}

.ak-stat-divider {
    width: 1px;

    height: 34px;

    margin: 0 24px;

    background: rgba(255,255,255,.17);
}


/* =========================================================
   RIGHT VERTICAL LABEL
========================================================= */

.ak-cinematic-side-label {
    position: absolute;

    right: 30px;

    top: 50%;

    transform:
        translateY(-50%)
        rotate(90deg);

    transform-origin: center;

    z-index: 10;

    color: rgba(255,255,255,.48);

    font-size: 7px;

    letter-spacing: 2.5px;

    white-space: nowrap;
}

.ak-cinematic-side-label::before {
    content: "";

    display: inline-block;

    width: 25px;

    height: 1px;

    margin-right: 10px;

    vertical-align: middle;

    background: #f3754b;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.ak-cinematic-scroll {
    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    z-index: 10;

    color: rgba(255,255,255,.45);

    font-size: 7px;

    letter-spacing: 2px;
}

.ak-cinematic-scroll i {
    width: 1px;

    height: 28px;

    background: #f3754b;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .ak-cinematic-hero {
        height: 690px;
    }

    .ak-cinematic-content {
        width: calc(100% - 50px);

        padding-top: 130px;
    }

    .ak-cinematic-content h1 {
        font-size: 65px;

        letter-spacing: -4px;
    }

    .ak-cinematic-content h2 {
        font-size: 40px;
    }

    .ak-cinematic-bg img {
        object-position: 67% 35%;

        transform: scale(.98);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .ak-cinematic-hero {
        height: 720px;

        min-height: 720px;
    }


    /* Mobile image positioning */

    .ak-cinematic-bg img {
        object-position: 63% center;

        transform: scale(1);
    }


    /* Mobile overlay */

    .ak-cinematic-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2,35,37,.94) 0%,
                rgba(2,42,44,.78) 50%,
                rgba(2,42,44,.30) 100%
            );
    }


    /* Content */

    .ak-cinematic-content {
        width: calc(100% - 34px);

        padding-top: 105px;

        text-align: center;
    }


    /* Location */

    .ak-cinematic-location {
        justify-content: center;

        font-size: 8px;

        letter-spacing: 1.7px;
    }


    /* Heading */

    .ak-cinematic-content h1 {
        font-size: clamp(51px, 14vw, 68px);

        line-height: .91;

        letter-spacing: -3px;
    }


    /* 72 hours */

    .ak-cinematic-content h2 {
        font-size: clamp(31px, 8vw, 42px);

        letter-spacing: -1.8px;

        margin-top: 18px;
    }


    /* Description */

    .ak-cinematic-content > p {
        max-width: 430px;

        margin: 23px auto 27px;

        font-size: 13px;

        line-height: 1.65;
    }


    /* Buttons */

    .ak-cinematic-actions {
        justify-content: center;

        gap: 17px;
    }

    .ak-cinematic-primary {
        height: 50px;
    }


    /* Stats */

    .ak-cinematic-stats {
        justify-content: center;

        margin-top: 38px;
    }

    .ak-cinematic-stat {
        gap: 7px;
    }

    .ak-cinematic-stat strong {
        font-size: 20px;
    }

    .ak-cinematic-stat span {
        font-size: 6px;
    }

    .ak-stat-divider {
        margin: 0 12px;

        height: 27px;
    }


    /* Hide desktop-only elements */

    .ak-cinematic-side-label,
    .ak-cinematic-scroll {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .ak-cinematic-hero {
        height: 700px;

        min-height: 700px;
    }

    .ak-cinematic-content {
        padding-top: 95px;
    }

    .ak-cinematic-content h1 {
        font-size: 48px;
    }

    .ak-cinematic-content h2 {
        font-size: 31px;
    }

    .ak-cinematic-actions {
        flex-direction: column;

        gap: 16px;
    }

    .ak-cinematic-primary {
        width: 100%;

        justify-content: center;
    }

    .ak-cinematic-stats {
        transform: scale(.88);
    }
/* =========================================================
   GLOBAL WEBSITE HEADER
   SAME HEADER FOR EVERY PAGE
========================================================= */

.site-header {
    position: relative;
    width: 100%;
    height: 78px;
    background: #ffffff;
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 157, 165, 0.08);
}

.header-inner {
    width: min(1180px, calc(100% - 70px));
    height: 78px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;

    text-decoration: none;
    line-height: 1;

    min-width: 150px;
}

.brand-akeela {
    display: block;

    color: #009DA5;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 800;

    letter-spacing: 3px;
    line-height: 1;
}

.brand-dental {
    display: block;

    margin-top: 5px;

    color: #F3754B;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 7px;
    font-weight: 700;

    letter-spacing: 3px;
    line-height: 1;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 31px;
}

.desktop-nav > a,
.desktop-nav .dropdown-toggle {
    position: relative;

    display: inline-flex;
    align-items: center;

    height: 100%;

    color: #30494b;
    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}


/* Hover */

.desktop-nav > a:hover,
.desktop-nav .dropdown-toggle:hover {
    color: #009DA5;
}


/* Active page */

.desktop-nav > a.active {
    color: #F3754B;
}


/* Active underline */

.desktop-nav > a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 18px;

    height: 2px;

    background: #F3754B;

    transform: scaleX(1);
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .header-inner {
        width: calc(100% - 45px);
    }

    .desktop-nav {
        gap: 22px;
    }

    .header-actions {
        gap: 13px;
        min-width: 220px;
    }

    .header-call {
        font-size: 9px;
    }

    .header-button {
        min-width: 130px;
    }
}


@media (max-width: 900px) {

    .site-header,
    .header-inner {
        height: 72px;
    }

    .header-inner {
        width: calc(100% - 35px);
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu.ak-mobile-open {
        display: block;
    }

    .brand-akeela {
        font-size: 19px;
    }
}


@media (max-width: 500px) {

    .header-inner {
        width: calc(100% - 25px);
    }

    .brand-akeela {
        font-size: 18px;
        letter-spacing: 2.5px;
    }

    .brand-dental {
        font-size: 6px;
        letter-spacing: 2.5px;
    }
}.nav-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
}

.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}/* GALLERY CLICK DROPDOWN FIX */

.nav-dropdown .dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.nav-dropdown.is-open .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}/