/* ============================================
   DrHREL.com - Main Stylesheet
   Color Palette: Navy (#0A1628), Teal (#14B8A6), Gold (#D4AF37)
   Fonts: Montserrat (body), Playfair Display (headings)
   ============================================ */

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Colors */
    --navy: #0A1628;
    --navy-light: #1a2942;
    --navy-dark: #050b14;
    --teal: #14B8A6;
    --teal-light: #2DD4BF;
    --teal-dark: #0D9488;
    --gold: #D4AF37;
    --gold-light: #F0E68C;
    --gold-dark: #B8960C;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--teal-light);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

/* Book Consultation button removed - now uses standard nav-link styling */

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(13, 30, 52, 0.95) 50%, rgba(10, 22, 40, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(20, 184, 166, 0.05);
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
}

.logo a {
    text-decoration: none;
}

.logo .signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 36px;
    color: var(--gold);
    opacity: 0.95;
    font-style: italic;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.logo .signature:hover {
    opacity: 1;
    transform: scale(1.05);
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6),
                 0 0 30px rgba(212, 175, 55, 0.4),
                 0 0 40px rgba(212, 175, 55, 0.2);
}

/* Handwritten Reveal Animation */
.signature-animated .letter {
    display: inline-block;
    opacity: 0;
    animation: letterReveal 0.15s ease-out forwards;
}

.signature-animated .letter:nth-child(1) { animation-delay: 0.1s; }
.signature-animated .letter:nth-child(2) { animation-delay: 0.25s; }
.signature-animated .letter:nth-child(3) { animation-delay: 0.4s; }
.signature-animated .letter:nth-child(4) { animation-delay: 0.6s; }
.signature-animated .letter:nth-child(5) { animation-delay: 0.75s; }
.signature-animated .letter:nth-child(6) { animation-delay: 0.9s; }
.signature-animated .letter:nth-child(7) { animation-delay: 1.05s; }

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-3px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-text {
    color: var(--white);
}

.logo-text .highlight {
    color: var(--teal);
}

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

.nav-link {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--teal);
}

.nav-link.active {
    color: var(--teal);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: var(--transition);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--teal-dark) 100%);
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(20, 184, 166, 0.2) 0%, transparent 50%);
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--teal-light);
    bottom: 15%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--teal-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-icon:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    color: var(--gold);
}

/* Hero Icon Links */
.hero-icon-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.hero-icon-link:hover .hero-icon {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    color: var(--gold);
}

.hero-icon-label {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
    text-align: center;
}

.hero-icon-link:hover .hero-icon-label {
    opacity: 1;
    color: var(--teal-light);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-signature {
    margin-top: 40px;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.8;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   4 PILLARS SECTION
   ============================================ */
.pillars {
    background: var(--gray-50);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 25px;
}

.pillar-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.pillar-subtitle {
    color: var(--teal);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pillar-description {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.pillar-features {
    list-style: none;
    margin-bottom: 25px;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.pillar-features i {
    color: var(--teal);
    font-size: 14px;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 600;
    transition: var(--transition);
}

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

/* ============================================
   WHAT MAKES DR.HREL DIFFERENT SECTION
   ============================================ */
.difference {
    background: var(--white);
}

.difference-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.difference-intro {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.difference-list {
    list-style: none;
}

.difference-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.difference-item-content h4 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.difference-item-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: var(--gold);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

/* ============================================
   LEAD MAGNET SECTION
   ============================================ */
.lead-magnet {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.lead-magnet-visual {
    position: relative;
}

.guide-cover {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.guide-cover:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.guide-cover-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.guide-cover-title h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.guide-cover-title p {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.guide-cover-author {
    margin-top: 30px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.guide-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
}

.lead-magnet-text .section-title {
    color: var(--white);
}

.lead-magnet-intro {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.lead-magnet-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
}

.lead-magnet-features {
    list-style: none;
    margin-bottom: 35px;
}

.lead-magnet-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 500;
}

.lead-magnet-features i {
    color: var(--gold);
    font-size: 18px;
}

.lead-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
}

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

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-privacy {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

/* ============================================
   WORKSHOP TEASER SECTION
   ============================================ */
.workshop-teaser {
    background: var(--gray-50);
}

.workshop-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--teal);
}

.workshop-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.workshop-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.workshop-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.workshop-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--gray-50);
    border-radius: 16px;
}

.workshop-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.workshop-detail i {
    font-size: 24px;
    color: var(--teal);
    margin-top: 5px;
}

.detail-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-value {
    font-size: 16px;
    color: var(--navy);
    font-weight: 600;
}

.workshop-includes {
    margin-bottom: 40px;
}

.workshop-includes h4 {
    color: var(--navy);
    margin-bottom: 20px;
}

.workshop-includes ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.workshop-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
}

.workshop-includes i {
    color: var(--teal);
    font-size: 16px;
}

.workshop-cta {
    text-align: center;
}

.workshop-price {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--gray-600);
}

.workshop-price strong {
    color: var(--navy);
}

/* ============================================
   BOOKING BANNER SECTION
   ============================================ */
.booking-banner {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
    color: var(--white);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-title {
    color: var(--white);
    margin-bottom: 20px;
}

.booking-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.booking-features {
    list-style: none;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 500;
}

.booking-features i {
    color: var(--gold);
    font-size: 18px;
}

.calendly-embed {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-2xl);
}

.calendly-placeholder {
    text-align: center;
    padding: 40px 20px;
}

.calendly-placeholder i {
    font-size: 64px;
    color: var(--teal);
    margin-bottom: 20px;
}

.calendly-placeholder h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.calendly-placeholder p {
    color: var(--gray-600);
    margin-bottom: 25px;
}

.integration-note {
    font-size: 13px;
    color: var(--gray-500);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--navy) 100%);
    color: var(--white);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(20, 184, 166, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content .footer-section:first-child {
    grid-column: span 1;
}

@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo .signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.9;
    font-style: italic;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.footer-logo .signature:hover {
    opacity: 1;
    transform: scale(1.03);
    color: var(--gold-light);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-signature {
    margin-top: 30px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--teal-light);
    padding-left: 5px;
}

.social-links i {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--teal-light);
}

/* Footer Section Styles */
.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-style: italic;
}

.footer-section-title {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--teal);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--teal);
    font-size: 1.1rem;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--teal-light);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .difference-content,
    .lead-magnet-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-card {
        padding: 30px 20px;
    }
    
    .workshop-title {
        font-size: 1.8rem;
    }
    
    .workshop-details {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .workshop-includes ul {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-icons {
        gap: 15px;
    }
    
    .hero-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .hero-icon-label {
        font-size: 11px;
    }
    
    .signature {
        font-size: 36px;
    }
    
    .guide-cover {
        padding: 25px;
    }
    
    .guide-cover-inner {
        padding: 25px;
    }
    
    .guide-cover-title h3 {
        font-size: 1.5rem;
    }
}
