/* ═══════════════════════════════════════
   LITZ-UP CONSULTING — Multi-Page Site
   Color Palette: Black, Teal, Gold, White
   ═══════════════════════════════════════ */
:root {
    --black: #000000;
    --near-black: #0a0a0a;
    --dark-gray: #111111;
    --light-teal: #0a5e72;
    --light-teal-box: #085268;
    --heading-cyan: #86def2;
    --light-cyan: #78d7eb;
    --near-white: #f4f7fb;
    --gold: #c9a84c;
    --gold-light: #e0c878;
    --gold-dark: #a88b3a;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    background: var(--black);
    color: var(--near-white);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Merriweather', serif; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════
   HEADER — Logo banner across full width
   ═══════════════════════════════════════ */
.header-banner {
    width: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 0 0.75rem;
    position: relative;
    z-index: 1001;
}
.header-banner a { display: inline-block; }
.header-banner img {
    width: auto;
    max-height: 110px;
    height: auto;
}

/* ═══════════════════════════════════════
   NAVIGATION — sticky below banner
   ═══════════════════════════════════════ */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--black);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    padding: 0.5rem 0;
}
.nav-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--near-white);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    padding: 0.5rem 0.25rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
    border-bottom: 2px solid var(--gold-light);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--near-white);
    font-size: 1.8rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

/* ═══════════════════════════════════════
   HERO SECTION — Full viewport, fixed bg
   ═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background-image: url('images/hero_bg.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}
.hero-content p {
    font-size: 1.05rem;
    color: var(--near-white);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════
   PAGE HERO — smaller hero for inner pages
   ═══════════════════════════════════════ */
.page-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-teal), var(--light-teal-box));
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-hero h1 {
    font-size: 2.8rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(244, 247, 251, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
    min-height: 44px;
    min-width: 44px;
}
.btn-teal {
    background: var(--light-teal);
    color: var(--near-white);
}
.btn-teal:hover {
    background: var(--light-teal-box);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    font-weight: 700;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}
.btn-send {
    background: var(--light-cyan);
    color: #0a0a0a;
    font-weight: 700;
    width: 100%;
}
.btn-send:hover { background: var(--heading-cyan); }
.btn-outline {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(244,247,251,0.3);
    color: var(--near-white);
}
.btn-outline:hover {
    background: rgba(0,0,0,0.5);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--black);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.4);
}
.btn-dark:hover {
    background: #111;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   SPLIT SECTION — 50/50 text + image
   ═══════════════════════════════════════ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: var(--black);
}
.split-section.reversed .split-text { order: 2; }
.split-section.reversed .split-image { order: 1; }
.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 4rem;
    background: var(--light-teal);
}
.split-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}
.split-text p {
    color: var(--near-white);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.split-image {
    overflow: hidden;
    position: relative;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--black);
}
.stat-cell {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--light-teal);
}
.stat-cell:nth-child(2) {
    background-image: linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08));
}
.stat-cell:nth-child(3) {
    background-image: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15));
}
.stat-cell h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--near-white);
    margin-bottom: 0.4rem;
}
.stat-cell p {
    font-size: 0.85rem;
    color: rgba(244, 247, 251, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ═══════════════════════════════════════
   SECTION CONTAINERS
   ═══════════════════════════════════════ */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header h2 {
    font-size: 2.4rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}
.section-header p {
    color: rgba(244, 247, 251, 0.65);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}
.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0.75rem auto;
}

/* ═══════════════════════════════════════
   SERVICES — Cards
   ═══════════════════════════════════════ */
.services-section {
    background: var(--black);
    padding: 5rem 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--light-teal);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}
