/* =============================================================
   SHASTRI LEGAL - Advocates & Solicitors | Premium Stylesheet
   ============================================================= */

/* ---- CSS Variables ---- */
:root {
    --navy: #0b1d35;
    --navy-dark: #06111f;
    --navy-light: #132d4f;
    --gold: #c5a047;
    --gold-light: #d9bb6e;
    --gold-dark: #a68736;
    --cream: #f7f3eb;
    --warm: #faf8f4;
    --white: #ffffff;
    --dark: #111111;
    --body: #555555;
    --muted: #999999;
    --border: #e8e3d9;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --shadow-gold: 0 12px 30px rgba(197,160,71,.3);
    --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    font-family: var(--sans);
    color: var(--body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
::selection { background: var(--gold); color: var(--navy); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-size: .95rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--sans);
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.15);
    transform: translateX(-100%);
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.btn:hover::before {
    transform: translateX(100%);
}
.btn.gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn.gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.btn.outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn.outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}
.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---- Tag Label ---- */
.tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    position: relative;
    padding-left: 50px;
}
.tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 2px;
    background: var(--gold);
}
.tag.light {
    color: var(--gold-light);
}
.tag.light::before {
    background: var(--gold-light);
}

/* ---- Section Headers ---- */
.section-head {
    margin-bottom: 60px;
}
.section-head.center {
    text-align: center;
}
.section-head.center .tag {
    padding-left: 0;
}
.section-head.center .tag::before {
    display: none;
}
.section-head h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-head h2 em {
    color: var(--gold);
    font-style: italic;
}
.section-head p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}
.section-head.light h2 {
    color: var(--white);
}
.section-head.light h2 em {
    color: var(--gold-light);
}
.section-head.light p {
    color: rgba(255,255,255,.6);
}


/* ==========================================================
   PRELOADER
   ========================================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    text-align: center;
}
.preloader-logo {
    width: 100px;
    height: auto;
    margin: 0 auto 30px;
    animation: preloaderPulse 1.4s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { opacity: .6; transform: scale(.95); }
    50% { opacity: 1; transform: scale(1); }
}
.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,.08);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    animation: preloaderFill 1.8s ease-in-out forwards;
}
@keyframes preloaderFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}


/* ==========================================================
   HEADER
   ========================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* -- Top Bar -- */
.header-top {
    background: var(--navy-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: transform .4s ease, margin-bottom .4s ease;
}
.header-top.hidden {
    transform: translateY(-100%);
    margin-bottom: -42px;
}
.ht-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    flex-wrap: wrap;
    gap: 8px;
}
.ht-left,
.ht-right {
    display: flex;
    gap: 24px;
    align-items: center;
}
.header-top a,
.header-top span {
    display: flex;
    gap: 6px;
    align-items: center;
    color: rgba(255,255,255,.6);
}
.header-top a:hover {
    color: var(--gold);
}
.header-top i {
    color: var(--gold);
    font-size: .7rem;
}

/* -- Navigation Bar -- */
.header-nav {
    background: rgba(11,29,53,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.header.scrolled .header-nav {
    background: rgba(6,17,31,.97);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.header.scrolled .header-top {
    transform: translateY(-100%);
    margin-bottom: -42px;
}
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 58px;
    transition: height .3s ease;
}
.header.scrolled .logo img {
    height: 46px;
}

/* -- Nav Links -- */
#mainNav ul {
    display: flex;
    gap: 6px;
}
#mainNav a {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    padding: 10px 16px;
    border-radius: 4px;
    position: relative;
}
#mainNav a:hover,
#mainNav a.active {
    color: var(--gold);
}
#mainNav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s ease;
    transform: translateX(-50%);
}
#mainNav a:hover::after,
#mainNav a.active::after {
    width: 50%;
}

/* -- Nav CTA Button -- */
.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: .85rem;
    letter-spacing: .5px;
    transition: var(--transition);
}
.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* -- Hamburger -- */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ==========================================================
   HERO - Cinematic Full-Screen
   ========================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #050a12;
}

/* -- Background Image Crossfade -- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 8s ease;
    transform: scale(1.05);
}
.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -- Overlay -- */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(5,10,18,.5) 0%, rgba(5,10,18,.35) 40%, rgba(5,10,18,.7) 100%),
        linear-gradient(to right, rgba(5,10,18,.6) 0%, transparent 60%);
}

/* -- Film Grain -- */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
}

