/**
 * Stressfree Clinic Pages - Custom Styles
 * Modern, attractive styling for clinic/therapist website
 */

/* ============================================
   Base Styles & Variables
   ============================================ */

:root {
    --stressfree-primary: #2563eb;
    --stressfree-primary-dark: #1e40af;
    --stressfree-primary-light: #3b82f6;
    --stressfree-secondary: #10b981;
    --stressfree-secondary-dark: #059669;
    --stressfree-accent: #8b5cf6;
    --stressfree-text: #1f2937;
    --stressfree-text-light: #6b7280;
    --stressfree-bg-light: #f9fafb;
    --stressfree-bg-white: #ffffff;
    --stressfree-border: #e5e7eb;
    --stressfree-shadow: rgba(0, 0, 0, 0.08);
    --stressfree-shadow-lg: rgba(0, 0, 0, 0.12);
    --stressfree-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --stressfree-gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --stressfree-gradient-hero: linear-gradient(135deg, #B18803 0%, #D4A305 50%, #E5B306 100%);
    --stressfree-gold-base: #B18803;
    --stressfree-gold-light: #D4A305;
    --stressfree-gold-lighter: #E5B306;
    --stressfree-gold-dark: #8A6802;
}

* {
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(139, 92, 246, 0.08) 50%, rgba(16, 185, 129, 0.05) 100%);
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body.stressfree-standalone-page {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#stressfree-page-wrapper {
    position: relative;
    z-index: 1;
}

.stressfree-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   Header & Navigation
   ============================================ */

.stressfree-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    margin: 0 !important;
    margin-top: 0 !important;
    width: 100%;
}

.stressfree-header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stressfree-logo {
    flex-shrink: 0;
}

.stressfree-logo a {
    display: inline-block;
    text-decoration: none;
}

.stressfree-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.stressfree-nav {
    display: flex;
    align-items: center;
}

.stressfree-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.stressfree-nav-menu li {
    margin: 0;
}

.stressfree-nav-menu a {
    color: var(--stressfree-text);
    text-decoration: none;
    font-size: 1.05em;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.stressfree-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--stressfree-primary);
    transition: width 0.3s ease;
}

.stressfree-nav-menu a:hover {
    color: var(--stressfree-primary);
}

.stressfree-nav-menu a:hover::after {
    width: 100%;
}

.stressfree-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.stressfree-mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--stressfree-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.stressfree-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.stressfree-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.stressfree-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */

.stressfree-hero {
    background: transparent;
    color: var(--stressfree-primary);
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 120px;
    position: relative;
}

.stressfree-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stressfree-hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.2;
    color: var(--stressfree-primary);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.stressfree-hero-subtitle {
    font-size: 1.6em;
    font-weight: 400;
    margin: 0 0 35px 0;
    color: var(--stressfree-text);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.stressfree-hero p {
    font-size: 1.15em;
    line-height: 1.9;
    margin: 0 0 40px 0;
    color: var(--stressfree-text);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes gradientShift {
    0% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
    100% { 
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   About Section
   ============================================ */

.stressfree-about {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.stressfree-about-header {
    text-align: center;
    margin-bottom: 50px;
}

.stressfree-about h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--stressfree-primary);
    margin: 0 0 25px 0;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
}

.stressfree-header-image {
    margin: 30px 0;
    display: inline-block;
    max-width: 900px;
    width: 100%;
}

.stressfree-header-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.stressfree-author {
    text-align: center;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--stressfree-accent);
    margin: 20px 0 0 0;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stressfree-about-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
}

.stressfree-about-content {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    min-width: 0;
}

.stressfree-about-content p {
    font-size: 1.1em;
    line-height: 1.9;
    color: var(--stressfree-text);
    margin: 0 0 30px 0;
    text-align: justify;
}

.stressfree-about-content p:last-child {
    margin-bottom: 0;
}

.stressfree-about-sidebar {
    flex: 0 0 550px;
    position: sticky;
    top: 20px;
}

.stressfree-sidebar-image {
    width: 100%;
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: block;
}

.stressfree-sidebar-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* ============================================
   Issues Section
   ============================================ */

.stressfree-issues {
    padding: 80px 0;
    background: transparent;
}

.stressfree-issues h2 {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--stressfree-primary);
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 20px;
}

.stressfree-issues h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--stressfree-gradient-primary);
    border-radius: 2px;
}