.service-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}
.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}
.service-card h3 {
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}
.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-cyan);
    font-family: 'Merriweather', serif;
    margin-bottom: 0.25rem;
}
.service-price span {
    font-size: 0.8rem;
    color: rgba(244, 247, 251, 0.6);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
.service-card > p {
    color: rgba(244, 247, 251, 0.8);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.service-features li {
    padding: 0.5rem 0;
    color: rgba(244, 247, 251, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.service-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    flex-shrink: 0;
}
.guarantee-box {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    padding: 0.85rem;
    font-size: 0.78rem;
    color: var(--gold-light);
    text-align: center;
    margin-top: auto;
}

/* ═══════════════════════════════════════
   CASE STUDIES — Cards
   ═══════════════════════════════════════ */
.case-studies-section {
    background: var(--black);
    padding: 5rem 0;
}
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.case-study-card {
    background: var(--light-teal);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    transition: all 0.4s;
}
.case-study-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}
.case-study-photo {
    width: 150px;
    flex-shrink: 0;
    overflow: hidden;
}
.case-study-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-study-content {
    padding: 1.5rem;
    flex: 1;
}
.case-study-content h3 {
    color: var(--gold-light);
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}
.case-study-content .handle {
    color: var(--light-cyan);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.7rem;
}
.case-study-content .result {
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--gold);
    padding: 0.5rem 0.85rem;
    margin-bottom: 0.6rem;
    border-radius: 0 6px 6px 0;
}
.case-study-content .result strong {
    color: var(--light-cyan);
    display: block;
    font-size: 0.82rem;
}
.case-study-content .result span {
    color: rgba(244, 247, 251, 0.6);
    font-size: 0.72rem;
}
.case-study-content p.quote {
    color: rgba(244, 247, 251, 0.75);
    font-size: 0.8rem;
    line-height: 1.55;
    font-style: italic;
}
.tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.18);
    color: var(--gold);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-size: 0.65rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-section {
    background: var(--light-teal);
    padding: 5rem 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.step-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 auto 1rem;
    font-family: 'Merriweather', serif;
}
.step-item h4 {
    color: var(--near-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.step-item p {
    color: rgba(244, 247, 251, 0.75);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   FOUNDER
   ═══════════════════════════════════════ */
.founder-section {
    background: var(--black);
    padding: 5rem 0;
}
.founder-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}
.founder-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    border: 3px solid rgba(201, 168, 76, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.founder-content h2 {
    font-size: 2.4rem;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}
.founder-content .title {
    color: var(--light-cyan);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.founder-content p {
    color: rgba(244, 247, 251, 0.8);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 0.92rem;
}
.book-highlight {
    background: var(--light-teal);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.book-cover {
    width: 75px;
    height: 105px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.6rem;
}
.book-info h4 {
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.book-info p {
    color: rgba(244, 247, 251, 0.65);
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}
.amazon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ff9900;
    color: #000;
    padding: 0.55rem 1.2rem;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform 0.3s;
    min-height: 44px;
}
.amazon-btn:hover { transform: scale(1.05); }

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 3.5rem 2rem;
    text-align: center;
}
.cta-banner h2 {
    color: #0a0a0a;
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}
.cta-banner p {
    color: rgba(10, 10, 10, 0.75);
    margin-bottom: 1.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
}

/* ═══════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════ */
.contact-section {
    background: var(--light-teal);
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact-form-side {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-form-side h2 {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    color: var(--near-white);
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    border: 2px solid rgba(244, 247, 251, 0.5);
    border-radius: 4px;
    color: var(--near-white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(244, 247, 251, 0.4);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: var(--light-teal); color: var(--near-white); }
.consent-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.consent-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 3px;
    accent-color: var(--gold);
    cursor: pointer;
}
.consent-row label {
    font-size: 0.78rem;
    color: rgba(244, 247, 251, 0.7);
    line-height: 1.5;
}
.required-note {
    font-size: 0.78rem;
    color: rgba(244, 247, 251, 0.5);
    margin-bottom: 1rem;
}
.contact-info-side {
    display: flex;
    flex-direction: column;
}
.map-container {
    flex: 1;
    min-height: 350px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.contact-details {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.15);
}
.contact-details h2 {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}
.contact-details p {
    color: var(--near-white);
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.contact-details a {
    color: var(--near-white);
    transition: color 0.3s;
}
.contact-details a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════
   SOCIAL LINKS
   ═══════════════════════════════════════ */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(244, 247, 251, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--near-white);
    font-size: 1.1rem;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--gold);
    color: #0a0a0a;
    border-color: var(--gold);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
    background: var(--black);
    border-top: 2px solid rgba(201, 168, 76, 0.3);
    padding: 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(244, 247, 251, 0.6);
    font-size: 0.82rem;
    transition: color 0.3s;
    padding: 0.25rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.footer-links a:hover { color: var(--gold-light); }
footer .copyright {
    color: rgba(244, 247, 251, 0.5);
    font-size: 0.82rem;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 968px) {
    .hero-content h1 { font-size: 2.4rem; }
    .page-hero h1 { font-size: 2rem; }
    .split-section { grid-template-columns: 1fr; }
    .split-section.reversed .split-text { order: 1; }
    .split-section.reversed .split-image { order: 2; }
    .split-image { min-height: 300px; }
    .split-text { padding: 3rem 2rem; }
    .stats-bar { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .case-studies-grid { grid-template-columns: 1fr; }
    .case-study-card { flex-direction: column; }
    .case-study-photo { width: 100%; height: 200px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .founder-image img { max-width: 320px; margin: 0 auto; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-form-side { padding: 3rem 2rem; }
    .contact-details { padding: 2rem; }
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    }
    .mobile-menu-btn { display: block; }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links { justify-content: center; }
}
@media (max-width: 640px) {
    .hero-content h1 { font-size: 1.9rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .split-text h2 { font-size: 1.7rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .book-highlight { flex-direction: column; text-align: center; }
    .section-header h2 { font-size: 1.8rem; }
    .header-banner img { max-width: 100%; }
}
