/* ============================================
   Smart Counseling Services — Styles
   Burgundy + Blush | Vibrant Modern
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --burgundy: #781F2E;
    --burgundy-dark: #5A1521;
    --burgundy-light: #9E2B3F;
    --blush: #F9E4D6;
    --blush-light: #FDF3ED;
    --blush-dark: #E8C4B0;
    --cream: #FFF9F6;
    --white: #FFFFFF;
    --text-dark: #1A0A0E;
    --text-medium: #4A2030;
    --text-light: #7A5060;
    --text-muted: #9A7080;
    
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(120, 31, 46, 0.08);
    --shadow-md: 0 4px 16px rgba(120, 31, 46, 0.1);
    --shadow-lg: 0 8px 32px rgba(120, 31, 46, 0.12);
    --shadow-xl: 0 16px 48px rgba(120, 31, 46, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Background Decorative Shapes --- */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--burgundy);
    top: -200px;
    right: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--blush);
    bottom: 10%;
    left: -100px;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--burgundy);
    top: 50%;
    right: 5%;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: var(--blush-dark);
    bottom: 30%;
    right: 20%;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

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

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

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

.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--burgundy);
    z-index: 1001;
}

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

.logo-text {
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 40%, #B83A4F 70%, var(--blush-dark) 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(249, 228, 214, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(249, 228, 214, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(90, 21, 33, 0.3) 0%, transparent 50%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo {
    position: absolute;
    opacity: 0.12;
}

.geo-1 {
    width: 300px;
    height: 300px;
    background: var(--blush);
    border-radius: 50%;
    top: 5%;
    left: -5%;
}

.geo-2 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 15%;
    right: 10%;
    transform: rotate(45deg);
}

.geo-3 {
    width: 80px;
    height: 80px;
    background: var(--blush);
    border-radius: 50%;
    bottom: 25%;
    left: 15%;
}

.geo-4 {
    width: 200px;
    height: 200px;
    border: 3px solid var(--blush);
    border-radius: 50%;
    bottom: 10%;
    right: -3%;
}

.geo-5 {
    width: 60px;
    height: 60px;
    background: var(--white);
    top: 40%;
    right: 25%;
    transform: rotate(30deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 228, 214, 0.15);
    border: 1px solid rgba(249, 228, 214, 0.3);
    color: var(--blush);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blush);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--blush);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(249, 228, 214, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(249, 228, 214, 0.5);
}

.hero-actions .btn-outline:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(249, 228, 214, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

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

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--burgundy);
    margin-bottom: 12px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    vertical-align: middle;
    margin: 0 8px;
    opacity: 0.4;
}

.section-tag--light {
    color: var(--blush);
}

.section-tag--light::before,
.section-tag--light::after {
    background: var(--blush);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--burgundy);
}

.section-title--light {
    color: var(--white);
}

.section-title--light em {
    color: var(--blush);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.section-subtitle--light {
    color: rgba(249, 228, 214, 0.8);
}

/* --- Services Section --- */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--cream);
    z-index: 1;
}

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

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card--dark {
    background: var(--burgundy);
    color: var(--white);
}

.service-card--blush {
    background: var(--blush);
    color: var(--text-dark);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.service-card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.1;
}

.service-card--dark .service-card-accent {
    background: var(--white);
}

.service-card--blush .service-card-accent {
    background: var(--burgundy);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-card--blush .service-icon {
    background: rgba(120, 31, 46, 0.1);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.85;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card--dark .service-features li::before {
    background: var(--blush);
}

.service-card--blush .service-features li::before {
    background: var(--burgundy);
}

.services-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.accent-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--burgundy);
    opacity: 0.1;
}

.accent-dots {
    display: flex;
    gap: 8px;
}

.accent-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blush-dark);
}

.accent-dots span:nth-child(2) {
    background: var(--burgundy);
    opacity: 0.3;
}

.accent-dots span:nth-child(3) {
    background: var(--blush-dark);
}

.accent-dots span:nth-child(4) {
    background: var(--burgundy);
    opacity: 0.5;
}

.accent-dots span:nth-child(5) {
    background: var(--blush-dark);
}

.accent-dots span:nth-child(6) {
    background: var(--burgundy);
    opacity: 0.2;
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

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

.about-image-wrap {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/7;
}

.about-image-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decor-block {
    position: absolute;
    border-radius: var(--radius-md);
}

.decor-block-1 {
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    opacity: 0.1;
    bottom: -20px;
    left: -20px;
    border-radius: var(--radius-lg);
    transform: rotate(-15deg);
}

.decor-block-2 {
    width: 80px;
    height: 80px;
    background: var(--blush);
    top: -15px;
    right: -15px;
    border-radius: 50%;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--blush);
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Approach Section --- */
.approach {
    position: relative;
    padding: 100px 0;
    background: var(--burgundy);
    overflow: hidden;
    z-index: 1;
}

.approach-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 10% 90%, rgba(249, 228, 214, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(249, 228, 214, 0.06) 0%, transparent 50%);
}

.approach-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.approach-step {
    position: relative;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(249, 228, 214, 0.1);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.approach-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--blush);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(249, 228, 214, 0.7);
    line-height: 1.7;
}

/* --- Testimonial Section --- */
.testimonial-section {
    padding: 80px 0;
    background: var(--blush-light);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.testimonial-quote-mark {
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: var(--burgundy);
    font-size: 1rem;
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- CTA / Contact Section --- */
.cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
    overflow: hidden;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 100%, rgba(249, 228, 214, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(249, 228, 214, 0.08) 0%, transparent 50%);
}

.cta-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-geo {
    position: absolute;
    opacity: 0.06;
}

.cta-geo-1 {
    width: 200px;
    height: 200px;
    background: var(--blush);
    border-radius: 50%;
    top: -50px;
    right: 10%;
}

.cta-geo-2 {
    width: 100px;
    height: 100px;
    background: var(--white);
    bottom: 10%;
    left: 5%;
    transform: rotate(45deg);
}

.cta-geo-3 {
    width: 60px;
    height: 60px;
    background: var(--blush);
    border-radius: 50%;
    top: 30%;
    left: 15%;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(249, 228, 214, 0.12);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.cta-info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(249, 228, 214, 0.15);
    color: var(--blush);
}

.cta-info-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.cta-info-card p {
    font-size: 0.9rem;
    color: rgba(249, 228, 214, 0.75);
    line-height: 1.6;
}

.cta-info-card a {
    color: rgba(249, 228, 214, 0.75);
}

.cta-info-card a:hover {
    color: var(--blush);
}

/* Form */
.cta-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--blush);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--blush-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(120, 31, 46, 0.1);
}

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

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

.form-privacy {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin: 0 auto 16px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blush);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush-dark), var(--burgundy));
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--blush);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact svg {
    min-width: 16px;
    margin-top: 3px;
    color: var(--blush);
}

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

.footer-contact a:hover {
    color: var(--blush);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-privacy {
    font-size: 0.8rem !important;
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        color: var(--text-dark);
    }
    
    .nav-links a::after {
        background: var(--burgundy);
    }
    
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(26, 10, 14, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-form-wrap {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 28px 24px;
    }
}