.stressfree-issues .stressfree-section-intro {
    text-align: center;
    font-size: 1.2em;
    color: var(--stressfree-text-light);
    margin: 0 0 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.stressfree-issues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 60px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stressfree-issue-item {
    padding: 12px 0;
    font-size: 1.05em;
    font-weight: 400;
    color: var(--stressfree-text);
    text-align: left;
    border-bottom: 1px solid var(--stressfree-border);
    transition: color 0.3s ease;
}

.stressfree-issue-item:hover {
    color: var(--stressfree-primary);
}

/* ============================================
   Buttons
   ============================================ */

.stressfree-btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.05em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stressfree-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;
}

.stressfree-btn:hover::before {
    width: 300px;
    height: 300px;
}

.stressfree-btn span {
    position: relative;
    z-index: 1;
}

.stressfree-btn-primary {
    background: linear-gradient(135deg, var(--stressfree-secondary) 0%, var(--stressfree-secondary-dark) 100%);
    color: #ffffff;
}

.stressfree-btn-primary:hover {
    background: linear-gradient(135deg, var(--stressfree-secondary-dark) 0%, var(--stressfree-secondary) 100%);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.stressfree-btn-secondary {
    background-color: transparent;
    color: var(--stressfree-primary);
    border: 2px solid var(--stressfree-primary);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.stressfree-btn-secondary:hover {
    background: linear-gradient(135deg, var(--stressfree-primary) 0%, var(--stressfree-primary-dark) 100%);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    border-color: transparent;
}

/* ============================================
   Services Section
   ============================================ */

.stressfree-services {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.stressfree-services h2 {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--stressfree-primary);
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 20px;
}

.stressfree-services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--stressfree-gradient-primary);
    border-radius: 2px;
}

.stressfree-section-intro {
    text-align: center;
    font-size: 1.2em;
    color: var(--stressfree-text-light);
    margin: 0 0 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.stressfree-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.stressfree-service-card {
    background: var(--stressfree-bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stressfree-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--stressfree-secondary) 0%, var(--stressfree-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stressfree-service-card:hover::before {
    transform: scaleX(1);
}

.stressfree-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stressfree-service-card h3 {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--stressfree-primary);
    margin: 0 0 18px 0;
    letter-spacing: -0.01em;
}

.stressfree-service-card p {
    color: var(--stressfree-text-light);
    line-height: 1.8;
    margin: 0 0 25px 0;
    font-size: 1.05em;
}

.stressfree-service-card .stressfree-btn {
    margin-top: 15px;
}

/* ============================================
   Content Sections
   ============================================ */

.stressfree-content-section {
    padding: 80px 0;
    background: transparent;
}

.stressfree-content-section h2 {
    font-size: 2.6em;
    font-weight: 700;
    color: var(--stressfree-primary);
    margin: 0 0 25px 0;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 15px;
}

.stressfree-content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--stressfree-gradient-primary);
    border-radius: 2px;
}

.stressfree-content-section h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--stressfree-primary);
    margin: 40px 0 20px 0;
    letter-spacing: -0.01em;
}

.stressfree-content-section p {
    font-size: 1.1em;
    line-height: 1.9;
    color: var(--stressfree-text);
    margin: 0 0 25px 0;
}

/* ============================================
   Benefits & Lists
   ============================================ */

.stressfree-benefits {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 16px;
    margin: 35px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--stressfree-secondary);
    transition: transform 0.3s ease;
}

.stressfree-benefits:hover {
    transform: translateX(5px);
}

.stressfree-benefits h3 {
    margin-top: 0;
    color: var(--stressfree-primary);
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 25px;
}

