/* ===================================
   MINDFUL TECH HELP - MAIN STYLESHEET
   Modern, Clean, Conversion-Focused
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Calming, trustworthy palette */
    --primary: #2D5A4A;        /* Deep sage green - trust, calm */
    --primary-light: #3D7A64;
    --primary-dark: #1D4A3A;
    --secondary: #E8B86D;       /* Warm gold - friendly, premium */
    --secondary-light: #F5D08A;
    
    --text-dark: #1A2B25;
    --text-body: #4A5D55;
    --text-muted: #6B7D75;
    --text-light: #8A9B93;
    
    --bg-white: #FFFFFF;
    --bg-cream: #FAF8F5;
    --bg-light: #F5F3F0;
    --bg-sage: #E8EDE9;
    
    --border: #E0E5E2;
    --border-light: #EDF0ED;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Support for modern mobile devices with notches */
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent iOS rubber-band scrolling issues */
    overscroll-behavior-y: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn i {
    font-size: 0.9em;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:focus {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-white:hover {
    background: var(--bg-cream);
    color: var(--primary-dark);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

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

.btn-block {
    width: 100%;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar a {
    color: var(--secondary-light);
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
}

.announcement-bar a:hover {
    color: white;
}

.announcement-bar i {
    margin-right: 8px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 12px 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-sage) 100%);
    padding: 80px 0 120px;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--secondary);
    flex-shrink: 0;
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
}

.hero-feature i {
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--primary-light);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--bg-sage);
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.badge-rating {
    color: var(--secondary);
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-body);
    font-style: italic;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ===== PROBLEMS SECTION ===== */
.problems-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--bg-cream);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.problem-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.problems-cta-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn:focus {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.service-card {
    position: relative;
    background: white;
    padding: 36px;
    padding-top: 40px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    border-color: var(--primary);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--secondary);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-sage);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.service-duration i {
    margin-right: 6px;
}

.service-price {
    margin-bottom: 16px;
}

.service-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 20px;
}

.service-includes {
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-body);
    padding: 6px 0;
    line-height: 1.4;
}

.service-includes i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Consultation Tab */
.consult-content {
    max-width: 800px;
    margin: 0 auto;
}

.consult-card {
    display: flex;
    gap: 48px;
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    align-items: center;
}

.consult-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.consult-info {
    flex: 1;
}

.free-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.consult-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.consult-info p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.consult-includes {
    margin-bottom: 24px;
}

.consult-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-body);
    padding: 6px 0;
    line-height: 1.4;
}

.consult-includes i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.services-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    padding: 20px 24px;
    background: var(--bg-sage);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-body);
    text-align: left;
}

.services-note i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 20px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--border);
    font-size: 1.25rem;
}

.how-it-works-cta {
    text-align: center;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--bg-sage);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
}

.about-image-badge i {
    color: var(--secondary);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-values {
    margin-top: 36px;
}

.value-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
}

.value-item:last-child {
    border-bottom: none;
}

.value-item > i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
}

.value-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--bg-cream);
    padding: 36px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.testimonials-cta p {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 20px;
}

/* ===== SERVICE AREA SECTION ===== */
.service-area-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

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

.service-area-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 32px 0;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-body);
}

.area-item i {
    color: var(--primary);
}

