/* =============================================
   BRIGHT LEGAL — Premium Legal Website
   Design System + Full Styles
   ============================================= */

/* ── CSS Custom Properties ── */
:root {
    /* Colors */
    --navy: #0A1628;
    --navy-light: #132040;
    --navy-mid: #0D1B30;
    --gold: #C9A84C;
    --gold-light: #E2C878;
    --gold-dark: #A8893D;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --slate: #8B95A5;
    --off-white: #F0EDE7;
    --white: #FFFFFF;
    --border: rgba(201, 168, 76, 0.12);
    --card-bg: rgba(19, 32, 64, 0.6);
    --card-border: rgba(201, 168, 76, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy);
    color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--navy);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section--dark {
    background: var(--navy-mid);
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Shared UI ── */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gold-text {
    color: var(--gold);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 620px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
}

.btn--gold:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-glow);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 0.95rem;
}

.btn--full {
    width: 100%;
}

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════
   NAVIGATION
   ════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 1001;
    transition: transform 0.4s var(--ease-out);
}

.navbar__logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s var(--ease-out);
}

.navbar.scrolled .navbar__logo img {
    height: 60px;
}

.navbar__logo:hover {
    transform: scale(1.03);
}

.logo-bright {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    transition: font-size 0.4s var(--ease-out);
}

.logo-legal {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    font-style: italic;
    transition: font-size 0.4s var(--ease-out);
}

.logo-text-wrapper {
    display: flex;
    gap: 6px;
    margin-left: 2px;
}

.navbar.scrolled .logo-bright,
.navbar.scrolled .logo-legal {
    font-size: 1.3rem;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.navbar__links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--off-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.navbar__links a:hover,
.navbar__links a.active {
    color: var(--gold);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
    width: 100%;
}

.navbar__cta {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.navbar__hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__content {
    text-align: center;
}

.mobile-menu__links {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-menu__links li {
    margin-bottom: 8px;
}

.mobile-menu__links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
    display: inline-block;
    padding: 8px 0;
}

.mobile-menu__links a:hover {
    color: var(--gold);
}

.mobile-menu__cta {
    margin-bottom: 40px;
}

.mobile-menu__info {
    color: var(--slate);
    font-size: 0.9rem;
}

.mobile-menu__info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.mobile-menu__info svg {
    color: var(--gold);
}

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(10, 22, 40, 0.3) 0%,
            rgba(19, 32, 64, 0.2) 50%,
            rgba(10, 22, 40, 0.4) 100%),
        url('images/hero-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
    background-size: cover;
    background-position: right;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 22, 40, 0.5) 0%,
            rgba(10, 22, 40, 0.65) 40%,
            rgba(10, 22, 40, 0.92) 100%);
    z-index: 1;
}

.hero__overlay {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.8) 40%, rgba(10, 22, 40, 1.92) 100%) !important;
}

/* Decorative geometric elements */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: 50%;
    z-index: 2;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -8%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 168, 76, 0.04);
    transform: rotate(45deg);
    z-index: 2;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero__content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.hero__text {
    max-width: 900px;
    /* Increased from 680px */
}

.hero__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 2px;
    margin-bottom: 32px;
    background: rgba(201, 168, 76, 0.05);
}

.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 0 40px 60px;
    border-left: 1px solid var(--border);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    display: block;
}

.hero__stat-divider {
    width: 48px;
    height: 1px;
    background: var(--border);
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ════════════════════════════════
   CLIENTS
   ════════════════════════════════ */
.clients__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.clients__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 16/9;
    transition: all 0.4s var(--ease-out);
    cursor: default;
}

.clients__logo img {
    max-width: 120px;
    max-height: 65px;
    opacity: 1;
    filter: none;
    transition: all 0.4s var(--ease-out);
    object-fit: contain;
}

.clients__logo:hover {

    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.clients__logo:hover img {
    transform: scale(1.05);
}


/* ════════════════════════════════
   ABOUT
   ════════════════════════════════ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__text {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about__values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--gold);
    background: var(--gold-glow);
}

.about__value h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about__value p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}

/* About visual side */
.about__visual {
    display: flex;
    justify-content: center;
}

.about__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.about__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: 4px;
    opacity: 0.2;
    transition: all 0.4s var(--ease-out);
}

.about__image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: url('images/about-office.png') center/cover no-repeat;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 1px solid var(--card-border);
    transition: all 0.4s var(--ease-out);
}

.about__image-wrapper:hover .about__image-accent {
    top: -24px;
    right: -24px;
    opacity: 0.5;
}

