/* ============================================================
   Baillie Simpson Financial Services — Premium Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --navy: #1a2744;
    --navy-dark: #111b30;
    --navy-light: #243352;
    --teal: #2eb89a;
    --teal-dark: #25a088;
    --teal-light: #3dd4b2;
    --gold: #c9a84c;
    --gold-light: #dfc06e;
    --white: #ffffff;
    --off-white: #f8f9fb;
    --grey-100: #f0f2f5;
    --grey-200: #e2e5ea;
    --grey-300: #c8cdd5;
    --grey-500: #7a8494;
    --grey-700: #4a5568;
    --grey-900: #1a202c;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.10);
    --shadow-lg: 0 8px 40px rgba(26, 39, 68, 0.14);
    --shadow-xl: 0 16px 60px rgba(26, 39, 68, 0.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--teal-dark); }

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Password Gate Overlay --- */
.password-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.password-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.password-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: fadeUp 0.6s ease;
}

.password-box .pw-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.password-box .pw-logo span {
    color: var(--teal);
}

.password-box p {
    color: var(--grey-500);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.password-box input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    margin-bottom: 16px;
}

.password-box input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(46, 184, 154, 0.12);
}

.password-box button {
    width: 100%;
    padding: 14px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.password-box button:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.password-box .pw-error {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
}

/* Branding badge below password box */
.pw-badge {
    margin-top: 20px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    letter-spacing: 0.5px;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 39, 68, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(17, 27, 48, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

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

.nav-monogram {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}

.nav-brand-tagline {
    font-size: 0.7rem;
    color: var(--grey-300);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-phone:hover {
    background: var(--teal-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(46, 184, 154, 0.3);
}

.nav-phone svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Sections --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
    overflow: hidden;
    padding-top: 76px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 184, 154, 0.12);
    border: 1px solid rgba(46, 184, 154, 0.25);
    color: var(--teal-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero h1 .accent {
    color: var(--teal);
    display: block;
}

.hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero geometric shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    pointer-events: none;
}

.hero-shape-1 {
    width: 600px; height: 600px;
    background: var(--teal);
    top: -200px; right: -100px;
}

.hero-shape-2 {
    width: 400px; height: 400px;
    background: var(--gold);
    bottom: -150px; right: 20%;
}

.hero-shape-3 {
    width: 300px; height: 300px;
    background: var(--teal-light);
    top: 30%; right: 10%;
    opacity: 0.06;
}

/* Hero graphic (right side) */
.hero-graphic {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    z-index: 1;
}

.hero-chart-ring {
    position: absolute;
    border: 2px solid rgba(46, 184, 154, 0.15);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite;
}

.hero-chart-ring:nth-child(1) {
    width: 100%; height: 100%;
    top: 0; left: 0;
}

.hero-chart-ring:nth-child(2) {
    width: 75%; height: 75%;
    top: 12.5%; left: 12.5%;
    animation-delay: 0.5s;
    border-color: rgba(46, 184, 154, 0.2);
}

.hero-chart-ring:nth-child(3) {
    width: 50%; height: 50%;
    top: 25%; left: 25%;
    animation-delay: 1s;
    border-color: rgba(46, 184, 154, 0.25);
}

.hero-chart-center {
    position: absolute;
    width: 25%;
    height: 25%;
    top: 37.5%;
    left: 37.5%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(46, 184, 154, 0.3);
}

.hero-chart-center svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

/* Floating data points */
.hero-data-point {
    position: absolute;
    background: rgba(26, 39, 68, 0.9);
    border: 1px solid rgba(46, 184, 154, 0.3);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-data-point .dp-label {
    color: var(--grey-300);
    font-size: 0.65rem;
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
}

.hero-data-point .dp-value {
    color: var(--teal-light);
    font-size: 1rem;
    font-weight: 700;
}

.hero-data-point:nth-child(5) { top: 15%; right: 0; animation-delay: 0s; }
.hero-data-point:nth-child(6) { top: 60%; right: -5%; animation-delay: 1.5s; }
.hero-data-point:nth-child(7) { bottom: 15%; left: 10%; animation-delay: 3s; }

/* Page hero (inner pages) */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 184, 154, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.5);
}

.page-hero .breadcrumb span {
    color: var(--teal);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 184, 154, 0.25);
}

.btn-primary:hover {
    background: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 184, 154, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn svg { width: 18px; height: 18px; }

/* --- Sections --- */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

.section-title {
    margin-bottom: 18px;
}

.section-subtitle {
    color: var(--grey-500);
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(46, 184, 154, 0.1), rgba(46, 184, 154, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--teal);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    transform: scale(1.05);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--grey-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--teal-dark);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

/* --- Stats Row --- */
.stats-section {
    background: var(--navy);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232eb89a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- Process Section --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
    opacity: 0.2;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(46, 184, 154, 0.25);
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--grey-500);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* --- Testimonials --- */
.testimonials-section {
    background: linear-gradient(160deg, var(--navy-dark), var(--navy));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '\201C';
    position: absolute;
    font-family: var(--font-heading);
    font-size: 30rem;
    color: rgba(46, 184, 154, 0.03);
    top: -100px;
    left: 5%;
    line-height: 1;
    pointer-events: none;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-card blockquote {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-info span {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
}

/* --- CTA Banner --- */
.cta-section {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--teal);
}

.cta-content .btn-primary:hover {
    background: var(--off-white);
    color: var(--teal-dark);
    box-shadow: var(--shadow-lg);
}

/* --- Footer --- */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.6);
    padding: 70px 0 0;
}

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

.footer-brand .nav-monogram {
    margin-bottom: 16px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--teal);
    padding-left: 4px;
}

.footer-col .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-col .footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin-top: 0;
}