/* -- Animated Gold Glow Orbs -- */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}
.hero-glow-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(197,160,71,.14) 0%, transparent 70%);
    top: -8%;
    right: 15%;
    animation: glowDrift 10s ease-in-out infinite;
}
.hero-glow-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(197,160,71,.08) 0%, transparent 70%);
    bottom: 5%;
    left: 5%;
    animation: glowDrift 10s ease-in-out infinite 5s;
}
@keyframes glowDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(25px, -20px) scale(1.08); }
    50% { transform: translate(-15px, 20px) scale(.95); }
    75% { transform: translate(10px, -10px) scale(1.03); }
}

/* -- Particles Canvas -- */
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

/* -- Content -- */
.hero-wrap {
    position: relative;
    z-index: 5;
    padding-top: 100px;
    padding-bottom: 140px;
}
.hero-inner {
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
}

/* -- Logo Badge -- */
.hero-badge {
    width: 90px;
    height: 90px;
    margin: 0 auto 32px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(197,160,71,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: badgeGlow 3s ease-in-out infinite;
}
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197,160,71,.12), 0 0 30px rgba(197,160,71,.05); }
    50% { box-shadow: 0 0 0 12px rgba(197,160,71,0), 0 0 60px rgba(197,160,71,.1); }
}
.hero-badge img {
    width: 55px;
    height: auto;
}

/* -- Tagline -- */
.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: .76rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.hero-tagline-line {
    display: inline-block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* -- Headline -- */
.hero-headline {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -.02em;
}
.hw {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    margin-right: 12px;
}
.hw-gold {
    color: var(--gold-light);
    font-style: italic;
    text-shadow: 0 0 80px rgba(197,160,71,.25);
}

/* -- Sub Text -- */
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.5);
    line-height: 1.85;
    max-width: 600px;
    margin: 0 auto 42px;
}

/* -- Action Buttons -- */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    font-size: .95rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    letter-spacing: .5px;
    font-family: var(--sans);
    cursor: pointer;
}
.hero-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    transition: width .5s ease, height .5s ease, top .5s ease, left .5s ease;
    transform: translate(-50%, -50%);
}
.hero-btn:hover::after {
    width: 300px;
    height: 300px;
}
.hero-btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border: none;
    box-shadow: 0 8px 30px rgba(197,160,71,.25);
}
.hero-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(197,160,71,.4);
}
.hero-btn-gold i {
    transition: transform .3s ease;
    position: relative;
    z-index: 1;
}
.hero-btn-gold span {
    position: relative;
    z-index: 1;
}
.hero-btn-gold:hover i {
    transform: translateX(4px);
}
.hero-btn-outline {
    background: rgba(255,255,255,.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-btn-outline span,
.hero-btn-outline i {
    position: relative;
    z-index: 1;
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* -- Bottom Glass Stats -- */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(11,29,53,.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(197,160,71,.12);
    padding: 22px 0;
}
.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.hero-stat-item {
    text-align: center;
}
.hero-stat-item strong {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-suffix {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}
.hero-stat-item p {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}
.hero-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.08);
}

/* -- Scroll Line Indicator -- */
.hero-scroll {
    position: absolute;
    bottom: 80px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll span {
    font-size: .6rem;
    color: rgba(255,255,255,.25);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    writing-mode: vertical-rl;
}

/* -- Reveal animation helper -- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}


/* ==========================================================
   ABOUT
   ========================================================== */
.about {
    padding: 120px 0;
    background: var(--warm);
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* -- About Images -- */
.about-imgs {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}
.about-img1 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img1 img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform .6s ease;
}
.about-img1:hover img {
    transform: scale(1.03);
}
.about-img2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid var(--warm);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.about-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(197,160,71,.3);
    z-index: 2;
}
.about-badge b {
    font-family: var(--serif);
    font-size: 2.2rem;
    display: block;
    line-height: 1;
}
.about-badge span {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -- About Text -- */
.about-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 20px;
}
.about-text h2 em {
    color: var(--gold);
    font-style: italic;
}
.about-text .lead {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-text > p {
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 36px;
}
.about-checks div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark);
}
.about-checks i {
    color: var(--gold);
    font-size: .85rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(197,160,71,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* ==========================================================
   SERVICES
   ========================================================== */
.services {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.srv-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.srv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1), 0 0 0 1px rgba(197,160,71,.2);
}

/* -- Service Card Image -- */
.srv-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.srv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.srv-card:hover .srv-img img {
    transform: scale(1.08);
}
.srv-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,29,53,.5) 0%, transparent 60%);
    transition: opacity .4s ease;
}
.srv-card:hover .srv-img-overlay {
    opacity: .7;
}

