/* ========================================
   The Tides Support-Hub - Stylesheet
   Oceanic Sanctuary Theme
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - From Logo */
    --navy: #0f2b4a;
    --navy-light: #1a3d5c;
    --teal: #0891b2;
    --teal-light: #22d3ee;
    --turquoise: #06b6d4;
    --gold: #b8860b;
    --gold-light: #daa520;
    
    /* Accent Colors - Client Requested */
    --pink-light: #fce7f3;
    --pink: #f9a8d4;
    --magenta: #db2777;
    --magenta-dark: #be185d;
    --blue-light: #e0f2fe;
    --blue-soft: #bae6fd;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Gradients */
    --gradient-ocean: linear-gradient(135deg, var(--navy) 0%, var(--teal) 50%, var(--turquoise) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--magenta) 0%, var(--pink) 100%);
    --gradient-soft: linear-gradient(180deg, var(--blue-light) 0%, var(--pink-light) 100%);
    --gradient-hero: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 40%, var(--teal) 100%);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px rgba(8, 145, 178, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-800);
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 2.5rem;
}

.section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--magenta), var(--teal));
}

.section__label--light {
    color: var(--pink-light);
}

.section__label--light::before {
    background: linear-gradient(90deg, var(--pink), var(--teal-light));
}

.section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-lg);
    color: var(--navy);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--gradient-sunset);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 39, 119, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

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

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--outline svg {
    transition: fill var(--transition-fast);
}

.btn--outline:hover svg {
    fill: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-lg);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav__logo-img {
    height: 55px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: var(--space-xl);
}

.nav__link {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sunset);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
    color: var(--navy);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-ocean);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav__toggle,
.nav__close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

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

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background-repeat: repeat-x;
    animation: wave 20s linear infinite;
}

.hero__wave--1 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 200px;
    opacity: 0.6;
    animation-duration: 25s;
}

.hero__wave--2 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.15' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,106.7C672,117,768,171,864,176C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 200px;
    opacity: 0.4;
    animation-duration: 18s;
    animation-delay: -5s;
}

.hero__wave--3 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.2' d='M0,288L48,272C96,256,192,224,288,213.3C384,203,480,213,576,224C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 200px;
    opacity: 0.3;
    animation-duration: 15s;
    animation-delay: -2s;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
}

.hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--teal-light), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--blue-soft);
    margin-bottom: var(--space-md);
}

.hero__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
}

.hero__description strong {
    color: var(--white);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
}

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

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--space-4xl) 0;
    background: var(--gradient-soft);
    position: relative;
}

.about__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.about__points {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.about__point {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.about__point:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.about__point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-ocean);
    border-radius: var(--radius-md);
    color: var(--white);
}

.about__point-text h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.about__point-text p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.about__visual {
    position: relative;
}

.about__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-ocean);
}

.about__quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-left: var(--space-xl);
}

.about__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--teal);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.about__motto {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.about__motto-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--magenta);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--space-4xl) 0;
    position: relative;
    background: var(--navy);
    overflow: hidden;
}

.services__bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(8, 145, 178, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(219, 39, 119, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.services__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.services__intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-sunset);
    border-radius: var(--radius-lg);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.service-card__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.service-card__outcome {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card__outcome-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal-light);
    margin-bottom: var(--space-xs);
}

.service-card__outcome p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.services__extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.services__extra-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.services__extra-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(219, 39, 119, 0.2);
    border-radius: var(--radius-md);
    color: var(--pink);
}

.services__extra-card h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.services__extra-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.founder__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.founder__image-wrapper {
    position: relative;
}

.founder__image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.founder__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
}

.founder__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gradient-soft);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.founder__role {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--magenta);
    margin-bottom: var(--space-xl);
}

.founder__bio {
    margin-bottom: var(--space-xl);
}

.founder__bio p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
    line-height: 1.8;
}

.founder__bio strong {
    color: var(--navy);
}

.founder__quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--teal);
    padding: var(--space-lg);
    background: var(--blue-light);
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: var(--space-xl);
}

/* ========================================
   JOIN SECTION
   ======================================== */
.join {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.join__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-sunset);
}

.join__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.join__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.join__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

.join__text:last-of-type {
    margin-bottom: var(--space-2xl);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.contact__motto {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--teal);
    margin-bottom: var(--space-2xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition-fast);
}

.contact__link:hover {
    color: var(--magenta);
}

.contact__link svg {
    color: var(--teal);
}

.contact__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.contact__card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.contact__card p {
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer__logo {
    height: 70px;
    width: auto;
    margin-bottom: var(--space-md);
}

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

.footer__links h4,
.footer__social h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--teal-light);
}

.footer__social-links {
    display: flex;
    gap: var(--space-md);
}

.footer__social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer__social-links a:hover {
    background: var(--magenta);
    transform: translateY(-3px);
}

.footer__bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .founder__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .founder__image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .footer__social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 6rem var(--space-xl) var(--space-xl);
        transition: right var(--transition-base);
        z-index: 100;
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .nav__link {
        font-size: 1.125rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .nav__cta {
        display: none;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .services__extra {
        grid-template-columns: 1fr;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .hero__waves,
    .hero__scroll,
    .btn,
    .footer__social {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--gradient-soft);
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.testimonials__intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

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

.testimonial-card--placeholder {
    border: 2px dashed var(--gray-300);
    background: var(--gray-50);
}

.testimonial-card--placeholder:hover {
    border-color: var(--teal);
}

.testimonial-card__content {
    margin-bottom: var(--space-xl);
}

.testimonial-card__text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-card__text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.5rem;
    color: var(--teal);
    opacity: 0.5;
    font-family: Georgia, serif;
}

.testimonial-card--placeholder .testimonial-card__text {
    font-style: normal;
    color: var(--gray-500);
}

.testimonial-card--placeholder .testimonial-card__text::before {
    opacity: 0.2;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-ocean);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial-card--placeholder .testimonial-card__avatar {
    background: var(--gray-300);
    color: var(--gray-500);
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--navy);
}

.testimonial-card__role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonials__cta {
    text-align: center;
}

.testimonials__cta p {
    color: var(--gray-600);
}

.testimonials__cta a {
    color: var(--magenta);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.testimonials__cta a:hover {
    color: var(--magenta-dark);
}

@media (max-width: 768px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT FORM STYLES
   ======================================== */
.contact__form-wrapper {
    width: 100%;
}

.contact__social {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.contact__social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.contact__social-link:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact__social-link svg {
    width: 20px;
    height: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-message {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-message.loading {
    display: block;
    background: var(--blue-light);
    color: var(--navy);
    border: 1px solid var(--blue-soft);
}

.contact-form button[type="submit"] {
    margin-top: var(--space-sm);
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.testimonial-link {
    color: var(--magenta);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.testimonial-link:hover {
    color: var(--magenta-dark);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .contact__social {
        justify-content: center;
    }
}
