﻿/* ============================================================
   BIZZCURE â€” Premium Business Consulting Website Styles
   Color Palette:
     Deep Navy Blue  : #0A1F44
     Royal Gold      : #C9A646
     Ivory White     : #F8F7F3
     Charcoal Gray   : #2E2E2E
     Emerald Green   : #2F6D4E
   ============================================================ */

@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;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

/* â”€â”€ Variables â”€â”€ */
:root {
    --navy: #0A1F44;
    --gold: #C9A646;
    --gold-lt: #E4C76B;
    --ivory: #F8F7F3;
    --charcoal: #2E2E2E;
    --emerald: #2F6D4E;
    --emerald-lt: #3D8A62;
    --white: #ffffff;
    --text-body: #3A3A3A;
    --border: rgba(201, 166, 70, .25);

    --font-serif: 'Playfair Display', 'Merriweather', Georgia, serif;
    --font-body: 'Lato', 'Open Sans', sans-serif;

    --shadow-sm: 0 2px 12px rgba(10, 31, 68, .08);
    --shadow-md: 0 8px 32px rgba(10, 31, 68, .15);
    --shadow-lg: 0 20px 60px rgba(10, 31, 68, .18);

    --radius: 6px;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* â”€â”€ Reset â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* â”€â”€ Utility Classes â”€â”€ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 100px 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
}

.tag-line {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 36px;
}

.tag-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

.section-title-light {
    color: var(--ivory);
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 620px;
    margin-top: 12px;
}

.section-subtitle-light {
    color: rgba(248, 247, 243, .75);
}

/* â”€â”€ Buttons â”€â”€ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .05em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
}

.btn-primary:hover {
    background: var(--emerald-lt);
    border-color: var(--emerald-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(47, 109, 78, .3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 166, 70, .3);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 166, 70, .35);
}

/* â”€â”€ Gold Divider â”€â”€ */
.gold-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    margin: 24px 0;
}

.gold-divider-center {
    margin: 24px auto;
}

/* â”€â”€ Navigation â”€â”€ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}

#navbar.transparent {
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 31, 68, .97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 32px rgba(10, 31, 68, .3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .04em;
}

.nav-logo-sub {
    font-size: .62rem;
    color: var(--gold);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 12px;
    padding: 10px 24px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* â”€â”€ Hero Section â”€â”€ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero_background.png');
    background-size: cover;
    background-position: center;
    opacity: .35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 31, 68, .95) 0%,
            rgba(10, 31, 68, .7) 50%,
            rgba(10, 31, 68, .85) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 40px 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 166, 70, .12);
    border: 1px solid rgba(201, 166, 70, .3);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 32px;
    animation: fadeInUp .8s ease both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

.hero-badge span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp .9s ease .15s both;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold);
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(248, 247, 243, .8);
    max-width: 680px;
    line-height: 1.75;
    margin-bottom: 48px;
    animation: fadeInUp .9s ease .3s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp .9s ease .45s both;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 166, 70, .2);
    animation: fadeInUp .9s ease .6s both;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: .78rem;
    color: rgba(248, 247, 243, .6);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 6px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .5);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(201, 166, 70, .6), transparent);
}

/* â”€â”€ Marquee Strip â”€â”€ */
.marquee-strip {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--navy);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--navy);
    opacity: .5;
}

/* â”€â”€ About Section â”€â”€ */
#about {
    background: var(--ivory);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 20px 20px 20px 0;
}

/* Decorative gold frame offset behind the image */
.about-image-frame {
    position: absolute;
    top: 0;
    left: 20px;
    right: -20px;
    bottom: 20px;
    /* mirrors the image offset */
    border: 3px solid rgba(201, 166, 70, .35);
    border-radius: 6px;
    z-index: 0;
    pointer-events: none;
}

.about-image-main {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 24px 72px rgba(10, 31, 68, .22);
    display: block;
}

/* Bottom gradient so accent card text is readable */
.about-image-overlay {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 0;
    right: 20px;
    height: 180px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(to top, rgba(10, 31, 68, .7) 0%, transparent 100%);
    pointer-events: none;
}

.about-image-accent {
    position: absolute;
    z-index: 3;
    bottom: -10px;
    right: -10px;
    width: 170px;
    height: 170px;
    border: 5px solid var(--gold);
    border-radius: 6px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 16px;
    box-shadow: 0 12px 40px rgba(10, 31, 68, .3);
}