/* -- Service Card Body -- */
.srv-body {
    padding: 28px 28px 30px;
    position: relative;
}
.srv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -28px;
    left: 28px;
    box-shadow: 0 8px 20px rgba(197,160,71,.35);
    transition: var(--transition);
}
.srv-icon i {
    font-size: 1.3rem;
    color: var(--white);
}
.srv-card:hover .srv-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(197,160,71,.45);
}
.srv-exclusive {
    font-size: 0.7rem;
    font-family: var(--sans);
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.srv-body h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
    margin-top: 18px;
    line-height: 1.35;
}
.srv-body p {
    font-size: .88rem;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 16px;
}
.srv-body a {
    font-size: .85rem;
    color: var(--gold-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.srv-body a:hover {
    color: var(--gold);
    gap: 12px;
}
.srv-body a i {
    font-size: .75rem;
    transition: transform .3s ease;
}
.srv-body a:hover i {
    transform: translateX(4px);
}


/* ==========================================================
   MARQUEE (Courts)
   ========================================================== */
.marquee {
    background: var(--gold);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}
.marquee-inner {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marqueeScroll 35s linear infinite;
}
.marquee-inner span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
}
.marquee-inner i {
    font-size: .65rem;
    opacity: .6;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee:hover .marquee-inner {
    animation-play-state: paused;
}


/* ==========================================================
   TEAM / FOUNDER
   ========================================================== */
.team {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}
.team-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

/* -- Team Photo -- */
.team-photo-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.team-photo-inner img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
}
.team-photo-frame {
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(197,160,71,.4);
    border-radius: 14px;
    pointer-events: none;
    transition: all .4s ease;
}
.team-photo-inner:hover .team-photo-frame {
    inset: 6px;
    border-color: var(--gold);
}

/* -- Team Socials -- */
.team-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}
.team-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}
.team-socials a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* -- Team Info -- */
.team-info h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 10px;
}
.team-info h2 em {
    color: var(--gold);
    font-style: italic;
}
.team-info .role {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.team-info > p {
    font-size: .95rem;
    line-height: 1.85;
    margin-bottom: 14px;
}
.team-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.team-cols h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.team-cols h4 i {
    color: var(--gold);
}
.team-cols ul li {
    font-size: .88rem;
    padding: 5px 0 5px 18px;
    position: relative;
    color: var(--body);
}
.team-cols ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}


/* ==========================================================
   EMPANELMENTS
   ========================================================== */
.empanel {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.empanel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.empanel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.empanel-ov {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(6,17,31,.9);
}
.empanel .container {
    position: relative;
    z-index: 2;
}
.emp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.emp-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    backdrop-filter: blur(10px);
}
.emp-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(197,160,71,.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3), 0 0 30px rgba(197,160,71,.08);
}
.emp-yr {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
}
.emp-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    transition: transform .3s ease;
}
.emp-card:hover i {
    transform: scale(1.15);
}
.emp-card h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.35;
}
.emp-card p {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}


/* ==========================================================
   CLIENTS
   ========================================================== */
.clients {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}
.cl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.cl-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.cl-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.cl-item i {
    font-size: 1.3rem;
    color: var(--gold);
    min-width: 28px;
    text-align: center;
}
.cl-item span {
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark);
}


/* ==========================================================
   CTA
   ========================================================== */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-ov {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(6,17,31,.85);
}
.cta .container {
    position: relative;
    z-index: 2;
}
.cta h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta > .container > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.6);
    max-width: 550px;
    margin: 0 auto 32px;
}
.cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.6);
    max-width: 550px;
    margin: 0 auto 32px;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ==========================================================
   CONTACT
   ========================================================== */
.contact {
    padding: 120px 0;
    background: var(--warm);
    overflow: hidden;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* -- Contact Info Cards -- */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ci {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all .35s ease;
}
.ci:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(6px);
}
.ci-ic {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition);
}
.ci:hover .ci-ic {
    background: var(--gold);
    color: var(--navy);
}
.ci h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}
.ci p {
    font-size: .88rem;
    color: var(--body);
    line-height: 1.5;
}
.ci a {
    color: var(--gold-dark);
    font-weight: 500;
}
.ci a:hover {
    color: var(--gold);
}

