/* ================================
   VARIABLES & RESET
   ================================ */
:root {
    /* Modern Color Palette */
    --primary-color: #5B8A9F;
    --secondary-color: #7FA9BC;
    --accent-color: #9BC4D4;
    --dark-blue: #2C3E50;
    --text-dark: #1a1a1a;
    --text-medium: #4a5568;
    --text-light: #718096;
    --background: #ffffff;
    --background-light: #f8fafc;
    --background-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --gold-accent: #D4AF37;
    --success: #10b981;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.75;
    background-color: var(--background);
    overflow-x: hidden;
    letter-spacing: -0.01em;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.lead-text {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.highlight-text {
    position: relative;
    display: inline;
    font-weight: 600;
    color: var(--primary-color);
}

/* ================================
   UTILITIES
   ================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 3rem);
    width: 100%;
}

.section {
    padding: clamp(3rem, 10vw, 7rem) 0;
    overflow-x: hidden;
}

.section:nth-child(even) {
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 8vw, 5rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto var(--spacing-lg);
    border-radius: 2px;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.center-text {
    text-align: center;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 640px) {
    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        white-space: normal;
    }
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.nav-logo {
    font-family: var(--font-secondary);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-text {
    display: inline-block;
}

@media (max-width: 640px) {
    .logo-img {
        height: 75px;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
}

.nav-links {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.625rem;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85%, 320px);
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1.125rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('Images/cloud-background.png') center/cover no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    text-align: center;
    padding-top: 150px;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: clamp(2rem, 5vw, 4rem);
}

.hero-title {
    position: relative;
    color: #1b6099;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    font-weight: 800;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem);
    border: 3px solid #1b6099;
    border-radius: var(--radius-lg);
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('Images/spiral.jpg') center/cover no-repeat;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    opacity: 1;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    color: #1b6099;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
}

.hero .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 20px rgba(91, 138, 159, 0.4);
}

.hero .btn-primary:hover {
    box-shadow: 0 12px 30px rgba(91, 138, 159, 0.5);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
    animation: scroll 1.5s infinite;
}

/* Removed duplicate media query - consolidated below */

/* ================================
   TWO COLUMN LAYOUT
   ================================ */
.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column {
    display: flex;
    flex-direction: column;
}

.image-column img {
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.image-column img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 968px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        display: flex;
        flex-direction: column;
    }
    
    .two-column .image-column {
        order: -1; /* Always show images first on mobile */
    }
    
    .two-column .content-column {
        order: 1;
    }
    
    .two-column.reverse {
        direction: ltr;
    }
}

/* ================================
   CONTENT BLOCKS
   ================================ */
.content-block {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.content-block:last-child {
    margin-bottom: 0;
}

/* ================================
   LISTS
   ================================ */
.method-list,
.checkmark-list {
    margin: var(--spacing-md) 0;
    padding-left: 0;
}

.method-list li,
.checkmark-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.875rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.method-list li::before {
    content: '▪';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.125rem;
}

.two-column-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .two-column-list {
        grid-template-columns: 1fr;
    }
}

/* ================================
   INFO BOX
   ================================ */
.info-box {
    background: linear-gradient(135deg, rgba(91, 138, 159, 0.1), rgba(155, 196, 212, 0.1));
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    color: #000000;
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
}

.info-box h3 i {
    color: #000000;
}

.info-box p {
    margin-bottom: 0;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ================================
   BENEFITS GRID
   ================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin: clamp(2.5rem, 6vw, 4rem) 0;
}

.benefit-card {
    background: white;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1;
    color: var(--primary-color);
}

.benefit-icon i {
    display: inline-block;
}

.benefit-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.benefit-card ul {
    padding-left: 0;
}

.benefit-card ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.benefit-card ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CONTACT INFO BAR
   ================================ */

.headshot-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--primary-color);
    transition: var(--transition);
}

.headshot-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.contact-info-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--background-gray);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.contact-item .icon {
    font-size: 1.25rem;
}

@media (max-width: 640px) {
    .contact-info-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================================
   SESSIONS GRID
   ================================ */
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-xl);
}

.session-card {
    background: white;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-color);
}

.session-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.session-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.session-card.featured h3,
.session-card.featured p,
.session-card.featured .session-duration {
    color: white;
}

.session-card.package-card {
    border: 2px solid var(--gold-accent);
    background: linear-gradient(to bottom, #ffffff, #fffbf0);
}

.session-card.group-card {
    grid-column: 1 / -1;
    max-width: 100%;
}

.session-icon {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-md);
    line-height: 1;
    color: var(--primary-color);
}

.session-icon i {
    display: inline-block;
}

.session-card.featured .session-icon {
    color: white;
}

.session-card h3 {
    margin-bottom: var(--spacing-md);
    min-height: auto;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.3;
}

.session-duration {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

.session-price {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-color);
    margin: var(--spacing-md) 0;
    font-family: var(--font-secondary);
}

