/* GLOBAL STYLES */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: white;
    text-align: center;
    line-height: 1.6;
}

/* Ensure all images stay within their bounds */
img {
    max-width: 100%;
    height: auto;
}

/* NAVIGATION */
nav {
    background: #141414;
    border-bottom: 1px solid #333;
    padding: 12px 20px;
    text-align: center;
}

nav a {
    color: #f4c27a;
    text-decoration: none;
    margin: 0 14px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

nav a:hover {
    color: #e0ad5e;
}

/* SERVICE CATEGORY DIVIDER */
.service-category {
    margin: 20px auto 0 auto;
    padding: 30px 20px 10px 20px;
    max-width: 900px;
    border-top: 2px solid #f4c27a;
    text-align: center;
}

.service-category h2 {
    color: #f4c27a;
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: 6px;
}

.service-category p {
    color: #ccc;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* RATE BADGE */
.rate-badge {
    display: inline-block;
    background: #f4c27a;
    color: black;
    font-weight: bold;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* SERVICE PREVIEW CARDS (homepage) */
.services-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 28px 24px;
    flex: 1 1 260px;
    max-width: 380px;
    text-align: left;
    transition: border-color 0.2s;
}

.service-card:hover {
    border-color: #f4c27a;
}

.service-card h3 {
    color: #f4c27a;
    margin-top: 0;
    font-size: 18px;
}

.service-card p {
    color: #ccc;
    font-size: 15px;
    margin: 0;
}

/* HERO SECTION */
.hero {
    padding: 80px 20px;
    background: linear-gradient(to right, #000000, #1a1a1a);
    text-align: center;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px); /* Adjusts size for mobile */
    color: #f4c27a;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

/* ABOUT SECTION & PROFILE IMAGE */
.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

/* The glow effect behind your photo */
.profile-wrapper::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(244,194,122,0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.profile-img {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 280px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(244,194,122,0.4);
}

/* BOOK IMAGE */
.book-img {
    width: 220px; /* Reduced from "huge" to a standard book size */
    margin: 0 auto 20px auto;
    display: block;
    box-shadow: 0px 0px 20px rgba(244,194,122,0.4);
}

/* QUOTE SECTION */
.quote-section {
    padding: 80px 20px;
    background: #141414;
    border-top: 2px solid #f4c27a;
    border-bottom: 2px solid #f4c27a;
    margin: 40px 0;
}

.quote {
    color: #f4c27a;
    font-size: 26px;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 12px;
    background: #f4c27a;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e0ad5e;
    transform: translateY(-2px);
}

/* CHATBOT WIDGET */
#chat-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #f4c27a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(244,194,122,0.5);
    transition: transform 0.2s;
}

#chat-bubble:hover {
    transform: scale(1.08);
}

#chat-window {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    max-height: 440px;
    background: #1a1a1a;
    border: 1px solid #f4c27a;
    border-radius: 12px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    overflow: hidden;
}

#chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4c27a;
    color: black;
    padding: 12px 16px;
    font-weight: bold;
    font-size: 14px;
}

#chat-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: black;
    line-height: 1;
}

#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-msg {
    max-width: 85%;
    padding: 9px 13px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.chat-msg.bot {
    background: #2a2a2a;
    color: #eee;
    align-self: flex-start;
}

.chat-msg.user {
    background: #f4c27a;
    color: black;
    align-self: flex-end;
}

#chat-input-row {
    display: flex;
    border-top: 1px solid #333;
}

#chat-input {
    flex: 1;
    background: #111;
    border: none;
    color: white;
    padding: 12px;
    font-size: 14px;
    outline: none;
}

#chat-input::placeholder {
    color: #666;
}

#chat-send {
    background: #f4c27a;
    color: black;
    border: none;
    padding: 12px 16px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

#chat-send:hover:not(:disabled) {
    background: #e0ad5e;
}

#chat-send:disabled {
    opacity: 0.6;
    cursor: default;
}