.area-note {
    padding: 16px 20px;
    background: var(--bg-sage);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.area-note strong {
    color: var(--text-dark);
}

.service-area-map {
    background: var(--bg-sage);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.map-placeholder {
    color: var(--text-muted);
}

.map-placeholder i {
    display: block;
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question:focus {
    outline: none;
    color: var(--primary);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    transition: var(--transition);
    color: var(--text-muted);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding-bottom: 24px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: var(--text-body);
    line-height: 1.8;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: var(--section-padding) 0;
    background: var(--bg-sage);
}

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

.booking-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.booking-benefits {
    margin: 32px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-body);
}

.benefit-item i {
    color: var(--primary);
}

.booking-contact-alt {
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    margin-top: 32px;
}

.booking-contact-alt p {
    margin-bottom: 8px;
}

.booking-contact-alt a {
    font-weight: 600;
}

.booking-embed {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 600px;
}

.booking-embed iframe {
    border: none;
    display: block;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-methods {
    margin-top: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    margin-bottom: 12px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
    color: inherit;
    text-decoration: none;
}

.contact-method:hover {
    background: var(--bg-sage);
    color: inherit;
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
}

.contact-details strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-details span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: var(--bg-cream);
    padding: 48px;
    border-radius: var(--radius-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    transition: var(--transition);
    color: var(--text-body);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7D75' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-logo:hover {
    color: white;
}

.footer-brand p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: white;
}

.footer h4 {
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: 20px;
}

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

.footer ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer ul a:hover {
    color: white;
}

.footer-areas ul li {
    font-size: 0.95rem;
}

.footer-areas ul li em {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

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

/* ===== STICKY CTA ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* Safe area support for devices with home indicators */
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 900;
    justify-content: center;
    gap: 12px;
}

.sticky-cta .btn {
    flex: 1;
    max-width: 200px;
    padding: 12px 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .service-area-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== TABLET PORTRAIT (768px - 1024px) ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    /* Touch-friendly nav links (min 44px tap target) */
    .nav-links a {
        display: block;
        padding: 14px 0;
        min-height: 48px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Hero adjustments */
    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
    }
    
    .hero-image-badge {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
    }
    
    /* Grid layouts - single column */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Consultation card */
    .consult-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .consult-includes {
        text-align: left;
    }
    
    /* Steps timeline */
    .step-connector {
        display: none;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    /* Other grids */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
    
    /* CTA buttons */
    .final-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
        min-height: 52px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    /* Contact form */
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    /* Touch-friendly form inputs */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    /* Touch-friendly buttons */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }
    
    .btn-sm {
        min-height: 44px;
        padding: 10px 18px;
    }
    
    /* Sticky CTA */
    .sticky-cta {
        display: flex;
    }
    
    .sticky-cta .btn {
        min-height: 48px;
    }
    
    .footer {
        padding-bottom: 100px;
    }
    
    /* Service tabs - touch friendly */
    .service-tabs {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-tab {
        min-height: 44px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* FAQ - touch friendly */
    .faq-question {
        min-height: 56px;
        padding: 16px 20px;
    }
    
    /* Values grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Problem cards */
    .problem-card {
        padding: 24px 20px;
    }
    
    /* Testimonial cards */
    .testimonial-card {
        padding: 28px 24px;
    }
}

/* ===== MOBILE SMALL (max 480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Announcement bar */
    .announcement-bar {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .announcement-bar p {
        line-height: 1.4;
    }
    
    /* Hero section */
    .hero {
        padding: 40px 0 80px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Service cards */
    .service-card {
        padding: 24px 20px;
    }
    
    .service-card h3 {
        font-size: 1.125rem;
    }
    
    .service-price .price {
        font-size: 1.875rem;
    }
    
    /* Booking embed */
    .booking-embed iframe {
        height: 700px;
    }
    
    /* About section */
    .about-image-badge {
        right: 0;
        font-size: 0.85rem;
        padding: 12px 16px;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    /* Step cards */
    .step-card {
        padding: 28px 20px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }
    
    /* Contact form */
    .contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.25rem;
    }
    
    /* Contact info */
    .contact-info-card {
        padding: 24px 20px;
    }
    
    .contact-info-card h3 {
        font-size: 1.25rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    /* Service tabs */
    .service-tabs {
        gap: 6px;
    }
    
    .service-tab {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    /* Buttons */
    .btn {
        font-size: 0.95rem;
        padding: 14px 20px;
    }
    
    .btn-lg {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    /* Final CTA section */
    .final-cta h2 {
        font-size: 1.5rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-brand h3 {
        font-size: 1.125rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
    }
    
    /* Sticky CTA */
    .sticky-cta {
        padding: 12px 16px;
    }
    
    .sticky-cta p {
        font-size: 0.85rem;
    }
    
    /* Map placeholder */
    .map-placeholder {
        padding: 40px 20px;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    /* Service note */
    .service-note {
        padding: 16px;
        font-size: 0.85rem;
    }
    
    /* Values grid */
    .value-item {
        padding: 16px;
    }
    
    .value-item h4 {
        font-size: 1rem;
    }
}

/* ===== VERY SMALL SCREENS (max 360px) ===== */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.375rem;
    }
    
    .service-tab {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 20px 16px;
    }
    
    .step-card {
        padding: 24px 16px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 20px 0;
    }
    
    .hero-image {
        max-height: 250px;
    }
    
    .sticky-cta {
        padding: 8px 16px;
    }
}

/* ===== TABLET SPECIFIC (600px - 900px) ===== */
@media (min-width: 600px) and (max-width: 900px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .area-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work well on touch */
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .problem-card:hover {
        transform: none;
    }
    
    .testimonial-card:hover {
        transform: none;
    }
    
    .step-card:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .service-card:active,
    .problem-card:active,
    .testimonial-card:active,
    .step-card:active {
        transform: scale(0.99);
    }
    
    /* Ensure tap targets are adequate */
    a, button, .service-tab, .faq-question {
        -webkit-tap-highlight-color: rgba(45, 90, 74, 0.1);
    }
    
    /* Improve scrolling performance */
    .nav-links,
    .services-content,
    .booking-embed {
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-wave {
        animation: none;
    }
    
    .btn,
    .service-card,
    .problem-card,
    .testimonial-card,
    .step-card {
        transition: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .announcement-bar,
    .navbar,
    .sticky-cta,
    .booking-embed,
    .hero-wave {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        padding: 40px 0;
    }
    
    .btn {
        border: 1px solid #000 !important;
    }
}
