:root {
    --navy: #0f3460;
    --blue: #1a6fc4;
    --orange: #f97316;
    --orange2: #fb923c;
    --bg: #f5f7fa;
    --white: #ffffff;
    --text: #1e293b;
    --text2: #475569;
    --text3: #94a3b8;
    --border: rgba(26, 111, 196, .12);
    --sh: 0 2px 12px rgba(15, 52, 96, .08);
    --shlg: 0 16px 48px rgba(15, 52, 96, .14);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: var(--sh);
}

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    background: var(--orange);
    color: #fff;
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #ea6c0a;
}

nav img {
    height: 40px;
    border-radius: 8px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: var(--shlg);
    margin-bottom: 60px;
}


.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 100px 5% 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(249, 115, 22, .15) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 20% 80%, rgba(26, 111, 196, .2) 0%, transparent 50%);
}

.hero-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hc {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .06);
}

.hc1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
}

.hc2 {
    width: 400px;
    height: 400px;
    top: 100px;
    right: 100px;
}

.hc3 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: 10%;
    border-color: rgba(249, 115, 22, .2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, .15);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, .3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(38px, 5vw, 62px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title em {
    color: var(--orange);
    font-style: normal;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: #ea6c0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, .4);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 1px solid rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .18);
}

.hero-stats {
    position: absolute;
    right: 5%;
    bottom: 60px;
    z-index: 2;
    display: flex;
    gap: 20px;
}

.hstat {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 20px 24px;
    text-align: center;
    transition: transform .2s;
}

.hstat:hover {
    transform: translateY(-4px);
}

.hstat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: #fff;
}

.hstat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    margin-top: 2px;
}

section {
    padding: 88px 5%;
}

.sec-tag {
    display: inline-block;
    background: rgba(249, 115, 22, .08);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, .2);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sec-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 14px;
}

.sec-sub {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 560px;
}

.sec-hdr {
    text-align: center;
    margin-bottom: 56px;
}

.sec-hdr .sec-sub {
    margin: 0 auto;
}

#services {
    background: var(--bg);
}

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

.svc-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    transform: scaleX(0);
    transition: transform .25s;
    transform-origin: left;
}

.svc-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--shlg);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.svc-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.svc-desc {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

.svc-price {
    margin-top: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}


.about-img {
    position: relative;
    background: url(sp8.jpg) center/cover no-repeat;
    border-radius: 20px;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
}

.about-img-inner {
    text-align: center;
    color: rgba(255, 255, 255, .8);
}

.about-eye {
    font-size: 80px;
    display: block;
    margin-bottom: 16px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: transparent;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: var(--shlg);
}

.about-img-badge .num {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: white;
}

.about-img-badge .lbl {
    font-size: 11px;
    color: white;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.af {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    transition: border-color .2s;
}

.af:hover {
    border-color: var(--orange);
}

.af-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(249, 115, 22, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.af-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.af-desc {
    font-size: 13px;
    color: var(--text2);
}

#team {
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all .25s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shlg);
    border-color: var(--blue);
}

.team-photo {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-ava {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: #fff;
    border: 3px solid rgba(255, 255, 255, .3);
}

.team-info {
    padding: 18px;
    text-align: center;
}

.team-name {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.team-desc {
    font-size: 12.5px;
    color: var(--text2);
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tcard {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    position: relative;
    transition: all .2s;
}

.tcard:hover {
    border-color: var(--orange);
    box-shadow: var(--sh);
}

.tcard::before {
    content: '"';
    font-family: 'DM Serif Display', serif;
    font-size: 64px;
    color: var(--orange);
    opacity: .15;
    position: absolute;
    top: 10px;
    left: 18px;
    line-height: 1;
}

.ttext {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
}

.tauthor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tava {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.tname {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.tsub {
    font-size: 11px;
    color: var(--text3);
}

.tstars {
    color: var(--orange);
    font-size: 13px;
    margin-bottom: 12px;
}

#booking {
    background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 100%);
    position: relative;
    overflow: hidden;
}

#booking::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .12) 0%, transparent 70%);
}

.booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.booking-info .sec-title {
    color: #fff;
}

.booking-info .sec-sub {
    color: rgba(255, 255, 255, .65);
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.bperk {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

.bperk-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(249, 115, 22, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.booking-form {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
}

.bform-title {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 6px;
}

.bform-sub {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 24px;
}

.fg {
    margin-bottom: 14px;
}

.fg label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text2);
    letter-spacing: .4px;
    margin-bottom: 5px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    padding: 10px 13px;
    font-size: 14px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color .2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 111, 196, .08);
}

.fg textarea {
    resize: none;
    height: 70px;
}

.fg2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .2s;
    margin-top: 4px;
}

.submit-btn:hover {
    background: #ea6c0a;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, .4);
}

.success-msg {
    display: none;
    background: rgba(22, 163, 74, .08);
    border: 1.5px solid rgba(22, 163, 74, .25);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    color: #15803d;
    font-size: 14px;
    margin-top: 14px;
}

#my-appts {
    background: var(--bg);
}

.appt-lookup {
    max-width: 520px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1.5px solid var(--border);
    box-shadow: var(--sh);
}

.appt-lookup-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 6px;
}

.appt-lookup-sub {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 20px;
}

.lookup-row {
    display: flex;
    gap: 10px;
}

.lookup-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
}

.lookup-input:focus {
    border-color: var(--blue);
}

.lookup-btn {
    padding: 10px 20px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
}

.lookup-btn:hover {
    background: var(--blue);
}

.appt-results {
    max-width: 700px;
    margin: 0 auto;
}

.appt-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--sh);
}

.appt-card:hover {
    border-color: var(--blue);
}

.appt-date-box {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    flex-shrink: 0;
    min-width: 64px;
}

.appt-date-day {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    color: #fff;
    line-height: 1;
}

.appt-date-mon {
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.appt-info {
    flex: 1;
}

.appt-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.appt-meta {
    font-size: 13px;
    color: var(--text2);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.appt-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.st-booked {
    background: rgba(26, 111, 196, .1);
    color: var(--blue);
}

.st-completed {
    background: rgba(22, 163, 74, .1);
    color: #15803d;
}

.st-cancelled {
    background: rgba(239, 68, 68, .1);
    color: #dc2626;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: var(--text3);
}

.no-results .ei {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.cinfo-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.cinfo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cinfo-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text3);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.cinfo-val {
    font-size: 15px;
    color: var(--navy);
    font-weight: 600;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.hours-table td {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.hours-table td:first-child {
    color: var(--text2);
}

.hours-table td:last-child {
    font-weight: 600;
    color: var(--navy);
    text-align: right;
}

.map-placeholder {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    background: linear-gradient(135deg, #e8f0fe, #fce8d5);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text3);
    flex-direction: column;
    gap: 8px;
}

footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .7);
    padding: 48px 5% 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo span {
    color: var(--orange);
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .18s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--orange);
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: var(--navy);
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: var(--shlg);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(80px);
    opacity: 0;
    transition: all .35s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 20px;
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:900px) {
    .hero-stats {
        display: none
    }

    .services-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-wrap,
    .booking-wrap,
    .contact-grid {
        grid-template-columns: 1fr
    }

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

    nav {
        padding: 0 4%
    }

    .nav-links {
        display: none
    }
}

@media(max-width:600px) {

    .services-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
    }
}