.about-accent-number {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about-accent-text {
    font-size: .66rem;
    color: var(--white);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 8px;
    line-height: 1.4;
}

/* Floating trust badge top-left */
.about-trust-badge {
    position: absolute;
    z-index: 3;
    top: 36px;
    left: -10px;
    background: var(--emerald);
    color: var(--white);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(47, 109, 78, .35);
}

.about-trust-badge i {
    font-size: .9rem;
}

.about-content .section-subtitle {
    max-width: 100%;
    color: var(--text-body);
}

.about-specialties {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-spec-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.about-spec-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 166, 70, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
}

.about-spec-text {
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
}

.about-spec-desc {
    font-size: .8rem;
    color: #777;
    margin-top: 2px;
}

/* â”€â”€ Why Bizzcure â”€â”€ */
#why {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 166, 70, .06) 0%, transparent 70%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.why-card {
    padding: 40px 36px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(201, 166, 70, .08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 166, 70, .06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    background: rgba(201, 166, 70, .05);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 166, 70, .12);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 166, 70, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.why-desc {
    font-size: .88rem;
    color: rgba(248, 247, 243, .65);
    line-height: 1.7;
}

.why-statement {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    border: 1px solid rgba(201, 166, 70, .2);
    border-radius: var(--radius);
    background: rgba(201, 166, 70, .04);
}

.why-statement-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--white);
    font-style: italic;
}

.why-statement-text em {
    color: var(--gold);
    font-style: normal;
}

/* â”€â”€ Services Section â”€â”€ */
#services {
    background: var(--ivory);
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-subtitle {
    margin: 12px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 31, 68, .06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--emerald));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.icon-navy {
    background: rgba(10, 31, 68, .08);
    color: var(--navy);
}

.icon-gold {
    background: rgba(201, 166, 70, .12);
    color: var(--gold);
}

.icon-emerald {
    background: rgba(47, 109, 78, .1);
    color: var(--emerald);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-desc {
    font-size: .86rem;
    color: #666;
    line-height: 1.7;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.service-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--ivory);
    color: var(--navy);
    border: 1px solid rgba(10, 31, 68, .1);
}

/* â”€â”€ Who We Work With â”€â”€ */
#clients {
    background: var(--white);
    padding: 100px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.client-card {
    padding: 48px 36px;
    border: 1px solid rgba(10, 31, 68, .06);
    text-align: center;
    transition: var(--transition);
    background: var(--white);
}

.client-card:hover {
    background: var(--navy);
    border-color: var(--navy);
}

.client-card:hover .client-icon {
    background: rgba(201, 166, 70, .15);
    color: var(--gold);
}

.client-card:hover .client-title {
    color: var(--white);
}

.client-card:hover .client-desc {
    color: rgba(248, 247, 243, .65);
}

.client-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(10, 31, 68, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    color: var(--navy);
    transition: var(--transition);
}

.client-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    transition: var(--transition);
}

.client-desc {
    font-size: .84rem;
    color: #777;
    line-height: 1.65;
    transition: var(--transition);
}

/* â”€â”€ Philosophy Section â”€â”€ */
#philosophy {
    background: var(--charcoal);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--emerald), var(--gold));
}

.philosophy-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--white);
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 48px;
    position: relative;
    padding: 0 40px;
}

.philosophy-quote::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 6rem;
    color: rgba(201, 166, 70, .2);
    font-family: var(--font-serif);
    line-height: 1;
}

.philosophy-quote em {
    color: var(--gold);
    font-style: normal;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.philosophy-pillar {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid rgba(201, 166, 70, .15);
    border-radius: var(--radius);
    transition: var(--transition);
}

.philosophy-pillar:hover {
    background: rgba(201, 166, 70, .05);
    border-color: rgba(201, 166, 70, .4);
}

.pillar-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.pillar-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.pillar-desc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

/* â”€â”€ Promise / CTA Section â”€â”€ */
#promise {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2755 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#promise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero_background.png') center/cover no-repeat;
    opacity: .06;
}

.promise-inner {
    position: relative;
    z-index: 1;
}

.promise-tagline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.promise-tagline span {
    color: var(--gold);
}

.promise-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 24px 0 40px;
}

.promise-dot-item {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: rgba(201, 166, 70, .8);
    font-style: italic;
}

.promise-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(201, 166, 70, .4);
}

.promise-sub {
    font-size: 1rem;
    color: rgba(248, 247, 243, .7);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

.promise-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* â”€â”€ Contact Teaser â”€â”€ */
#contact-teaser {
    background: var(--ivory);
    padding: 80px 0;
}

.contact-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 166, 70, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #999;
}

.contact-detail-value {
    font-size: .95rem;
    color: var(--navy);
    font-weight: 600;
}