.about__image-wrapper:hover .about__image-box {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.8);
    border-color: rgba(201, 168, 76, 0.3);
}

.about__image-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 40px,
            rgba(201, 168, 76, 0.03) 40px,
            rgba(201, 168, 76, 0.03) 41px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 40px,
            rgba(201, 168, 76, 0.03) 40px,
            rgba(201, 168, 76, 0.03) 41px);
}

/* Scales of justice SVG decoration */
.about__image-box::after {
    content: '⚖';
    font-size: 8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    color: var(--gold);
}

.about__experience-badge {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 24px 32px;
    text-align: center;
    margin: 24px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.about__experience-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about__experience-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* ════════════════════════════════
   SERVICES
   ════════════════════════════════ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 40px 32px;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(19, 32, 64, 0.8);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card__list {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card__list li {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.service-card__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
    font-size: 0.9rem;
}

.service-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card__link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-card__link span {
    transform: translateX(4px);
}

/* ════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════ */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us__card {
    padding: 40px 28px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.why-us__card:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
    transform: translateY(-4px);
}

.why-us__card-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.why-us__card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-us__card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.8;
}

/* ════════════════════════════════
   TEAM
   ════════════════════════════════ */
.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 168, 76, 0.2);
}

.team-card__image {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profile silhouette placeholder */
.team-card__image::before {
    content: '';
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 2px solid rgba(201, 168, 76, 0.12);
}

.team-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 100px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: 80px 80px 0 0;
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-card__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}

.team-card__social a:hover {
    background: var(--gold);
    color: var(--navy);
}

.team-card__info {
    padding: 28px;
}

.team-card__info h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card__info>span {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.team-card__info p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.7;
}

/* ════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════ */
.testimonials__slider {
    position: relative;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--navy-light);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    text-align: center;
}

.testimonial-card__stars {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.testimonial-card__quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 32px;
    position: relative;
}

.testimonial-card__quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-card__author strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.testimonial-card__author span {
    display: block;
    color: var(--slate);
    font-size: 0.85rem;
}

.testimonial-card__author div {
    text-align: left;
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.testimonials__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ════════════════════════════════
   CTA BANNER
   ════════════════════════════════ */
.cta-banner {
    padding: 0;
    position: relative;
}

.cta-banner__inner {
    background:
        linear-gradient(135deg,
            rgba(201, 168, 76, 0.08) 0%,
            rgba(201, 168, 76, 0.03) 50%,
            rgba(201, 168, 76, 0.08) 100%);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.cta-banner__inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
}

.cta-banner__inner p {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
    line-height: 1.8;
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ════════════════════════════════
   CONTACT
   ════════════════════════════════ */
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: stretch;
}

.contact__form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--off-white);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B95A5' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--slate);
    text-align: center;
    margin-top: 16px;
    opacity: 0.7;
}

/* Contact info cards */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__info-card {
    flex: 1;
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    transition: all 0.4s var(--ease-out);
}

.contact__info-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateX(4px);
}

.contact__info-icon {
    color: var(--gold);
    margin-bottom: 12px;
}

.contact__info-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact__info-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 4px;
}

.contact__info-card a {
    color: var(--slate);
    transition: color 0.3s ease;
}

.contact__info-card a:hover {
    color: var(--gold);
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--slate);
    transition: all 0.3s ease;
}

.footer__social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.footer__links-group h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links-group ul {
    list-style: none;
}

.footer__links-group li {
    margin-bottom: 12px;
}

.footer__links-group a {
    font-size: 0.9rem;
    color: var(--slate);
    transition: all 0.3s ease;
}

.footer__links-group a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer__contact-list li {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--slate);
    opacity: 0.7;
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team__grid .team-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .navbar__links,
    .navbar__cta {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .hero__content {
        padding-top: 120px;
        text-align: center;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__text {
        max-width: 100%;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
        padding: 32px 0;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .hero__stat-divider {
        width: 1px;
        height: 48px;
    }

    .hero__stat-number {
        font-size: 2rem;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__visual {
        order: -1;
    }

    .about__image-wrapper {
        max-width: 320px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }

    .team__grid .team-card:last-child {
        max-width: 100%;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-card__quote {
        font-size: 1.1rem;
    }

    .cta-banner__inner {
        padding: 48px 24px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__form {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero__stat-divider {
        width: 48px;
        height: 1px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .service-card {
        padding: 28px 24px;
    }

    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner__actions .btn {
        width: 100%;
    }
}