/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
    --dark: #0c111b;
    --dark-2: #141c2b;
    --dark-3: #1b2537;
    --slate: #64748b;
    --slate-lt: #94a3b8;
    --border: #e2e8f0;
    --border-dk: rgba(255, 255, 255, 0.08);
    --surface: #f8fafc;
    --surface-2: #f1f5f9;
    --white: #ffffff;
    --gold: #c8a240;
    --gold-h: #dbb44e;
    --gold-bg: rgba(200, 162, 64, 0.07);
    --gold-bd: rgba(200, 162, 64, 0.18);
    --green: #22c55e;
    --red: #ef4444;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Outfit', system-ui, -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
}

body {
    font-family: var(--sans);
    color: var(--slate);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    color: var(--dark);
    font-weight: 600;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background-color: var(--gold);
    color: var(--white);
}

/* =============================================
   NAVBAR
============================================= */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    padding: 0.9rem 0;
    transition: all 0.35s var(--ease);
}

.top-bar.pinned {
    padding: 0.6rem 0;
    border-bottom-color: var(--border);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    width: 36px;
    height: 36px;
    background-color: var(--dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.brand-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1.2;
}

.brand-phone {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.desk-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.desk-nav a {
    color: var(--slate);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 6px;
    transition: all 0.25s var(--ease);
}

.desk-nav a:hover,
.desk-nav a.on {
    color: var(--dark);
    background-color: var(--surface);
}

.desk-nav .cta-link {
    background-color: var(--dark);
    color: var(--white);
    padding: 8px 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-left: 8px;
}

.desk-nav .cta-link:hover {
    background-color: var(--dark-2);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(12, 17, 27, 0.15);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
    padding: 6px;
    line-height: 1;
}

/* Mobile Nav */
.mob-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
}

.mob-nav.open {
    transform: translateX(0);
}

.mob-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--dark);
    cursor: pointer;
    line-height: 1;
}

.mob-nav a {
    display: block;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
    transition: color 0.2s var(--ease);
}

.mob-nav a:hover {
    color: var(--gold);
}

/* Mobile Sticky Call */
.mobile-call-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background-color: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.mobile-call-btn:hover {
    background-color: var(--dark-2);
    color: var(--white);
}

/* =============================================
   HERO
============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 130px 0 90px;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 450px;
    height: 450px;
    top: -120px;
    right: -80px;
    background-color: rgba(200, 162, 64, 0.06);
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    background-color: rgba(100, 116, 139, 0.05);
}

.hero-body {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--gold-bg);
    border: 1px solid var(--gold-bd);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    white-space: normal;
}

.hero-bar {
    width: 45px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 1.3rem;
}

.hero-desc {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.hero-qual {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    font-weight: 400;
    padding: 6px 0;
    margin-bottom: 1rem;
}

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

.hero-courts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}

.hero-courts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
}

.hero-courts span i {
    color: var(--gold);
    font-size: 0.7rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 3rem;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark);
    padding: 13px 32px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.btn-gold:hover {
    background-color: var(--gold-h);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 162, 64, 0.25);
}

.btn-outline-hero {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 13px 32px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}

.btn-outline-hero:hover {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-num {
    font-family: var(--sans);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.stat-num span {
    color: var(--gold);
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Photo */
.hero-photo-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.photo-border {
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: 10px;
    left: 10px;
    border: 1.5px solid var(--gold-bd);
    border-radius: 12px;
    z-index: 0;
}

.photo-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.photo-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background-color: var(--gold);
    color: var(--dark);
    padding: 14px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(200, 162, 64, 0.3);
    z-index: 3;
}

.photo-badge .pb-num {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.photo-badge .pb-txt {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* =============================================
   SECTIONS COMMON
============================================= */
.sec {
    padding: 90px 0;
}

.sec-alt {
    background-color: var(--surface);
}

.sec-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}

.sec-eyebrow::before,
.sec-eyebrow::after {
    content: '';
    width: 18px;
    height: 1.5px;
    background-color: var(--gold);
    display: inline-block;
}

.sec-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 0.8rem;
}

.sec-desc {
    font-size: 1rem;
    color: var(--slate-lt);
    max-width: 520px;
    margin: 0 auto;
}

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

/* =============================================
   ABOUT
============================================= */
.about-img-box {
    position: relative;
}

