/* ===== UZZAMAN THERAPY WEBSITE STYLES ===== */
/* Professional, culturally responsive therapy practice design */

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

/* CSS Custom Properties (Variables) */
:root {
    --primary-brown: #8B6F4D;
    --light-beige: #F5F1EB;
    --warm-beige: #E6D7C3;
    --text-brown: #5D4E37;
    --white: #FFFFFF;
    --accent-brown: #A0845C;
    --shadow: rgba(139, 111, 77, 0.1);
    --shadow-strong: rgba(139, 111, 77, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-brown), var(--accent-brown));
    --gradient-light: linear-gradient(135deg, var(--light-beige), var(--warm-beige));
    
    /* Typography */
    --font-primary: 'Georgia', serif;
    --font-fallback: 'Times New Roman', serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 3px;
    --radius-md: 5px;
    --radius-lg: 10px;
    --radius-xl: 15px;
    --radius-round: 50%;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* Base Typography */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-brown);
    background: var(--white);
    font-size: 16px;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-brown);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-brown);
    font-weight: 500;
    transition: all var(--transition-fast);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-brown);
    background: var(--light-beige);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-brown);
    cursor: pointer;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-brown);
}

/* Optional: Hide text on mobile to save space */
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
    
    .logo-image {
        height: 35px;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 60px 0;
}

.section-alt {
    background: var(--light-beige);
}
.section-alt-warm-beige {
    background: var(--warm-beige);
}
/* ===== ENHANCED HERO SECTIONS ===== */
.hero {
    background: var(--gradient-light);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero {
    background: var(--gradient-light);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero.enhanced {
    background: var(--gradient-light);
    padding: 100px 0 80px;
    position: relative;
}

.page-hero.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-brown);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-brown);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-brown);
    margin-top: 0.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: normal;
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-brown);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: normal;
}

h3 {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero h1,
.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: normal;
}

.hero p,
.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-brown);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-brown);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== INTRO CONTENT ===== */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-lead {
    font-size: 1.2rem;
    color: var(--text-brown);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-point {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-brown);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: var(--primary-brown);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--accent-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-strong);
}

.cta-button.primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px var(--shadow);
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--primary-brown);
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid var(--primary-brown);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.secondary-button:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 25px var(--shadow);
    transition: all var(--transition-fast);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.service-card.premium {
    border: 2px solid var(--primary-brown);
}

.service-card.featured {
    position: relative;
}

.service-card.enhanced {
    border: 1px solid var(--warm-beige);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.service-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.service-title h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.service-subtitle {
    font-size: 0.95rem;
    color: var(--accent-brown);
    font-style: italic;
    margin: 0;
}

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

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Service Details */
.service-details {
    margin-top: 1.5rem;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-left: 1rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.detail-item {
    background: var(--light-beige);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-brown);
}

.feature-list {
    list-style: none;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-brown);
    font-weight: bold;
}

/* DBT Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.skill-card {
    background: var(--light-beige);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
}

.skill-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.skill-card h5 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.skill-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Benefits Container */
.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.benefit-tag {
    background: var(--warm-beige);
    color: var(--text-brown);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    transition: all var(--transition-fast);
}

.benefit-tag.premium {
    background: var(--gradient-primary);
    color: var(--white);
}

.benefit-tag:hover {
    transform: translateY(-2px);
}

/* ===== TREATMENT APPROACH ===== */
.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-brown);
}

.integration-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step.enhanced {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 3px 15px var(--shadow);
    transition: all var(--transition-fast);
}

.step.enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.step-number {
    background: var(--primary-brown);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3,
.step-content h4 {
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.step-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.step-tag {
    background: var(--light-beige);
    color: var(--text-brown);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Integration Circle */
.approach-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.integration-circle {
    position: relative;
    width: 350px;
    height: 350px;
}

.integration-circle.enhanced {
    width: 400px;
    height: 400px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 8px 25px var(--shadow);
}

.center-circle h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.center-circle p {
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
}

.surrounding-approaches {
    position: relative;
    width: 100%;
    height: 100%;
}

.approach-orbit {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate 30s linear infinite;
}

.approach-item {
    position: absolute;
    background: var(--white);
    color: var(--text-brown);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 12px var(--shadow);
    border: 2px solid var(--warm-beige);
    white-space: nowrap;
}

.approach-item:nth-child(1) { top: 10%; left: 50%; }
.approach-item:nth-child(2) { top: 25%; left: 85%; }
.approach-item:nth-child(3) { top: 50%; left: 95%; }
.approach-item:nth-child(4) { top: 75%; left: 85%; }
.approach-item:nth-child(5) { top: 90%; left: 50%; }
.approach-item:nth-child(6) { top: 75%; left: 15%; }
.approach-item:nth-child(7) { top: 50%; left: 5%; }
.approach-item:nth-child(8) { top: 25%; left: 15%; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== COMMON CONCERNS SECTION ===== */
.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.concern-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
    transition: all var(--transition-fast);
}

.concern-category.enhanced {
    border-left: 4px solid var(--primary-brown);
    position: relative;
}

.concern-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.concern-category h3 {
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--light-beige);
    padding-bottom: 0.5rem;
}

.category-content {
    position: relative;
}

.concern-list {
    list-style: none;
    margin: 0;
}

.concern-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-brown);
}

