/* =========================================
   VARIABLES & GLOBALS
   ========================================= */
:root {
    /* Color Palette - Calming Therapeutic Theme (Psychology) */
    --color-primary: #1F4E5B;
    /* Deep Muted Teal - Grounding and calm */
    --color-primary-light: #3D8494;
    /* Soft Therapeutic Blue-Green */
    --color-secondary: #EAF3F5;
    /* Very soft Mint/Ice base */
    --color-accent: #5F9EA0;
    /* Cadet Blue action accent */
    --color-bg: #F9FCFC;
    /* Clean, airy off-white mint */
    --color-surface: #FFFFFF;
    /* Pure White */

    /* Text Colors */
    --color-text-main: #1E293B;
    /* Slate 800 - High Contrast */
    --color-text-muted: #64748B;
    /* Slate 500 - Secondary Text */

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 20px 25px -5px rgb(10 74 124 / 0.08), 0 8px 10px -6px rgb(10 74 124 / 0.04);
    --shadow-blue: 0 10px 30px rgba(22, 112, 183, 0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --br-lg: 24px;
    --br-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.25;
    font-weight: 700;
}

.sectionTitle {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    color: var(--color-primary);
}

.text-white {
    color: var(--color-surface);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-primary-light);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: var(--color-secondary);
    border-radius: 30px;
}

.section-tag i {
    font-size: 1.1rem;
}

/* =========================================
   LAYOUT & UTILS
   ========================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-bg-white {
    background-color: var(--color-surface);
}

.section-bg-light {
    background-color: var(--color-bg);
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.center {
    margin: 0 auto 60px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-2.align-start {
    align-items: start;
}

.card {
    background: var(--color-surface);
    border: 1px solid rgba(10, 74, 124, 0.08);
    border-radius: var(--br-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary-light);
    color: var(--color-surface);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10, 74, 124, 0.25);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
}

.btn-outline:hover {
    background: var(--color-primary-light);
    color: var(--color-surface);
}

.btn-text {
    padding: 16px 0;
    color: var(--color-primary);
    background: transparent;
}

.btn-text:hover {
    color: var(--color-primary-light);
    gap: 14px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    width: 100%;
    margin-top: 24px;
    font-size: 1.1rem;
    border-radius: var(--br-sm);
}

.btn-whatsapp:hover {
    background: #1EBE5D;
    transform: translateY(-2px);
}

/* =========================================
   HEADER & NAVBAR
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.top-bar {
    background: var(--color-primary);
    color: var(--color-surface);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-info a {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.top-info a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.divider {
    opacity: 0.3;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social a {
    opacity: 0.8;
    font-size: 1.1rem;
}

.top-social a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.navbar {
    padding: 15px 0;
    background: var(--color-surface);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled .top-bar {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
}

.header.scrolled .navbar {
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary-light);
    font-size: 1.5rem;
}

.logo-img {
    max-height: 25px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--color-primary-light);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.nav-link:hover {
    color: var(--color-primary-light);
}

.nav-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================================
   HERO SECTION (Creative Redesign)
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f5f0 50%, #f7f3ff 100%);
    position: relative;
    overflow: hidden;
}

/* Animated blob decorations */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 8s ease-in-out infinite;
    z-index: 0;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(61, 132, 148, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(31, 78, 91, 0.2) 0%, transparent 70%);
    bottom: -50px;
    left: 5%;
    animation-delay: -4s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
    position: relative;
    padding: 60px 24px;
}

.hero-left {
    max-width: 580px;
}

.pre-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-primary-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(61, 132, 148, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(61, 132, 148, 0.2);
}

.main-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-primary);
    letter-spacing: -2px;
    font-weight: 800;
}

.hero-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 440px;
    line-height: 1.7;
}

/* Trust Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(31, 78, 91, 0.08);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.hs-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.hs-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(31, 78, 91, 0.15);
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-actions .btn-primary {
    border-radius: 100px;
    padding: 15px 36px;
    font-size: 0.95rem;
    background: var(--color-primary);
    box-shadow: 0 8px 24px rgba(31, 78, 91, 0.25);
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-actions .btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(31, 78, 91, 0.35);
}

.hero-actions .btn-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Hero Right: Photo + Floating Cards */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 430px;
}