.stressfree-benefits ul {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.stressfree-benefits ul li {
    padding: 14px 0 14px 40px;
    position: relative;
    color: var(--stressfree-text);
    line-height: 1.7;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.stressfree-benefits ul li:hover {
    color: var(--stressfree-primary);
}

.stressfree-benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--stressfree-secondary);
    font-weight: bold;
    font-size: 1.4em;
    background: rgba(16, 185, 129, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
}

.stressfree-conditions ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.stressfree-conditions ul li {
    padding: 16px 0 16px 35px;
    position: relative;
    color: var(--stressfree-text);
    line-height: 1.7;
    border-bottom: 1px solid var(--stressfree-border);
    font-size: 1.05em;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.stressfree-conditions ul li:hover {
    padding-left: 40px;
    color: var(--stressfree-primary);
}

.stressfree-conditions ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--stressfree-accent);
    font-size: 1.2em;
    line-height: 1.5;
    font-weight: bold;
}

/* ============================================
   Approach Section
   ============================================ */

.stressfree-approach {
    margin: 35px 0;
    padding: 35px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-left: 5px solid;
    border-image: linear-gradient(135deg, var(--stressfree-primary) 0%, var(--stressfree-accent) 100%) 1;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stressfree-approach:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stressfree-approach p {
    margin: 0;
    font-style: italic;
    color: var(--stressfree-text);
    font-size: 1.1em;
    line-height: 1.8;
}

/* ============================================
   Testimonials Section
   ============================================ */

.stressfree-testimonials {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.stressfree-award-section {
    text-align: center;
    margin-bottom: 60px;
}

.stressfree-award-image {
    display: inline-block;
    margin-bottom: 25px;
    max-width: 700px;
    width: 100%;
}

.stressfree-award-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.stressfree-award-text {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--stressfree-primary);
    margin: 0;
    letter-spacing: 0.5px;
}

.stressfree-testimonials h2 {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--stressfree-primary);
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 20px;
}

.stressfree-testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--stressfree-gradient-primary);
    border-radius: 2px;
}

.stressfree-testimonials .stressfree-section-intro {
    text-align: center;
    font-size: 1.2em;
    color: var(--stressfree-text-light);
    margin: 0 0 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.stressfree-testimonials-carousel {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stressfree-testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.stressfree-testimonial-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--stressfree-secondary);
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
}