/* -- Contact Form -- */
.contact-right {
    background: var(--white);
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 10px 40px rgba(0,0,0,.06);
    border: 1px solid var(--border);
}
.cf h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 28px;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cf input,
.cf select,
.cf textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .92rem;
    font-family: var(--sans);
    color: var(--dark);
    background: var(--warm);
    margin-bottom: 16px;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.cf select {
    cursor: pointer;
    color: var(--muted);
}
.cf select:valid {
    color: var(--dark);
}
.cf input:focus,
.cf select:focus,
.cf textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,160,71,.12);
    background: var(--white);
}
.cf textarea {
    resize: vertical;
    min-height: 100px;
}
.cf-note {
    text-align: center;
    font-size: .78rem;
    color: var(--muted);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.cf-note i {
    color: var(--gold);
}

/* -- Map -- */
.map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map iframe {
    display: block;
}


/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
    border-top: 3px solid var(--gold);
}
.f-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.f-logo {
    width: 70px;
    margin-bottom: 14px;
}
.f-col h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
}
.f-tagline {
    font-size: .8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 500;
}
.f-col > p:last-of-type {
    font-size: .88rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
}
.f-col h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}
.f-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.f-col ul li {
    margin-bottom: 10px;
}
.f-col ul li a {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    display: inline-block;
    transition: var(--transition);
}
.f-col ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
}
.f-contact li {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.f-contact i {
    color: var(--gold);
    margin-top: 4px;
    min-width: 16px;
}

/* -- Footer Disclaimer -- */
.f-disc {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.f-disc p {
    font-size: .76rem;
    color: rgba(255,255,255,.3);
    text-align: center;
    line-height: 1.7;
}

/* -- Footer Bottom -- */
.f-bottom {
    padding: 20px 0;
    text-align: center;
}
.f-bottom p {
    font-size: .85rem;
    color: rgba(255,255,255,.35);
}


/* ==========================================================
   FLOATING BUTTONS
   ========================================================== */

/* -- Back to Top -- */
.btt {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
    z-index: 990;
    border: 2px solid var(--gold);
}
.btt.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.btt:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
}

/* -- WhatsApp Button -- */
.wab {
    position: fixed;
    bottom: 96px;
    right: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 990;
    transition: var(--transition);
    animation: wabPulse 2s infinite;
}
.wab:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes wabPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
    70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1200px) {
    .srv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    #mainNav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 90px 30px 30px;
        transition: right .4s cubic-bezier(.4,0,.2,1);
        box-shadow: -10px 0 30px rgba(0,0,0,.4);
        z-index: 1001;
        overflow-y: auto;
    }
    #mainNav.active {
        right: 0;
    }
    #mainNav ul {
        flex-direction: column;
        gap: 4px;
    }
    #mainNav a {
        font-size: 1rem;
        padding: 14px 16px;
        width: 100%;
        display: block;
    }
    .nav-cta {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-photo-inner img {
        height: 400px;
    }
    .f-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .hero-stats-row {
        gap: 30px;
    }
    .hero-headline {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .emp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .cf-row {
        grid-template-columns: 1fr;
    }
    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    .hero-sub {
        font-size: .95rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats-row {
        gap: 20px;
        flex-wrap: wrap;
    }
    .hero-stat-sep {
        display: none;
    }
    .hero-scroll {
        display: none;
    }
    .hero-glow {
        display: none;
    }
    .hero-badge {
        width: 72px;
        height: 72px;
    }
    .hero-badge img {
        width: 42px;
    }
    .hero-tagline {
        font-size: .65rem;
        letter-spacing: 3px;
    }
    .hero-tagline-line {
        width: 25px;
    }
    .team-cols {
        grid-template-columns: 1fr;
    }
    .about-img2 {
        right: 10px;
        bottom: -20px;
        width: 160px;
        height: 160px;
    }
    .about-badge {
        right: auto;
        left: -10px;
        top: auto;
        bottom: -20px;
    }
    .about-checks {
        grid-template-columns: 1fr;
    }
    .contact-right {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .srv-grid {
        grid-template-columns: 1fr;
    }
    .emp-grid {
        grid-template-columns: 1fr;
    }
    .cl-grid {
        grid-template-columns: 1fr;
    }
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .f-grid {
        grid-template-columns: 1fr;
    }
    .wab,
    .btt {
        right: 16px;
    }
    .wab {
        bottom: 80px;
    }
    .btt {
        bottom: 20px;
    }
    .hero-stats-row {
        gap: 15px;
    }
    .hero-stat-item strong {
        font-size: 1.4rem;
    }
    .hero-stat-item p {
        font-size: .62rem;
        letter-spacing: 1px;
    }
    .hero-stats-bar {
        padding: 14px 0;
    }
    .hero-stats-bar {
        padding: 14px 0;
    }
}