.hero-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(31, 78, 91, 0.2);
    display: block;
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(31, 78, 91, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
    animation: floatCard 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-float-status {
    top: 24px;
    left: -30px;
    animation-delay: 0s;
    font-size: 0.85rem;
    gap: 8px;
}

.hero-float-method {
    bottom: 100px;
    left: -40px;
    animation-delay: -2s;
    max-width: 240px;
    white-space: normal;
}

.hero-float-method i {
    font-size: 1.5rem;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.hero-float-method div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-float-method strong {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
}

.hero-float-method span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.hero-float-location {
    top: 45%;
    right: -30px;
    animation-delay: -1s;
    font-size: 0.85rem;
}

.hero-float-location i,
.hero-float-status i {
    color: var(--color-primary-light);
    font-size: 1rem;
}

/* =========================================
   ABOUT SECTION (Creative Redesign)
   ========================================= */

/* Layout grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Photo Stack */
.about-photo-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-main-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(31, 78, 91, 0.18);
    display: block;
}

/* Floating Badges */
.about-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(31, 78, 91, 0.14);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    animation: floatCard 5s ease-in-out infinite;
}

.about-badge-top {
    top: 30px;
    left: -30px;
    animation-delay: 0s;
}

.about-badge-top i {
    font-size: 1.6rem;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.about-badge-top strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
}

.about-badge-top span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.about-badge-bottom {
    bottom: 30px;
    right: -30px;
    animation-delay: -2.5s;
    gap: 16px;
}

.about-badge-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.about-badge-bottom strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
}

.about-badge-bottom span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Credential Chips */
.credential-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--color-secondary);
    border: 1px solid rgba(61, 132, 148, 0.15);
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 100px;
    transition: var(--transition);
}

.chip:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.chip i {
    font-size: 1rem;
    color: var(--color-primary-light);
    flex-shrink: 0;
    transition: var(--transition);
}

.chip:hover i {
    color: white;
}

.text-lead {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--color-text-main);
}

.auth-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-text-main);
}

.auth-list i {
    color: var(--color-primary-light);
    font-size: 1.2rem;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.sc-icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    color: var(--color-primary-light);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .sc-icon {
    background: var(--color-primary-light);
    color: var(--color-surface);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* =========================================
   AREAS OF EXPERTISE (MARQUEE)
   ========================================= */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-surface) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-surface) 0%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    gap: 20px;
    animation: scroll-left 50s linear infinite;
    padding-left: 20px;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track.reverse {
    animation: scroll-right 45s linear infinite;
}

.marquee-track.reverse:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(10, 74, 124, 0.08);
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    cursor: default;
}

.marquee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 74, 124, 0.1);
    border-color: var(--color-primary-light);
}