.stressfree-testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stressfree-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.stressfree-carousel-btn {
    background: var(--stressfree-primary);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stressfree-carousel-btn:hover {
    background: var(--stressfree-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stressfree-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.stressfree-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.stressfree-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--stressfree-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.stressfree-carousel-dot.active {
    background: var(--stressfree-primary);
    width: 30px;
    border-radius: 6px;
}

.stressfree-testimonial-content {
    position: relative;
    padding-top: 20px;
    padding-left: 20px;
}

.stressfree-testimonial-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 5em;
    color: var(--stressfree-secondary);
    opacity: 0.25;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

.stressfree-testimonial-content p {
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--stressfree-text);
    margin: 0 0 20px 0;
    font-style: italic;
}

.stressfree-testimonial-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CTA Sections
   ============================================ */

.stressfree-cta {
    background: linear-gradient(135deg, var(--stressfree-secondary) 0%, var(--stressfree-secondary-dark) 50%, var(--stressfree-accent) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: #ffffff;
    padding: 90px 20px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.stressfree-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.stressfree-cta h2 {
    font-size: 2.8em;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.stressfree-cta p {
    font-size: 1.25em;
    margin: 0 0 40px 0;
    opacity: 0.95;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.stressfree-cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.stressfree-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--stressfree-secondary), var(--stressfree-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stressfree-cta-section h3 {
    font-size: 2em;
    color: var(--stressfree-primary);
    margin: 0 0 20px 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.stressfree-cta-section p {
    font-size: 1.15em;
    color: var(--stressfree-text-light);
    margin: 0 0 30px 0;
    line-height: 1.8;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .stressfree-header {
        padding: 12px 0;
    }
    
    .stressfree-header-container {
        padding: 0 20px;
    }
    
    .stressfree-logo-img {
        height: 50px;
    }
    
    .stressfree-mobile-menu-toggle {
        display: flex;
    }
    
    .stressfree-nav-menu {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .stressfree-nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .stressfree-nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--stressfree-border);
    }
    
    .stressfree-nav-menu li:last-child {
        border-bottom: none;
    }
    
    .stressfree-nav-menu a {
        font-size: 1.1em;
        padding: 10px 20px;
        display: block;
    }
    
    .stressfree-hero {
        padding: 70px 20px;
    }
    
    .stressfree-hero h1 {
        font-size: 2.2em;
    }
    
    .stressfree-hero-subtitle {
        font-size: 1.3em;
    }
    
    .stressfree-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stressfree-services h2,
    .stressfree-content-section h2,
    .stressfree-about h2,
    .stressfree-issues h2,
    .stressfree-testimonials h2 {
        font-size: 2.2em;
    }
    
    .stressfree-testimonials {
        padding: 50px 0;
    }
    
    .stressfree-award-image {
        max-width: 600px;
    }
    
    .stressfree-award-text {
        font-size: 1.1em;
    }
    
    .stressfree-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stressfree-issues {
        padding: 50px 0;
    }
    
    .stressfree-issues-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }
    
    .stressfree-issue-item {
        padding: 10px 0;
        font-size: 1em;
    }
    
    .stressfree-about {
        padding: 50px 0;
    }
    
    .stressfree-about-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .stressfree-about-sidebar {
        flex: 1;
        position: relative;
        width: 100%;
    }
    
    .stressfree-about-content {
        padding: 30px 20px;
    }
    
    .stressfree-header-image {
        max-width: 100%;
    }
    
    .stressfree-sidebar-image {
        min-height: 300px;
    }
    
    .stressfree-cta {
        padding: 60px 20px;
    }
    
    .stressfree-cta h2 {
        font-size: 2.2em;
    }
    
    .stressfree-container {
        padding: 0 15px;
    }
    
    .stressfree-service-card,
    .stressfree-benefits,
    .stressfree-cta-section {
        padding: 30px;
    }
    
    .stressfree-content-section,
    .stressfree-services {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .stressfree-hero h1 {
        font-size: 1.75em;
    }
    
    .stressfree-btn {
        padding: 12px 24px;
        font-size: 0.95em;
    }
    
    .stressfree-services h2,
    .stressfree-content-section h2,
    .stressfree-about h2,
    .stressfree-issues h2,
    .stressfree-testimonials h2 {
        font-size: 1.75em;
    }
    
    .stressfree-award-image {
        max-width: 500px;
    }
    
    .stressfree-testimonial-item {
        padding: 30px;
        flex: 0 0 100%;
    }
    
    .stressfree-testimonial-content p {
        font-size: 1em;
    }
    
    .stressfree-testimonials-track {
        gap: 0;
    }
    
    .stressfree-award-text {
        font-size: 1em;
    }
    
    .stressfree-issues-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stressfree-issue-item {
        padding: 10px 0;
        font-size: 0.95em;
    }
}

/* ============================================
   Typography Enhancements
   ============================================ */

body,
.stressfree-content-section,
.stressfree-services,
.stressfree-about,
.stressfree-hero,
.stressfree-cta {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stressfree-content-section h2,
.stressfree-content-section h3,
.stressfree-service-card h3,
.stressfree-services h2,
.stressfree-about h2,
.stressfree-hero h1,
.stressfree-cta h2 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: -0.02em;
}

/* ============================================
   Accessibility & Additional Enhancements
   ============================================ */

.stressfree-btn:focus {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.stressfree-service-card:focus-within {
    outline: 3px solid var(--stressfree-primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Selection color */
::selection {
    background: rgba(37, 99, 235, 0.2);
    color: var(--stressfree-text);
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--stressfree-primary) 0%, var(--stressfree-accent) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--stressfree-primary-dark) 0%, var(--stressfree-accent) 100%);
}