.about-img-box::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -14px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold-bd);
    border-radius: 12px;
    pointer-events: none;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.about-body {
    padding-left: 2rem;
}

.about-body h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 0.3rem;
}

.about-role {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.3rem;
}

.about-role::before {
    content: '';
    width: 22px;
    height: 1.5px;
    background-color: var(--gold);
    display: inline-block;
}

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

.about-divider {
    width: 40px;
    height: 2px;
    background-color: var(--gold-bd);
    margin: 1.5rem 0;
}

.cred-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    font-size: 0.92rem;
    color: var(--dark-2);
    border-bottom: 1px solid var(--border);
}

.cred-list li:last-child {
    border-bottom: none;
}

.cred-list li i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.exp-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--dark);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 10px;
    margin-top: 0.5rem;
}

.exp-tag .et-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--sans);
    line-height: 1;
}

.exp-tag .et-txt {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* =============================================
   SERVICES
============================================= */
.svc-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 26px;
    height: 100%;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dark));
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.svc-card:hover::after {
    opacity: 1;
}

.svc-icon-box {
    width: 52px;
    height: 52px;
    background-color: var(--gold-bg);
    border: 1px solid var(--gold-bd);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    transition: all 0.3s var(--ease);
}

.svc-card:hover .svc-icon-box {
    background-color: var(--dark);
    border-color: var(--dark);
}

.svc-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.svc-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--slate-lt);
    margin-bottom: 1rem;
}

.svc-list li {
    padding: 5px 0;
    font-size: 0.83rem;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--surface-2);
    transition: all 0.2s var(--ease);
}

.svc-list li:last-child {
    border-bottom: none;
}

.svc-list li:hover {
    color: var(--dark);
    padding-left: 3px;
}

.diamond-dot {
    width: 4px;
    height: 4px;
    background-color: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    display: inline-block;
}

.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    transition: all 0.25s var(--ease);
}

.svc-cta:hover {
    color: var(--dark);
    gap: 10px;
}

/* =============================================
   COURTS
============================================= */
.court-pill {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    transition: all 0.3s var(--ease);
}

.court-pill:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.court-pill:hover .cp-ico {
    background-color: var(--dark);
    color: var(--gold);
}

.cp-ico {
    width: 38px;
    height: 38px;
    background-color: var(--surface-2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--dark);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.court-pill h5 {
    font-size: 0.85rem;
    font-family: var(--sans);
    font-weight: 600;
    color: var(--dark-2);
    margin: 0;
    line-height: 1.4;
}

/* =============================================
   REVIEWS
============================================= */
.rev-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 34px 28px;
    height: 100%;
    transition: all 0.35s var(--ease);
}

.rev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

.rev-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
}

.rev-case-type {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.rev-text {
    font-size: 0.95rem;
    line-height: 1.85;
    font-style: italic;
    color: var(--slate);
    margin-bottom: 1.3rem;
    padding-left: 14px;
    border-left: 2px solid var(--gold-bd);
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid var(--surface-2);
}

.rev-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.rev-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
}

.rev-role {
    font-size: 0.78rem;
    color: var(--slate-lt);
}

/* Review Form */
.review-form-box {
    background-color: var(--surface);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.review-form-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.review-form-box .rf-sub {
    color: var(--slate-lt);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

/* =============================================
   CONTACT
============================================= */
.ct-form-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.ct-form-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.ct-form-box .ct-sub {
    color: var(--slate-lt);
    font-size: 0.88rem;
    margin-bottom: 1.8rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.3rem;
}

.form-control,
.form-select {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.92rem;
    font-family: var(--sans);
    transition: all 0.25s var(--ease);
    background-color: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(12, 17, 27, 0.05);
    outline: none;
}

.form-control.is-invalid { border-color: var(--red); }
.form-control.is-valid { border-color: var(--green); }
.invalid-feedback { font-size: 0.78rem; }

.btn-form {
    background-color: var(--dark);
    color: var(--white);
    padding: 13px 36px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.btn-form:hover:not(:disabled) {
    background-color: var(--dark-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 17, 27, 0.2);
    color: var(--white);
}

.btn-form:disabled { opacity: 0.6; cursor: not-allowed; }

/* Contact Info Card */
.ct-info-box {
    background-color: var(--dark);
    padding: 40px 34px;
    border-radius: 12px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ct-info-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--border-dk);
    border-radius: 50%;
    pointer-events: none;
}

.ct-info-box h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.2rem; }
.ct-info-sub { color: rgba(255,255,255,0.35); font-size: 0.88rem; margin-bottom: 2.2rem; }

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}