.session-card.featured .session-price {
    color: white;
}

.session-card p {
    flex-grow: 1;
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
}

.session-card .btn {
    margin-top: auto;
}

.package-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--gold-accent);
    color: white;
    padding: 0.375rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.package-includes {
    background: rgba(91, 138, 159, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
    border: 1px solid var(--border-color);
}

.package-includes p {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.package-includes ul {
    padding-left: var(--spacing-md);
}

.package-includes ul li {
    position: relative;
    padding-left: var(--spacing-sm);
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.package-includes ul li::before {
    content: '✓';
    position: absolute;
    left: -10px;
    color: var(--success);
    font-weight: bold;
}

@media (max-width: 768px) {
    .sessions-grid {
        grid-template-columns: 1fr;
    }
    
    .session-card.group-card {
        grid-column: 1;
    }
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #1e3a5f, var(--primary-color));
    padding: clamp(2.5rem, 6vw, 4rem);
    border-radius: var(--radius-xl);
    color: white;
    margin-top: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.cta-section h3 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.9);
    padding: clamp(3rem, 6vw, 5rem) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.footer-logo {
    width: auto;
    height: 60px;
    object-fit: contain;
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-sm);
}

@media (max-width: 640px) {
    .footer-logo {
        height: 50px;
    }
}

.footer-section p {
    opacity: 0.85;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-section ul {
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    opacity: 0.85;
    transition: var(--transition-fast);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.875rem;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 968px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        display: flex;
        flex-direction: column;
    }
    
    .two-column .image-column {
        order: -1; /* Always show images first on mobile */
    }
    
    .two-column .content-column {
        order: 1;
    }
    
    .two-column.reverse {
        direction: ltr;
    }
    
    .two-column-list {
        grid-template-columns: 1fr;
    }
    
    .session-card.group-card {
        grid-column: span 1;
    }
    
    .image-column img {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .headshot-img {
        max-width: 300px;
        margin: 0 auto var(--spacing-md);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    h3 {
        font-size: clamp(1.375rem, 5vw, 1.875rem);
    }
    
    p {
        font-size: 1rem;
    }
    
    .lead-text {
        font-size: clamp(1.125rem, 4vw, 1.25rem);
    }
    
    .section {
        padding: clamp(2.5rem, 10vw, 4rem) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .info-box {
        padding: var(--spacing-md);
    }
    
    .benefit-card,
    .session-card {
        padding: var(--spacing-md);
    }
    
    .benefits-grid {
        gap: var(--spacing-md);
    }
    
    .sessions-grid {
        gap: var(--spacing-md);
    }
    
    .cta-section {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 1.75rem;
        --spacing-xl: 2.5rem;
        --spacing-2xl: 3.5rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.875rem, 10vw, 2.5rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        white-space: normal;
        text-align: center;
    }
    
    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .image-column img {
        max-width: 280px;
    }
    
    .headshot-img {
        max-width: 220px;
    }
    
    .contact-info-bar {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .contact-item {
        font-size: 0.875rem;
    }
    
    .method-list li,
    .checkmark-list li {
        font-size: 0.9375rem;
        padding-left: 1.75rem;
    }
    
    .info-box h3 {
        font-size: 1.25rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .session-icon {
        font-size: 2.25rem;
    }
    
    .session-price {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }
    
    .package-badge {
        top: -12px;
        right: 16px;
        padding: 0.325rem 1rem;
        font-size: 0.6875rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .image-column img {
        max-width: 240px;
    }
    
    .headshot-img {
        max-width: 180px;
    }
    
    .contact-info-bar {
        font-size: 0.8125rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ================================
   PRINT STYLES
   ================================ */
@media print {
    .navbar,
    .scroll-indicator,
    .mobile-menu-toggle,
    .btn,
    .scroll-to-top {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    body {
        background: white;
    }
}

/* ================================
   ICON STYLING
   ================================ */
h2 i, h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.info-box h3 i {
    color: var(--primary-color);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.btn i {
    margin-right: 0.5rem;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* ================================
   CONTACT INFO BAR
   ================================ */

/* ================================
   HYPNOTHERAPY SECTION BACKGROUND
   ================================ */
.hypnotherapy-power {
    background: url('Images/cloud-background.png') center/cover no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.hypnotherapy-power .container {
    position: relative;
    z-index: 1;
}

.footer-section a[aria-label] i {
    font-size: 2rem; /* slightly smaller than before */
    line-height: 1;
    margin-right: 0.5rem;
    margin-left: 0;
    vertical-align: middle;
    transition: color 0.2s;
}

.footer-section a[aria-label]:last-child i {
    margin-right: 0;
}

@media (max-width: 640px) {
    .footer-section a[aria-label] i {
        font-size: 1.5rem;
        margin-right: 0.5rem;
    }
}

.who-i-work-with .two-column .image-column img {
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .who-i-work-with .two-column .image-column img {
        margin-bottom: 2rem;
    }
}