/* Quick Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 31, 68, .06);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(10, 31, 68, .12);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--charcoal);
    background: var(--ivory);
    transition: border-color var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--gold);
    background: var(--white);
}

.form-textarea {
    height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* â”€â”€ Footer â”€â”€ */
#footer {
    background: #070f22;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(201, 166, 70, .1);
}

.footer-brand img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-brand-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 166, 70, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: var(--font-serif);
    font-size: .95rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: .83rem;
    color: rgba(255, 255, 255, .45);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-link::before {
    content: 'â†’';
    font-size: .7rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
}

.footer-copy a {
    color: var(--gold);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
    transition: color var(--transition);
}

.footer-bottom-link:hover {
    color: var(--gold);
}

/* â”€â”€ Floating CTA â”€â”€ */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 100px;
    padding: 14px 24px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(10, 31, 68, .4);
    transition: var(--transition);
}

.floating-cta-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 166, 70, .4);
}

/* â”€â”€ Back to Top â”€â”€ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 500;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 31, 68, .8);
    border: 1px solid rgba(201, 166, 70, .3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
    backdrop-filter: blur(8px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* â”€â”€ Animations â”€â”€ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(.85);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

/* â”€â”€ Mobile Navigation â”€â”€ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: var(--transition);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--white);
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-close {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition);
}

.mobile-nav-close:hover {
    color: var(--gold);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE DESIGN â€” Full Breakpoint System
   â”€ Large Desktop : > 1280px  (handled by max-widths in base CSS)
   â”€ Tablet        : â‰¤ 1024px
   â”€ Mobile        : â‰¤ 768px
   â”€ Small Mobile  : â‰¤ 480px
   â”€ Tiny          : â‰¤ 360px
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TABLET  â‰¤ 1024px
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {

    /* â”€â”€ Layout helpers â”€â”€ */
    .container {
        padding: 0 28px;
    }

    .section-pad {
        padding: 80px 0;
    }

    /* â”€â”€ Navbar â”€â”€ */
    .nav-inner {
        padding: 18px 28px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-link {
        font-size: .75rem;
        letter-spacing: .08em;
    }

    .nav-cta {
        padding: 9px 18px;
        font-size: .78rem;
    }

    /* â”€â”€ Hero â”€â”€ */
    .hero-content {
        padding: 140px 28px 90px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    }

    .hero-stats {
        gap: 40px;
        margin-top: 60px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    /* â”€â”€ About â”€â”€ */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-image-wrapper {
        padding: 20px 24px 20px 0;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-image-main {
        height: 400px;
    }

    .about-trust-badge {
        left: 0;
        top: 24px;
    }

    .about-image-accent {
        width: 150px;
        height: 150px;
        right: -4px;
        bottom: -4px;
    }

    .about-accent-number {
        font-size: 2.2rem;
    }

    /* â”€â”€ Why grid â”€â”€ */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* â”€â”€ Services â”€â”€ */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* â”€â”€ Clients â”€â”€ */
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* â”€â”€ Philosophy â”€â”€ */
    .philosophy-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* â”€â”€ Contact â”€â”€ */
    .contact-teaser-inner {
        gap: 40px;
    }

    /* â”€â”€ Footer â”€â”€ */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .nav-logo img {
        height: 48px;
    }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MOBILE  â‰¤ 768px
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {

    /* â”€â”€ Layout â”€â”€ */
    .container {
        padding: 0 20px;
    }

    .section-pad {
        padding: 64px 0;
    }

    /* â”€â”€ Typography scale-downs â”€â”€ */
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .section-subtitle {
        font-size: .92rem;
    }

    .tag-line {
        font-size: .68rem;
    }

    /* â”€â”€ Navbar â”€â”€ */
    .nav-inner {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-logo img {
        height: 42px;
    }

    .nav-logo-name {
        font-size: 1.15rem;
    }

    .nav-logo-sub {
        font-size: .55rem;
    }

    /* â”€â”€ Hero â”€â”€ */
    #hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 120px 20px 80px;
    }

    .hero-badge {
        display: none;
    }

    .hero-headline {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-subheadline {
        font-size: .95rem;
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 28px;
        margin-top: 48px;
        padding-top: 28px;
    }

    .hero-stat-number {
        font-size: 1.7rem;
    }

    .hero-stat-label {
        font-size: .72rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* â”€â”€ Marquee â”€â”€ */
    .marquee-item {
        padding: 0 20px;
        font-size: .7rem;
    }

    /* â”€â”€ About â”€â”€ */
    .about-grid {
        gap: 40px;
    }

    .about-image-wrapper {
        padding: 16px 16px 16px 0;
        max-width: 100%;
    }

    .about-image-main {
        height: 300px;
    }

    .about-image-frame {
        display: none;
    }

    .about-image-accent {
        width: 120px;
        height: 120px;
        bottom: -6px;
        right: -6px;
        border-width: 3px;
        padding: 10px;
    }

    .about-accent-number {
        font-size: 1.8rem;
    }

    .about-accent-text {
        font-size: .58rem;
    }

    .about-trust-badge {
        font-size: .68rem;
        padding: 7px 12px;
        gap: 6px;
        left: 0;
        top: 18px;
    }

    .about-specialties {
        gap: 10px;
    }

    .about-spec-item {
        padding: 12px 14px;
    }

    .about-spec-text {
        font-size: .84rem;
    }

    .about-spec-desc {
        font-size: .75rem;
    }

    /* â”€â”€ Why Bizzcure â”€â”€ */
    #why {
        padding: 64px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .why-card {
        padding: 28px 24px;
    }

    .why-title {
        font-size: 1.1rem;
    }

    .why-desc {
        font-size: .84rem;
    }

    .why-statement {
        padding: 28px 20px;
        margin-top: 36px;
    }

    .why-statement-text {
        font-size: 1.25rem;
    }

    /* â”€â”€ Services â”€â”€ */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .service-icon-wrap {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-desc {
        font-size: .83rem;
    }

    /* Wide service card resets to full width */
    .service-card[style*="span 2"] {
        grid-column: span 1 !important;
    }

    /* â”€â”€ Clients â”€â”€ */
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .client-card {
        padding: 32px 24px;
    }

    .client-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .client-title {
        font-size: 1rem;
    }

    .client-desc {
        font-size: .82rem;
    }

    /* â”€â”€ Philosophy â”€â”€ */
    #philosophy {
        padding: 80px 0;
    }

    .philosophy-quote {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        padding: 0 8px;
    }

    .philosophy-quote::before {
        font-size: 4rem;
        top: -12px;
    }

    .philosophy-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-top: 40px;
    }

    .philosophy-pillar {
        padding: 20px 14px;
    }

    .pillar-icon {
        font-size: 1.5rem;
    }

    .pillar-title {
        font-size: .9rem;
    }

    .pillar-desc {
        font-size: .74rem;
    }

    /* â”€â”€ Promise â”€â”€ */
    #promise {
        padding: 80px 0;
    }

    .promise-tagline {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }

    .promise-dots {
        gap: 12px;
        flex-wrap: wrap;
    }

    .promise-dot-item {
        font-size: 1.1rem;
    }

    .promise-sub {
        font-size: .9rem;
        margin-bottom: 36px;
    }

    .promise-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .promise-ctas .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* â”€â”€ Contact Form â”€â”€ */
    #contact-teaser {
        padding: 64px 0;
    }

    .contact-teaser-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info-title {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 11px 14px;
        font-size: .88rem;
    }

    .form-label {
        font-size: .72rem;
    }

    .contact-detail {
        gap: 12px;
        margin-bottom: 16px;
    }

    .contact-detail-icon {
        width: 38px;
        height: 38px;
        font-size: .9rem;
    }

    .contact-detail-value {
        font-size: .9rem;
    }

    .gold-divider {
        margin: 16px 0;
    }

    /* â”€â”€ Footer â”€â”€ */
    #footer {
        padding: 56px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 40px;
    }

    .footer-brand img {
        height: 40px;
        margin-bottom: 12px;
    }

    .footer-brand-desc {
        font-size: .82rem;
        margin-bottom: 18px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-col-title {
        font-size: .9rem;
        margin-bottom: 14px;
    }

    .footer-link {
        font-size: .82rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 0;
    }

    .footer-bottom-links {
        gap: 16px;
        justify-content: center;
    }

    .footer-copy {
        font-size: .75rem;
    }

    /* â”€â”€ Utility â”€â”€ */
    .floating-cta {
        bottom: 16px;
        right: 16px;
    }

    .floating-cta-btn {
        padding: 12px 18px;
        font-size: .78rem;
        gap: 8px;
    }

    .back-to-top {
        bottom: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
        font-size: .85rem;
    }

    .gold-divider-center {
        margin: 16px auto;
    }

    .btn {
        padding: 13px 24px;
        font-size: .85rem;
    }

    /* â”€â”€ Toast â”€â”€ */
    .toast {
        right: 16px;
        left: 16px;
        max-width: none;
        font-size: .84rem;
    }
}



/* â”€â”€ Particle Canvas â”€â”€ */
#particles-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* â”€â”€ Notification Toast (base) â”€â”€ */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    font-size: .9rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    max-width: 320px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: var(--emerald);
}

.toast.error {
    border-left-color: #c0392b;
}