/* ============================================
   HEALTAROT - STYLES
   ============================================
   Part of the HealTarot single page site for healtarot.com
   Safe to host on any static hosting service.
   
   This file contains all styling for the website including:
   - CSS Variables (colors, fonts, spacing)
   - Layout and responsive design
   - Component styles (buttons, cards, forms)
   - Animations and transitions
   - Mobile, tablet, and desktop breakpoints
   
   No external dependencies except Google Fonts.
   ============================================ */

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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Focus Styles for Accessibility */
/* Ensure all interactive elements have visible focus indicators */
*:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Remove outline for mouse users, keep for keyboard users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Enhanced focus for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.15);
}

/* CSS Variables - Design Tokens */
:root {
    /* Color Palette */
    --primary-burgundy: #5A1A2D;
    --dark-burgundy: #320D19;
    --gold-accent: #D4AF37;
    --cream-bg: #F8F3EE;
    --text-main: #1F1A1C;
    --text-muted: #5A4F58; /* Improved contrast from #6C5F6A */
    --light-border: rgba(255, 255, 255, 0.12);
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --container-max-width: 1120px;
    --container-padding: 1.5rem;
    --section-padding-y: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(50, 13, 25, 0.1);
    --shadow-md: 0 4px 16px rgba(50, 13, 25, 0.15);
    --shadow-lg: 0 8px 32px rgba(50, 13, 25, 0.2);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-gentle: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Down Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gentle Scale Animation */
@keyframes gentleScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Soft Glow Animation */
@keyframes softGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.6s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.gentle-scale {
    animation: gentleScale 0.8s ease-out forwards;
}

/* Reveal Class for Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Body Base Styles */
body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-main);
    background: linear-gradient(180deg, var(--dark-burgundy) 0%, var(--primary-burgundy) 30%, var(--cream-bg) 70%, var(--cream-bg) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px; /* Account for fixed header */
}

body.nav-open {
    overflow: hidden; /* Prevent scrolling when mobile menu is open */
}

/* Typography Base Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.75rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-main);
}

a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-burgundy);
}

a:focus-visible {
    outline: 2px solid var(--gold-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section-padding {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

/* Section Title Utilities */
.section-title {
    font-size: 2.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-burgundy);
}

.section-subtitle {
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
button {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--gold-accent);
    color: var(--dark-burgundy);
    border: 2px solid var(--gold-accent);
    transition: var(--transition-gentle);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(90, 26, 45, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
    color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(90, 26, 45, 0.4);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

.btn-ghost {
    background-color: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
    transition: var(--transition-gentle);
    position: relative;
}

.btn-ghost:hover {
    background-color: var(--gold-accent);
    color: var(--dark-burgundy);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-ghost:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

/* Header Styles */
header {
    background-color: rgba(50, 13, 25, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--light-border);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: rgba(50, 13, 25, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--container-padding);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold-accent);
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-base);
}

.logo:hover {
    color: var(--gold-accent);
    opacity: 0.9;
}

.logo:focus-visible {
    outline: 2px solid var(--gold-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Logo Icon */
.logo-icon {
    font-size: 2rem;
    color: var(--gold-accent);
    flex-shrink: 0;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

.logo:hover .logo-icon {
    transform: translateY(-2px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Logo Text */
.logo-text {
    font-weight: 700;
    line-height: 1;
}

/* Navigation Toggle Button (Hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--gold-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 28px;
    height: 2px;
    background-color: var(--gold-accent);
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger::before,
.hamburger::after {
    content: '';
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

/* Hamburger Animation when Open */
.nav-open .hamburger {
    background-color: transparent;
}

.nav-open .hamburger::before {
    transform: rotate(45deg);
}

.nav-open .hamburger::after {
    transform: rotate(-45deg);
}

/* Navigation Styles */
nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--gold-accent);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--gold-accent);
    font-weight: 600;
}

/* Section Styles */
section {
    padding: var(--section-padding-y) 0;
}

section:nth-child(even) {
    background-color: rgba(248, 243, 238, 0.5);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(90, 26, 45, 0.4) 0%, transparent 70%),
                linear-gradient(135deg, var(--dark-burgundy) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 1s ease-out;
}

.hero-image-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold-accent);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
}

.hero-cta .btn-primary,
.hero-cta .btn-ghost {
    flex: 1;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    white-space: nowrap;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInUp 1.2s ease-out;
}

.image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--gold-accent);
    box-shadow: 0 20px 60px rgba(90, 26, 45, 0.3),
                0 0 30px rgba(212, 175, 55, 0.4);
    animation: goldenGlow 3s ease-in-out infinite;
}

@keyframes goldenGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(90, 26, 45, 0.3),
                    0 0 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 20px 60px rgba(90, 26, 45, 0.3),
                    0 0 50px rgba(212, 175, 55, 0.6),
                    0 0 70px rgba(212, 175, 55, 0.3);
    }
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TRUST SECTION
   ============================================ */
#trust {
    background: var(--white);
    padding: 5rem 0;
}

#trust .section-title {
    color: var(--primary-burgundy);
    text-align: center;
}