.concern-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-brown);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== GETTING STARTED SECTION ===== */
.getting-started {
    background: var(--gradient-light);
    position: relative;
}

.getting-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.getting-started-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text-brown);
}

.next-steps-container {
    margin: 3rem 0;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.next-step {
    text-align: left;
}

.next-step.enhanced {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
    transition: all var(--transition-fast);
}

.next-step.enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.step-info h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-info p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-brown);
}

.step-benefit {
    font-size: 0.9rem;
    color: var(--accent-brown);
    font-style: italic;
    border-top: 1px solid var(--light-beige);
    padding-top: 0.75rem;
    margin-top: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-reassurance {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: var(--radius-lg);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-brown);
    border-left: 4px solid var(--primary-brown);
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.card.featured {
    border: 2px solid var(--primary-brown);
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-brown);
    border-radius: var(--radius-round);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

/* ===== GRIDS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-brown);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--warm-beige);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* ===== LISTS ===== */
.custom-list {
    list-style: none;
}

.custom-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.custom-list li:before {
    content: "•";
    color: var(--primary-brown);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.check-list li:before {
    content: "•";
    color: var(--primary-brown);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== IMAGES ===== */
.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-image-centered {
    display: block;
    margin: 0 auto;
    width: 50%; /* or whatever width you prefer */
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow);
}

/* About Page - Circular Therapist Image */
.about-image-circle {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 35px var(--shadow-strong);
    border: 4px solid var(--warm-beige);
    transition: all var(--transition-fast);
}

.about-image-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px var(--shadow-strong);
}

.therapist-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1rem;
}

/* About Content Layout */
.experience-content {
    background: var(--warm-beige);
}
.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.approach-highlight {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    border-left: 4px solid var(--primary-brown);
}

.approach-highlight h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ===== NOTICES & ALERTS ===== */
.notice {
    background: var(--light-beige);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.notice-icon {
    font-size: 1.2rem;
}

.notice h3 {
    color: var(--primary-brown);
    margin: 0;
    font-size: 1.1rem;
}

.hipaa-notice {
    background: var(--light-beige);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.hipaa-notice p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Emergency Notice */
.emergency-info {
    background: var(--primary-brown);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.emergency-icon {
    font-size: 1.2rem;
}

.emergency-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--white);
}

/* ===== CONTACT ELEMENTS ===== */
.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    color: var(--primary-brown);
}

.contact-text h3 {
    color: var(--primary-brown);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-text p {
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--accent-brown);
}

/* ===== PRICING ELEMENTS ===== */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
    overflow: hidden;
    transition: transform var(--transition-fast);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-brown);
    transform: scale(1.02);
}

.card-header {
    background: var(--primary-brown);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.pricing-card.featured .card-header {
    background: var(--accent-brown);
}

.card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

.card-content {
    padding: 2rem;
}

/* ===== TAGS & BADGES ===== */
.benefit-tag {
    background: var(--warm-beige);
    color: var(--text-brown);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin: 0.25rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-brown);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--warm-beige);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--warm-beige);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-brown);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: var(--spacing-md); }
.mb-2 { margin-bottom: var(--spacing-lg); }
.mt-1 { margin-top: var(--spacing-md); }
.mt-2 { margin-top: var(--spacing-lg); }

.p-1 { padding: var(--spacing-md); }
.p-2 { padding: var(--spacing-lg); }

.hidden {
    display: none;
}

.visible {
    display: block;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }

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

    .integration-circle {
        width: 300px;
        height: 300px;
    }

    .center-circle {
        width: 120px;
        height: 120px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    /* Typography */
    .hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    /* Layout */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    .hero,
    .page-hero {
        padding: 60px 0 40px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Stats */
    .hero-stats {
        gap: 2rem;
    }

    /* About Page Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-image-circle {
        width: 200px;
        height: 200px;
    }

    /* Integration Circle */
    .integration-circle {
        width: 280px;
        height: 280px;
    }

    .center-circle {
        width: 100px;
        height: 100px;
    }

    .center-circle h4 {
        font-size: 0.9rem;
    }

    .center-circle p {
        font-size: 0.7rem;
    }

    /* Intro Features */
    .intro-features {
        grid-template-columns: 1fr;
    }

    /* Next Steps */
    .next-steps {
        grid-template-columns: 1fr;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Cards */
    .pricing-card.featured {
        transform: none;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1,
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .card,
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .integration-circle {
        width: 250px;
        height: 250px;
    }

    .center-circle {
        width: 90px;
        height: 90px;
    }

    .approach-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}