/* THINKING DOTS */
.dots span {
    display: inline-block;
    animation: blink 1.2s infinite;
    font-weight: bold;
}

.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}
/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 30px auto;
    padding: 0 20px;
}

.pricing-card {
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: #f4c27a;
}

.pricing-card.featured {
    border-color: #f4c27a;
    background: #1e1a0e;
}

.pricing-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f4c27a;
    color: #0f0f0f;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card h3 {
    color: #f4c27a;
    margin: 10px 0 6px;
    font-size: 1.1rem;
}

.pricing-amount {
    font-size: 2.4rem;
    font-weight: bold;
    color: white;
    margin: 10px 0;
}

.pricing-card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 30px auto;
    padding: 0 20px;
}

.testimonial-card {
    background: #1a1a2e;
    border-left: 4px solid #f4c27a;
    border-radius: 6px;
    padding: 24px 20px;
    text-align: left;
}

.testimonial-stars {
    color: #f4c27a;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-title {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    margin: 0 0 8px;
}

.testimonial-text {
    font-style: italic;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.testimonial-author {
    color: #f4c27a;
    font-size: 0.85rem;
    font-weight: bold;
    margin: 0 0 10px;
}

.testimonial-source {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    color: #0f0f0f;
}

.testimonial-source.google {
    background: #f4c27a;
}

.testimonial-source.amazon {
    background: #ff9900;
}

/* PAIN LIST */
.pain-list {
    list-style: none;
    padding: 0;
    max-width: 640px;
    margin: 20px auto;
    text-align: left;
}

.pain-list li {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid #222;
}

.pain-list li:before {
    content: "✕";
    color: #f4c27a;
    font-weight: bold;
    position: absolute;
    left: 4px;
    top: 12px;
}

.empathy {
    color: #f4c27a;
    font-style: italic;
    max-width: 600px;
    margin: 24px auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* 3-STEP PROCESS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 30px auto;
}

.step-card {
    background: #141414;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px 22px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f4c27a;
    color: #0f0f0f;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.step-card h3 {
    color: #f4c27a;
    margin: 6px 0 10px;
    font-size: 1.15rem;
}

.step-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* WHO I WORK WITH */
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    max-width: 860px;
    margin: 24px auto;
}

.who-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 24px 20px;
    transition: border-color 0.2s;
}

.who-card:hover {
    border-color: #f4c27a;
}

.who-card h3 {
    color: #f4c27a;
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.who-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* OUTLINE BUTTON */
.btn-outline {
    display: inline-block;
    padding: 12px 26px;
    margin: 12px;
    background: transparent;
    color: #f4c27a;
    border: 2px solid #f4c27a;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #f4c27a;
    color: #0f0f0f;
}

/* PACKAGE CARDS (Work With Me) */
.package-card {
    background: #141414;
    border: 1px solid #333;
    border-left: 4px solid #f4c27a;
    border-radius: 10px;
    padding: 32px 28px;
    max-width: 720px;
    margin: 24px auto;
    text-align: left;
}

.package-card h3 {
    color: #f4c27a;
    margin: 0;
    font-size: 1.5rem;
}

.package-tagline {
    color: #fff;
    font-weight: bold;
    font-style: italic;
    margin: 6px 0 16px;
    font-size: 1rem;
}

.package-card p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 16px;
}

.package-card ul {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(135deg, #141414 0%, #1a1a2e 100%);
    border-top: 2px solid #f4c27a;
    border-bottom: 2px solid #f4c27a;
    padding: 60px 20px;
    margin: 40px 0 0;
    max-width: none;
}

.final-cta h2 {
    color: #f4c27a;
    margin-bottom: 12px;
}

.final-cta p {
    color: #ddd;
    max-width: 500px;
    margin: 0 auto 20px;
}

.final-cta-secondary {
    margin-top: 18px;
    font-size: 0.9rem;
    color: #888;
}

.final-cta-secondary a {
    color: #f4c27a;
}