.marquee-item i {
    color: #4ADE80;
    /* Success green tick */
    font-size: 1.4rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scrolls half the track width (the duplicated part) */
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
    background: var(--color-surface);
    border-radius: var(--br-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: var(--color-primary);
    color: var(--color-surface);
}

.contact-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-list i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.contact-list span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-list a,
.contact-list p {
    color: var(--color-surface);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-list a:hover {
    color: var(--color-secondary);
}

.map-container {
    flex: 1;
    min-height: 400px;
    position: relative;
}

.map-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =========================================
   FOOTER (Premium Redesign)
   ========================================= */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 132, 148, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-inner {
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 50px;
    align-items: start;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo-img {
    max-height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* Nav column */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Contact column */
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-col a,
.footer-contact-col span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-contact-col a:hover {
    color: #fff;
}

.footer-contact-col i {
    color: rgba(61, 132, 148, 0.9);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(61, 132, 148, 0.4);
    color: white;
    border-color: rgba(61, 132, 148, 0.6);
}


/* =========================================
   APPOINTMENT MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 74, 124, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-surface);
    width: 90%;
    max-width: 900px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F1F7F9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    color: var(--color-text-main);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #E2E8F0;
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
}

.modal-left {
    background: var(--color-bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-photo {
    width: 140px;
    height: 140px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--color-surface);
    box-shadow: var(--shadow-md);
}

.modal-info h3 {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.modal-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.modal-contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.modal-contact-details span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.modal-contact-details span i {
    color: var(--color-primary-light);
    font-size: 1.1rem;
}

.modal-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.modal-title {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.picker-section {
    margin-bottom: 24px;
}

.picker-section label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-main);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    scrollbar-width: none;
    cursor: grab;
}

.date-scroll-container.active {
    cursor: grabbing;
}

.date-scroll-container::-webkit-scrollbar {
    display: none;
}

.date-card {
    min-width: 80px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.date-card.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 78, 91, 0.2);
}

.date-card .dc-day {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.8;
}

.date-card .dc-date {
    font-size: 1.4rem;
    font-weight: 800;
}

.date-card .dc-month {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 2px;
    opacity: 0.8;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.time-slot:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
}

.time-slot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.modal-submit {
    width: 100%;
    margin-top: auto;
    padding: 16px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #94A3B8;
}

.modal-note {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-top: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1100px) {

    .top-bar {
        display: none;
        /* Hide top bar on mobile/tablet */
    }

    .logo-img {
        max-height: 25px;
    }

    /* === PREMIUM MOBILE MENU (Full-screen overlay) === */
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(18, 56, 70, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 40px 30px;
        z-index: 999;
        /* Hidden state: scale + fade */
        opacity: 0;
        pointer-events: none;
        transform: scale(1.04);
        transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: scale(1);
    }

    /* Staggered link entrance */
    .nav-links .nav-link,
    .nav-links .nav-btn {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .nav-links.active .nav-link:nth-child(1) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.07s;
    }

    .nav-links.active .nav-link:nth-child(2) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.12s;
    }

    .nav-links.active .nav-link:nth-child(3) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.17s;
    }

    .nav-links.active .nav-link:nth-child(4) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.22s;
    }

    .nav-links.active .nav-btn {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.28s;
    }

    /* Override btn colors inside dark overlay */
    .nav-links .btn-primary {
        background: rgba(255, 255, 255, 0.12);
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        border-radius: 100px;
        margin-top: 16px;
        padding: 14px 40px;
        font-size: 1rem;
        backdrop-filter: blur(8px);
        box-shadow: none;
        width: 100%;
        justify-content: center;
    }

    .nav-links .btn-primary:hover {
        background: rgba(255, 255, 255, 0.22);
    }

    .nav-link {
        font-size: 1.6rem;
        font-weight: 700;
        padding: 14px 0;
        color: rgba(255, 255, 255, 0.88);
        letter-spacing: -0.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        text-align: center;
    }

    .nav-link:hover {
        color: #fff;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
        z-index: 1002;
        position: relative;
    }

    /* Hamburger morphs to X when active */
    .hamburger span {
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.25s ease,
            background 0.3s ease;
    }

    .hamburger.active span {
        background: #fff;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .btn.nav-btn {
        margin-top: 20px;
        width: 100%;
    }

    /* Hero Adjustments */
    .hero {
        padding-top: 120px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 40px 20px;
    }

    .hero-left {
        max-width: 100%;
        margin: 0 auto;
        order: 1;
    }

    .hero-right {
        order: 0;
        /* Photo on top on mobile */
    }

    .hero-desc {
        margin: 0 auto 24px auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-photo {
        border-radius: 24px;
        max-height: 380px;
        object-fit: cover;
    }

    .hero-float-card {
        display: none;
        /* Hide floating cards on tablet/mobile - too crowded */
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-photo-stack {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Push badges inside the photo bounds on mobile */
    .about-badge-top {
        left: 0;
        top: 16px;
    }

    .about-badge-bottom {
        right: 0;
        bottom: 16px;
    }

    /* Footer mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .map-container {
        min-height: 350px;
    }

    /* Modal Laptop/Tablet Fixes */
    .modal-grid {
        grid-template-columns: minmax(0, 1fr);
        /* Switch to 1 column on tablets and fix grid overflow */
    }

    .modal-left {
        flex-direction: row;
        padding: 25px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        align-items: center;
        gap: 20px;
    }

    .modal-photo {
        width: 100px;
        height: 100px;
        aspect-ratio: 1;
        border-radius: 50%;
        margin-bottom: 0;
    }

    .modal-contact-details {
        display: none;
        /* Hide extra details to save horizontal room */
    }

    .modal-right {
        padding: 30px;
    }

    .modal-content {
        max-height: 90vh;
        /* Ensure modal itself is scrollable if it gets too tall */
        overflow-y: auto;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card {
        padding: 30px 20px;
    }

    .experience-card {
        right: 0;
        left: 0;
        bottom: -20px;
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 20px;
    }

    .form-group {
        flex-direction: column;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 50px;
        /* Smaller gradient fades on mobile */
    }

    .marquee-item {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px 24px;
        text-align: center;
    }

    .contact-list li {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Mobile Modal Phone Fixes */
    .modal-left {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .modal-photo {
        width: 80px;
        height: 80px;
        border: 2px solid var(--color-surface);
    }

    .modal-photo {
        width: 60px;
        height: 60px;
    }

    .modal-info h3 {
        font-size: 1.05rem;
    }

    .modal-info p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .modal-right {
        padding: 20px 15px;
    }

    .modal-title {
        font-size: 1.35rem;
    }

    .time-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for time slots on phone */
        gap: 8px;
    }

    .time-slot {
        padding: 10px;
        font-size: 0.9rem;
    }

    .modal-submit {
        padding: 14px;
        font-size: 1rem;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .logo-img {
        max-height: 20px;
        max-width: 200px;
    }

    .footer-logo-img {
        max-height: 32px;
        margin-right: 10px;
    }
}

/* ==============================================
   PROCESS STEPS — Terapi Süreci
   ============================================== */
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 60px;
    justify-content: center;
}

.process-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.ps-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-primary-light);
    margin-bottom: 16px;
    opacity: 0.6;
}

.ps-icon {
    width: 72px;
    height: 72px;
    background: var(--color-surface);
    border: 2px solid rgba(10, 74, 124, 0.08);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--color-primary-light);
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(10, 74, 124, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .ps-icon {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(10, 74, 124, 0.14);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.process-connector {
    padding-top: 36px;
    color: var(--color-border);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ==============================================
   REVIEWS / TESTIMONIALS
   ============================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.review-card {
    background: var(--color-surface);
    border: 1px solid rgba(10, 74, 124, 0.07);
    border-radius: var(--br-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 74, 124, 0.1);
}

.review-card--featured {
    background: var(--color-primary);
    border-color: transparent;
}

.review-card--featured .review-stars i {
    color: #facc15;
}

.review-card--featured .review-text {
    color: rgba(255, 255, 255, 0.88);
}

.review-card--featured .review-author strong {
    color: white;
}

.review-card--featured .review-author span {
    color: rgba(255, 255, 255, 0.6);
}

.review-card--featured .review-avatar {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars i {
    color: #f59e0b;
    font-size: 0.95rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.review-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.reviews-cta p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* ==============================================
   FAQ ACCORDION — SSS
   ============================================== */
.faq-list {
    max-width: 780px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid rgba(10, 74, 124, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.open {
    box-shadow: 0 8px 30px rgba(10, 74, 124, 0.08);
    border-color: rgba(10, 74, 124, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--color-primary-light);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.75;
    border-top: 1px solid rgba(10, 74, 124, 0.06);
    margin: 0;
    padding-top: 16px;
}

/* ==============================================
   WHATSAPP FLOATING BUTTON
   ============================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 14px 20px 14px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: wa-pulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
    animation: none;
}

.whatsapp-label {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.65);
    }
}

/* ==============================================
   MOBILE STICKY RANDEVU BAR
   ============================================== */
.mobile-sticky-bar {
    display: none;
    /* hidden by default — shown via media query on mobile */
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 850;
        background: var(--color-surface);
        border-top: 1px solid rgba(10, 74, 124, 0.1);
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
        padding: 10px 16px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        gap: 8px;
        align-items: center;
    }

    .msb-call,
    .msb-whatsapp {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        flex: 1;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--color-primary);
        text-decoration: none;
        padding: 8px 0;
        border-radius: 12px;
        transition: background 0.2s ease;
    }

    .msb-call i,
    .msb-whatsapp i {
        font-size: 1.4rem;
    }

    .msb-whatsapp {
        color: #25d366;
    }

    .msb-call:active,
    .msb-whatsapp:active {
        background: var(--color-bg);
    }

    .msb-randevu {
        flex: 2;
        background: var(--color-primary);
        color: white;
        border: none;
        border-radius: 14px;
        padding: 12px 10px;
        font-family: var(--font-heading);
        font-size: 0.88rem;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: background 0.2s ease;
    }

    .msb-randevu i {
        font-size: 1.1rem;
    }

    .msb-randevu:active {
        background: var(--color-primary-light);
    }

    /* Push page bottom so bar doesn't overlap content */
    body {
        padding-bottom: 80px;
    }

    /* Hide WhatsApp float on mobile — sticky bar handles it */
    .whatsapp-float {
        display: none;
    }

    /* Process steps vertical on mobile */
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .process-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .process-step {
        max-width: 100%;
        padding: 0 16px;
    }

    /* Reviews grid: 1 column on mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    /* Tablet: 2-col reviews, 2-step process row */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        max-width: 180px;
    }
}

/* Footer Legal Link */
.footer-legal a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}