/* ============================================
   FOR ALL THE REASONS THERAPY
   Custom Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-950: #042f2e;
    
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* --- Base & Typography --- */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--slate-800);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* --- Selection --- */
::selection {
    background: var(--teal-200);
    color: var(--teal-900);
}

/* --- Utility --- */
.section-padding {
    padding: 100px 0;
}

/* --- Section Header --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-700);
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    padding: 0.4em 1em;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.section-tag.tag-light {
    color: var(--teal-200);
    background: rgba(45, 212, 193, 0.1);
    border-color: rgba(45, 212, 193, 0.25);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-title.title-light {
    color: #ffffff;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.8;
}

.section-desc.desc-light {
    color: var(--slate-300);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-md);
}

/* Logo */
.logo-mark {
    color: var(--teal-600);
    transition: color 0.3s ease;
}

.logo-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--slate-900);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.logo-sub {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-500);
}

/* Nav Links */
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.25em 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-600);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--teal-700);
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #ffffff;
    background: var(--teal-700);
    border: none;
    padding: 0.8em 1.6em;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    background: var(--teal-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-primary.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1em 1.6em;
    font-size: 0.9rem;
}

.btn-primary.btn-light {
    background: #ffffff;
    color: var(--teal-800);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary.btn-light:hover {
    background: var(--teal-50);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--teal-700);
    background: transparent;
    border: 1.5px solid var(--teal-300);
    padding: 0.78em 1.6em;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: var(--teal-50);
    border-color: var(--teal-500);
    transform: translateY(-2px);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #ffffff;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 0.78em 1.6em;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1em 2em;
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 60;
}

.mobile-menu-btn .bar {
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
}

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

.mobile-link {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-700);
    text-decoration: none;
    padding: 0.75em 0;
    border-bottom: 1px solid var(--slate-100);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-link:hover {
    color: var(--teal-700);
    padding-left: 0.5em;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-900) 40%, var(--slate-800) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(45, 212, 193, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 20%, rgba(20, 184, 166, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 70% 80%, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(4, 47, 46, 0.6) 100%);
}

/* Decorative Elements */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(45, 212, 193, 0.06) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-deco-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(45, 212, 193, 0.05) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.hero-deco-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 15%;
    background: radial-gradient(circle, rgba(45, 212, 193, 0.04) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.02); }
    66% { transform: translate(-10px, 10px) scale(0.98); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75em;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--teal-200);
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    padding: 0.5em 1em;
    background: rgba(45, 212, 193, 0.08);
    border: 1px solid rgba(45, 212, 193, 0.2);
    border-radius: 50px;
}

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

.badge-dot:last-child {
    animation-delay: 0.5s;
}

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

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-headline em {
    font-style: italic;
    color: var(--teal-300);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--slate-300);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--slate-300);
    letter-spacing: 0.03em;
    padding: 0 1rem;
}

.trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal-600);
    flex-shrink: 0;
}

/* Hero Cards */
.hero-cards {
    position: relative;
    height: 620px;
}

.card-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.card-main-img {
    width: 100%;
    height: 620px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.card-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-main:hover .card-main-img img {
    transform: scale(1.03);
}

.card-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 47, 46, 0.4) 0%, transparent 50%);
    border-radius: var(--radius-xl);
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.875em;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1em 1.25em;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.float-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-100);
    border-radius: var(--radius-sm);
    color: var(--teal-700);
    flex-shrink: 0;
}

.float-card-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-900);
    line-height: 1.2;
}

.float-card-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--slate-500);
    letter-spacing: 0.02em;
}

.float-card-1 {
    bottom: 80px;
    left: -40px;
    animation: floatCard 5s ease-in-out infinite;
}

.float-card-2 {
    top: 60px;
    left: -30px;
    animation: floatCard 6s ease-in-out infinite reverse;
}

.float-card-3 {
    bottom: 20px;
    right: -20px;
    animation: floatCard 7s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--teal-400), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--stone-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-700));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    color: var(--teal-700);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--teal-100);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.35rem;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-700);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.7em;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(3px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-images {
    position: relative;
    min-height: 580px;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid #ffffff;
}

.about-img-secondary img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.about-accent {
    position: absolute;
    top: -20px;
    left: -15px;
}

.about-accent-inner {
    background: var(--teal-700);
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.accent-year {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-200);
}

.accent-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.about-content {
    padding: 1rem 0;
}

.about-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

.about-body {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-body em {
    color: var(--teal-700);
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.05em;
}

.about-values {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75em;
}

.value-check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-100);
    border-radius: 50%;
    color: var(--teal-700);
    flex-shrink: 0;
}

.value-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-700);
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach {
    position: relative;
}

.approach-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 500px 500px at 10% 90%, rgba(45, 212, 193, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 90% 10%, rgba(45, 212, 193, 0.06) 0%, transparent 70%);
}

.approach-content {
    position: relative;
    z-index: 10;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(45, 212, 193, 0.3);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--teal-400);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: rgba(45, 212, 193, 0.1);
    border: 1px solid rgba(45, 212, 193, 0.2);
    border-radius: var(--radius-md);
    color: var(--teal-300);
}

.step-title {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--slate-400);
    line-height: 1.75;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-100);
}

.testimonial-quote {
    margin-bottom: 1.25rem;
}

.testimonial-quote svg {
    color: var(--teal-600);
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875em;
}

.author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-100);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal-700);
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-800);
}

.author-detail {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-400);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    position: relative;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 47, 46, 0.88) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--slate-300);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    color: var(--teal-700);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 0.25em;
}

.detail-item p,
.detail-item a {
    font-size: 0.9rem;
    color: var(--slate-700);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--teal-700);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: var(--stone-50);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.form-title {
    font-size: 1.5rem;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.form-sub {
    font-size: 0.85rem;
    color: var(--slate-500);
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-700);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8em 1em;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--slate-800);
    background: #ffffff;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 2.5em;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: var(--teal-100);
    border-radius: 50%;
    color: var(--teal-700);
}

.success-title {
    font-size: 1.35rem;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 1.25rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--teal-400);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-700);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 50;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--teal-800);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    /* Mobile menu */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
    
    .hero-cards {
        display: none;
    }
    
    .hero-headline {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-sub {
        font-size: 0.95rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn-large,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* About */
    .about-images {
        min-height: 400px;
        margin-bottom: 2rem;
    }
    
    .about-img-main img {
        height: 400px;
    }
    
    .about-img-secondary {
        width: 200px;
        right: -10px;
        bottom: -20px;
    }
    
    .about-img-secondary img {
        height: 180px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    /* Approach */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    /* CTA */
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    /* Contact */
    .contact-form-wrapper {
        position: relative;
        top: 0;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.25rem;
    }
}