#trust .section-subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    background: linear-gradient(135deg, var(--cream-bg), var(--white));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-accent);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.trust-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.5;
}

/* Reviews Section */
#reviews {
    background: linear-gradient(180deg, var(--cream-bg) 0%, var(--white) 100%);
    padding: 5rem 0;
    overflow: hidden;
}

#reviews .section-title {
    color: var(--primary-burgundy);
    text-align: center;
}

#reviews .section-subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-align: center;
}

.container-full {
    width: 100%;
    max-width: 100%;
}

/* Reviews Carousel */
.reviews-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    animation: scroll 60s linear infinite;
    width: fit-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Review Card */
.review-card {
    background: linear-gradient(135deg, var(--white), var(--cream-bg));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-base);
    position: relative;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(90, 26, 45, 0.2),
                0 0 20px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-accent);
}

/* Review Photo */
.review-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-accent);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Review Stars */
.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.review-stars .star {
    font-size: 1.25rem;
}

/* Review Text */
.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-style: italic;
}

/* Review Author */
.review-author {
    font-weight: 600;
    color: var(--primary-burgundy);
    font-size: 1rem;
    margin: 0;
}

/* Services Section */
#services {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream-bg) 100%);
    padding: 5rem 0;
}

#services .section-title {
    color: var(--primary-burgundy);
}

#services .section-subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(90, 26, 45, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25),
                0 0 0 2px var(--gold-accent);
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Service Content */
.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    line-height: 1.3;
    margin-top: 0;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-content .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
}

/* Service Tag (Bestseller) */
.service-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold-accent), #e6c45c);
    color: var(--dark-burgundy);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

/* Service Icon */
/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(90, 26, 45, 0.4),
                0 0 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    padding: 0;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--gold-accent), #e6c45c);
    color: var(--dark-burgundy);
    border-color: var(--gold-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5),
                0 0 30px rgba(212, 175, 55, 0.3);
}

.back-to-top:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 4px;
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.back-to-top-text {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Footer Styles */
footer {
    background-color: var(--dark-burgundy);
    color: var(--cream-bg);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--gold-accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-border);
    margin-bottom: 1.5rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold-accent);
    margin: 0;
    letter-spacing: 1px;
}

.footer-disclaimer {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(248, 243, 238, 0.8);
    margin: 0;
    max-width: 600px;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: var(--font-body);
}

.footer-nav,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-social a {
    color: var(--cream-bg);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-nav a:hover,
.footer-social a:hover {
    color: var(--gold-accent);
    opacity: 1;
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(248, 243, 238, 0.7);
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq {
    background: var(--cream-bg);
    padding: 5rem 0;
}

#faq .section-title {
    color: var(--primary-burgundy);
}

#faq .section-subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    transition: var(--transition-base);
    font-family: var(--font-heading);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-main);
    line-height: 1.7;
    display: none;
}

.faq-answer[aria-hidden="false"] {
    display: block;
}

/* ============================================
   BIO SECTION
   ============================================ */
#bio {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream-bg) 100%);
    padding: 5rem 0;
}

#bio .section-title {
    color: var(--primary-burgundy);
}

#bio .section-subtitle {
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.bio-portrait {
    position: sticky;
    top: 100px;
}

.portrait-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(90, 26, 45, 0.3);
    border: 3px solid var(--gold-accent);
}

.portrait-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-text {
    color: var(--text-main);
}

.bio-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.bio-story {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.bio-mission {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    padding: 2rem;
    border-left: 4px solid var(--gold-accent);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.bio-mission h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.bio-values {
    margin-bottom: 2rem;
}

.bio-values h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.bio-values ul {
    list-style: none;
    padding: 0;
}

.bio-values li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.bio-values li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-size: 1.25rem;
}

.bio-closing {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--primary-burgundy);
    line-height: 1.7;
}

/* Bio Highlight Box */
.bio-highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border: 2px solid var(--gold-accent);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.bio-highlight-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.25rem;
    margin-top: 0;
}

.bio-reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bio-reasons-list li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.bio-reasons-list li:last-child {
    margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    background: linear-gradient(135deg, var(--dark-burgundy), var(--primary-burgundy));
    padding: 5rem 0;
    color: var(--cream-bg);
}

#contact .section-title {
    color: var(--gold-accent);
}

#contact .section-subtitle {
    color: var(--cream-bg);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    color: var(--cream-bg);
}

.contact-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--gold-accent);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.contact-detail-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-item a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-detail-item a:hover {
    color: var(--cream-bg);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(90, 26, 45, 0.1);
}

.form-privacy-notice {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0 0 1.5rem 0;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--gold-accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9375rem;
}

.form-group .required {
    color: var(--primary-burgundy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(90, 26, 45, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-base);
    background: var(--white);
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc2626;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold-accent);
}

.checkbox-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
    position: relative;
}

/* Form Success Message */
.form-success-message {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold-accent);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    display: none;
}