.info-ico {
    width: 42px;
    height: 42px;
    background-color: var(--gold-bg);
    border: 1px solid var(--gold-bd);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.info-row:hover .info-ico { background-color: var(--gold); color: var(--dark); }

.info-label {
    font-size: 0.68rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.info-val {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.info-val a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.info-val a:hover { color: var(--gold); }

.social-row {
    display: flex;
    gap: 8px;
    margin-top: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dk);
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}

.social-row a:hover {
    background-color: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Map */
.map-wrap {
    margin-top: 3.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* =============================================
   FLOATING BUTTONS
============================================= */
.float-area {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.wa-link {
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
    transition: all 0.3s var(--ease);
    position: relative;
}

.wa-link:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37,211,102,0.4);
    color: var(--white);
}

.wa-link::before {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.2;
    animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0; }
}

.top-btn {
    width: 40px;
    height: 40px;
    background-color: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s var(--ease);
}

.top-btn:hover { transform: translateY(-3px); }
.top-btn.visible { display: flex; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
    background-color: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 50px 0 18px;
}

.site-footer h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-family: var(--serif);
}

.site-footer p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
}

.ft-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.7rem;
}

.ft-mark {
    width: 30px; height: 30px;
    background-color: rgba(200,162,64,0.1);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
}

.ft-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.ft-qual {
    color: rgba(255,255,255,0.25);
    font-size: 0.78rem;
}

.site-footer ul li { margin-bottom: 0.5rem; }

.site-footer ul a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    transition: all 0.25s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer ul a i { font-size: 0.5rem; color: var(--gold); }
.site-footer ul a:hover { color: var(--white); padding-left: 3px; }

.ft-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-contact-item i { color: var(--gold); }
.ft-contact-item a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.ft-contact-item a:hover { color: var(--gold); }

.ft-disclaimer {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 2rem;
}

.ft-disclaimer p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
    line-height: 1.7;
}

.ft-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    text-align: center;
}

.ft-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.ft-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.ft-bottom a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
    .hamburger { display: block; }
    .sec { padding: 65px 0; }
    .hero { padding: 110px 0 60px; }
    .hero h1 { white-space: normal; }
    .about-img { height: 380px; margin-bottom: 2rem; }
    .about-img-box::after { display: none; }
    .about-body { padding-left: 0; }
}

@media (max-width: 767px) {
    .sec { padding: 45px 0; }
    .hero { padding: 95px 0 50px; }
    .hero h1 { white-space: normal; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-stats > div { display: flex; align-items: baseline; gap: 6px; }
    .btn-gold, .btn-outline-hero { width: 100%; justify-content: center; }
    .about-img { height: 260px; }
    .ct-form-box, .review-form-box { padding: 28px 20px; }
    .ct-info-box { padding: 28px 22px; }
    .map-wrap iframe { height: 240px; }
    .float-area { bottom: 70px; right: 16px; }
    .wa-link { width: 50px; height: 50px; font-size: 1.4rem; }
    .rev-card { padding: 26px 20px; }
    .hero-courts { gap: 8px; }
    .hero-courts span { font-size: 0.7rem; padding: 4px 10px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .wa-link::before, .pulse-dot { animation: none; }
    [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.btn-outline-reviews {
    background: transparent;
    border: 1.5px solid var(--gold-bd);
    color: var(--gold);
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.5px;
}

.btn-outline-reviews:hover {
    background-color: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* Main row layout only for items that have subpoints */
.svc-main {
    display: flex;
    align-items: center;
    gap: 9px;
}

/* Sublist styling */
.svc-sublist {
    list-style: none;
    margin-top: 6px;
    margin-left: 22px;
    padding-left: 12px;
    border-left: 1px solid var(--gold-bd);
}

.svc-sublist li {
    font-size: 0.78rem;
    color: var(--slate-lt);
    padding: 4px 0;
    border: none;
}

.svc-sublist li::before {
    content: "•";
    color: var(--gold);
    margin-right: 6px;
}