/* --- Service Detail Page --- */
.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: var(--off-white);
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-inner {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-inner > * {
    direction: ltr;
}

.service-detail-content h2 {
    margin-bottom: 18px;
}

.service-detail-content p {
    margin-bottom: 20px;
    color: var(--grey-700);
}

.service-detail-list {
    list-style: none;
    margin: 24px 0;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--grey-700);
}

.service-detail-list li svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-detail-visual {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-detail-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 184, 154, 0.15), transparent);
    border-radius: 50%;
}

.service-detail-visual svg {
    width: 80px;
    height: 80px;
    color: var(--teal);
    position: relative;
    z-index: 1;
    opacity: 0.6;
}

/* --- About Page --- */
.about-story {
    padding: 100px 0;
}

.about-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-visual {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.about-story-visual::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 2px solid rgba(46, 184, 154, 0.15);
    border-radius: var(--radius-md);
}

.about-story-visual::after {
    content: 'B/S';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(46, 184, 154, 0.1);
    letter-spacing: 4px;
}

.values-section {
    background: var(--off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(46, 184, 154, 0.1), rgba(46, 184, 154, 0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.value-icon svg { width: 32px; height: 32px; }

.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--grey-500); font-size: 0.95rem; }

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-card-photo {
    height: 260px;
    background: linear-gradient(160deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-card-photo::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(46, 184, 154, 0.12), transparent);
    border-radius: 50%;
}

.team-initials {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.team-card-info {
    padding: 28px 24px;
    text-align: center;
}

.team-card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.team-card-info .team-role {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-card-info p {
    color: var(--grey-500);
    font-size: 0.9rem;
}

/* Credentials */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.credential-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.credential-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.credential-badge {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.credential-badge svg { width: 30px; height: 30px; }

.credential-card h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.credential-card p {
    color: var(--grey-500);
    font-size: 0.8rem;
}

/* --- Contact Page --- */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--grey-500);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    background: var(--white);
    color: var(--grey-700);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(46, 184, 154, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-icon svg { width: 22px; height: 22px; }

.contact-info-text h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: var(--grey-500);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info-text a {
    color: var(--teal);
    font-weight: 600;
}

.map-placeholder {
    margin-top: 20px;
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232eb89a' fill-opacity='0.05'%3E%3Cpath d='M20 0L0 20h8l12-12 12 12h8z'/%3E%3C/g%3E%3C/svg%3E");
}

.map-placeholder span {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.map-placeholder svg {
    width: 32px;
    height: 32px;
    color: var(--teal);
    opacity: 0.6;
}

/* Financial disclaimer */
.financial-disclaimer {
    background: var(--off-white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-top: 60px;
}

.financial-disclaimer h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.financial-disclaimer p {
    font-size: 0.8rem;
    color: var(--grey-500);
    line-height: 1.7;
}

/* --- Animations --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Particle animation */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid,
    .process-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-graphic { display: none; }

    .service-detail-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail:nth-child(even) .service-detail-inner {
        direction: ltr;
    }

    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    section { padding: 70px 0; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        font-size: 1.2rem;
        padding: 14px 30px;
    }

    .hamburger { display: flex; }

    .services-grid,
    .process-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .credentials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero-content { padding: 40px 0; }
    .hero-buttons { flex-direction: column; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .page-hero { padding: 130px 0 60px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .cta-section { padding: 60px 0; }
    .nav-inner { height: 64px; }
    .hero { padding-top: 64px; }
    .page-hero { padding: 110px 0 50px; }
    .nav-brand-tagline { display: none; }
}