.form-success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.form-success-message p {
    color: var(--text-main);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.form-success-message .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    * {
        max-width: 100%;
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--dark-burgundy);
        transition: right 0.3s ease;
        padding-top: 80px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-open nav {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 2rem;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--light-border);
    }

    nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        width: 100%;
    }

    nav a::after {
        display: none;
    }

    /* Overlay when menu is open */
    body.nav-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    /* Typography adjustments */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.5rem;
        gap: 0.5rem;
    }

    .logo-svg {
        width: 24px;
        height: 36px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    /* Section spacing */
    section {
        padding: 3rem 0;
    }

    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    #hero {
        min-height: auto;
        padding: 5rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image {
        order: -1; /* Show image first on mobile */
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.125rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .badge {
        justify-content: flex-start;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-ghost {
        width: 100%;
        text-align: center;
    }

    /* Trust Section */
    #trust {
        padding: 3rem 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-card {
        padding: 1.5rem 1rem;
    }

    .trust-icon {
        font-size: 2rem;
    }

    .trust-text {
        font-size: 0.95rem;
    }

    /* Footer */
    footer .container {
        flex-direction: column;
        text-align: center;
    }

    /* Services Section */
    #services {
        padding: 3rem 0;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-image {
        position: static;
        order: -1; /* Show image first on mobile */
    }

    .services-image-card {
        margin-bottom: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .service-image-wrapper {
        height: 250px;
        border-radius: 12px;
        overflow: hidden;
    }

    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .service-content {
        padding: 1.5rem 0;
    }

    .service-tag {
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .service-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .service-content .btn-primary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Reviews Section */
    #reviews {
        padding: 3rem 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-card::before {
        font-size: 3rem;
        top: 1rem;
        left: 1rem;
    }

    .review-stars {
        margin-bottom: 1rem;
    }

    .star {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .review-author {
        font-size: 1rem;
    }

    .review-label {
        font-size: 0.8rem;
    }

    /* FAQ Section */
    #faq {
        padding: 3rem 0;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question-text {
        font-size: 1rem;
        padding-right: 0.75rem;
    }

    .faq-icon {
        font-size: 1.25rem;
        width: 26px;
        height: 26px;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-answer[aria-hidden="false"] {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    /* Bio Section */
    #bio {
        padding: 3rem 0;
    }

    .bio-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bio-portrait {
        position: static; /* Remove sticky positioning on mobile */
        order: -1; /* Show portrait first on mobile */
        margin: 0 auto; /* Center the portrait */
    }

    .portrait-frame {
        max-width: 300px;
        margin: 0 auto;
        border-radius: 15px;
    }

    .portrait-frame::before {
        border-radius: 15px;
    }

    .bio-text {
        gap: 1.25rem;
    }

    .bio-text p {
        font-size: 1rem;
    }

    .bio-reasons {
        padding: 1.5rem;
        margin-top: 0.75rem;
    }

    .reasons-intro {
        font-size: 1rem;
    }

    .reasons-list {
        gap: 0.75rem;
    }

    .reasons-list li {
        padding-left: 1.75rem;
        font-size: 1rem;
    }

    .reasons-list li::before {
        font-size: 1.125rem;
    }

    .bio-closing {
        font-size: 1.125rem;
        padding-top: 1.5rem;
    }

    /* Contact Section */
    #contact {
        padding: 3rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-detail-item {
        padding: 1.25rem;
    }

    .detail-icon {
        font-size: 1.75rem;
    }

    .detail-text strong {
        font-size: 0.9375rem;
    }

    .detail-text p {
        font-size: 0.9375rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group label {
        font-size: 0.875rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }

    .checkbox-text {
        font-size: 0.875rem;
    }

    /* Back to Top Button */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }

    .back-to-top-text {
        font-size: 0.5rem;
    }

    /* Footer */
    footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-disclaimer {
        font-size: 0.8125rem;
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-nav a:hover,
    .footer-social a:hover {
        transform: translateX(0);
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* Buttons - Enhanced tap targets */
    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px; /* Minimum touch target size */
    }

    /* Container padding for mobile */
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Improved line height for readability */
    body {
        line-height: 1.7;
    }

    p {
        line-height: 1.7;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Extra small screens */
    .hero-headline {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .service-card,
    .review-card,
    .trust-card {
        padding: 1.5rem 1rem;
    }

    .portrait-frame {
        max-width: 260px;
    }
}

/* Tablet Devices (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Typography adjustments for tablet */
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    /* Container adjustments */
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Navigation */
    .nav-list {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.8rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-content {
        gap: 3rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trust-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-image {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Services - 2 columns on tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .service-icon {
        font-size: 2.75rem;
    }

    .service-title {
        font-size: 1.35rem;
    }

    /* Reviews - 2 columns on tablet */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .review-card {
        padding: 2rem;
    }

    .review-card:last-child {
        grid-column: 1 / -1;
        max-width: 66%;
        margin: 0 auto;
    }

    /* Trust cards - 2 columns on tablet */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Bio Section */
    .bio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bio-portrait {
        max-width: 400px;
        margin: 0 auto;
    }

    .bio-text p {
        font-size: 1.0625rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2.25rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
}
