/* Balance and Healing - Styles */
/* Color Palette */
:root {
    --teal: #167e85;
    --teal-dark: #147881;
    --teal-btn: #1b7e84;
    --orange-red: #d9603b;
    --orange-accent: #e38a5e;
    --copper: #d65a31;
    --peach: #FFF5F0;
    --peach-light: #FDF2EE;
    --gray-bg: #f4f4f4;
    --gray-border: #d0dfe1;
    --charcoal: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, .section-title, .logo-main {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Utility Bar */
.utility-bar {
    background: var(--teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.utility-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-link {
    color: var(--white);
    text-decoration: underline;
}

.utility-center {
    flex: 1;
    text-align: center;
}

/* Main Header / Navigation */
.main-header {
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: relative;
    z-index: 100;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    text-decoration: none;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-main {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hamburger button - hidden on desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 110;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-open .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background: var(--orange-red);
    color: var(--white);
}

.btn-secondary {
    background: var(--teal);
    color: var(--white);
}

.btn-teal {
    background: var(--teal-btn);
    color: var(--white);
    font-size: 0.9rem;
}

.center-btn {
    display: block;
    margin: 1.5rem auto;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-image: url('../images/homeslideBack.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(22, 126, 133, 0.88) 0%,
        rgba(22, 126, 133, 0.72) 35%,
        rgba(51, 51, 51, 0.4) 70%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    max-width: 580px;
}

.hero-text > * {
    animation: heroFadeIn 0.7s ease-out backwards;
}

.hero-text .hero-accent-line { animation-delay: 0.1s; }
.hero-text .hero-label { animation-delay: 0.2s; }
.hero-text .hero-title { animation-delay: 0.3s; }
.hero-text .hero-subtitle { animation-delay: 0.4s; }
.hero-text .hero-tagline { animation-delay: 0.5s; }
.hero-text .hero-divider { animation-delay: 0.55s; }
.hero-text .hero-buttons { animation-delay: 0.6s; }
.hero-text .hero-scroll-hint { animation-delay: 1s; }

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

.hero-accent-line {
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-accent), var(--teal));
    border-radius: 2px;
    margin-bottom: 1rem;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.title-accent {
    position: relative;
    color: var(--peach-light);
}

.sunburst-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.35rem;
}

.sunburst-icon.small {
    width: 22px;
    height: 22px;
    margin-left: 0.5rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-divider {
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(217, 96, 59, 0.4);
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(217, 96, 59, 0.5);
}

.btn-hero-secondary {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    border-radius: 10px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-buttons .btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hero-scroll-hint:hover {
    color: rgba(255, 255, 255, 0.95);
}

.hero-scroll-arrow {
    animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

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

/* Features Banner */
/* Features Banner */
.features-banner {
    background: linear-gradient(180deg, var(--peach) 0%, var(--peach-light) 100%);
    padding: 3.5rem 2rem 4.5rem;
    position: relative;
    overflow: hidden;
}

.features-wave {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
}

.features-wave--top {
    top: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' fill='none'%3E%3Cpath d='M0 80V40c120 0 240-40 360-40s240 40 360 40 240-40 360-40 240 40 360 40v40H0z' fill='%23fff' fill-opacity='0.5'/%3E%3C/svg%3E") center top / cover no-repeat;
}

.features-wave--bottom {
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' fill='none'%3E%3Cpath d='M0 0v40c120 0 240 40 360 40s240-40 360-40 240 40 360 40 240-40 360-40 240 40 360 40V0H0z' fill='%23fff' fill-opacity='0.5'/%3E%3C/svg%3E") center bottom / cover no-repeat;
}

.features-inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.features-intro {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-card {
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(22, 126, 133, 0.08);
    border: 1px solid rgba(22, 126, 133, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(22, 126, 133, 0.14);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(22, 126, 133, 0.1), rgba(227, 138, 94, 0.1));
    border-radius: 14px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--teal);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.4rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

/* Know Section */
.know-section {
    padding: 4.5rem 2rem;
    position: relative;
    background: linear-gradient(180deg, var(--peach-light) 0%, var(--white) 50%, var(--peach-light) 100%);
    overflow: hidden;
}

.know-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 20% 50%, var(--teal) 1px, transparent 1px),
                      radial-gradient(circle at 80% 50%, var(--teal) 1px, transparent 1px);
    background-size: 40px 40px;
}

.know-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.know-content {
    width: 100%;
}

.know-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.know-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
    line-height: 1.25;
}

.know-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.know-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem 2.5rem;
    margin: 0 auto 1.75rem;
    padding: 0;
    list-style: none;
    max-width: 700px;
}

.know-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--charcoal);
    border: 1px solid rgba(22, 126, 133, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.know-list li:hover {
    background: var(--white);
    transform: translateX(4px);
    box-shadow: 0 2px 12px rgba(22, 126, 133, 0.08);
}

.know-list-icon {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--orange-accent), var(--teal));
    border-radius: 50%;
}

.know-conclusion-wrap {
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border-radius: 12px;
    border-left: none;
    border-top: 3px solid var(--orange-accent);
    box-shadow: 0 4px 20px rgba(22, 126, 133, 0.06);
    max-width: 700px;
    margin: 0 auto;
}

.know-conclusion {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.know-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.know-cta:hover {
    color: var(--teal-dark);
    gap: 0.75rem;
}

.know-cta svg {
    flex-shrink: 0;
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--peach-light) 20%, var(--peach-light) 80%, var(--white) 100%);
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title.with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
}

.services-container {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 40px rgba(22, 126, 133, 0.08);
    border: 1px solid rgba(22, 126, 133, 0.1);
}

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

.service-card {
    text-align: center;
}

.service-card-inner {
    background: var(--peach-light);
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(22, 126, 133, 0.08);
    overflow: hidden;    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-card-inner {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(22, 126, 133, 0.12);
}

.service-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.service-desc {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.45;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-btn {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(22, 126, 133, 0.25);
}

/* Support Section */
.support-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--peach-light) 30%, var(--peach-light) 70%, var(--white) 100%);
}

.support-intro {
    text-align: center;
    max-width: 600px;
    margin: -0.5rem auto 2rem;
    font-size: 1.05rem;
    color: #555;
}

.support-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 40px rgba(22, 126, 133, 0.08);
    border: 1px solid rgba(22, 126, 133, 0.1);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
}

.support-col {
    padding-bottom: 0.5rem;
}

.support-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(22, 126, 133, 0.2);
}

.support-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-grid li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.support-grid li:hover {
    color: var(--teal);
}

.support-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--orange-accent), var(--teal));
    border-radius: 50%;
}

.support-cta-wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.support-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(217, 96, 59, 0.35);
}

.support-desc-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 4px solid var(--teal);
}

.support-desc {
    text-align: center;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal);
}

/* CTA Section */
.cta-section {
    background: var(--peach-light);
    padding: 3rem 2rem;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--charcoal);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Why Us Section */
.why-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--peach-light) 15%, var(--peach-light) 85%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.why-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 25% 40%, var(--teal) 1px, transparent 1px),
        radial-gradient(circle at 75% 60%, var(--copper) 1px, transparent 1px);
    background-size: 52px 52px;
}

.why-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(22, 126, 133, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
}

.why-header {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    padding: 2.5rem 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.why-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

.why-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange-accent), transparent);
    opacity: 0.6;
}

.why-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    opacity: 0.85;
    font-weight: 600;
    position: relative;
}

.why-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
}

.why-header-sub {
    margin: 0.6rem 0 0;
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 300;
    position: relative;
}

.why-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    padding: 2.5rem 2.5rem 3rem;
    align-items: start;
}

.why-content--reversed {
    grid-template-columns: 1fr 320px;
}

.why-content--reversed .why-profiles {
    order: 2;
}

.why-content--reversed .why-text {
    order: 1;
}

.team-divider {
    border: none;
    border-top: 1px solid rgba(22, 126, 133, 0.12);
    margin: 0 2.5rem;
}

.why-profiles {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(22, 126, 133, 0.12);
    border: 1px solid rgba(22, 126, 133, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(22, 126, 133, 0.18);
}

.profile-image-wrap {
    position: relative;
    overflow: hidden;
}

.profile-image {
    aspect-ratio: 5/6;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-image {
    transform: scale(1.03);
}

.profile-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-accent), var(--teal));
}

.profile-info {
    padding: 1.5rem;
    background: var(--white);
}

.profile-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--teal-dark);
    font-weight: 700;
}

.profile-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential-badge {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(22, 126, 133, 0.08);
    border: 1px solid rgba(22, 126, 133, 0.2);
    border-radius: 6px;
    letter-spacing: 0.02em;
    transition: background 0.2s ease;
}

.credential-badge:hover {
    background: rgba(22, 126, 133, 0.15);
}

.why-approach {
    background: var(--peach-light);
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1rem;
    border: 1px solid rgba(22, 126, 133, 0.08);
}

.why-approach-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.why-approach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.approach-tag {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(22, 126, 133, 0.15);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.approach-tag:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.why-text {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.why-quote {
    margin: 0 0 1.5rem;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    border-left: 4px solid var(--orange-accent);
    font-style: italic;
    color: var(--charcoal);
    background: linear-gradient(135deg, rgba(253, 242, 238, 0.5), transparent);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.why-quote-icon {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    color: var(--orange-accent);
}

.why-quote p {
    margin: 0;
    line-height: 1.85;
    font-size: 1.05rem;
    position: relative;
}

.why-text > p {
    margin-bottom: 1rem;
    line-height: 1.85;
    font-size: 1.025rem;
    color: var(--charcoal);
}

.why-text > p:last-of-type {
    margin-bottom: 0;
}

.why-personal-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(22, 126, 133, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(22, 126, 133, 0.08);
}

.why-personal-icon {
    flex-shrink: 0;
    color: var(--orange-accent);
    margin-top: 0.1rem;
}

.why-personal {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.copper-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--copper), var(--orange-accent), transparent);
    margin: 1.5rem 0;
}

.why-bottom-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.why-bottom-row .why-cta {
    margin-top: 0;
}

.why-bottom-row .why-approach {
    flex: 1;
    min-width: 200px;
}

.why-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.why-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(217, 96, 59, 0.35);
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--peach) 25%, var(--peach) 75%, var(--white) 100%);
}

.values-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 15% 30%, var(--teal) 1px, transparent 1px),
        radial-gradient(circle at 85% 70%, var(--copper) 1px, transparent 1px);
    background-size: 48px 48px;
}

.values-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--copper);
    margin-bottom: 0.75rem;
    position: relative;
}

.values-line {
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.values-subtitle {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.values-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.value-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.value-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.03em;
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 2px solid rgba(22, 126, 133, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 16px rgba(22, 126, 133, 0.08);
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-item:hover .value-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 28px rgba(22, 126, 133, 0.16);
    border-color: var(--teal);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem 2rem 2rem;
    position: relative;
    box-shadow: 0 8px 36px rgba(22, 126, 133, 0.07);
    border: 1px solid rgba(22, 126, 133, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--orange-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(22, 126, 133, 0.14);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(22, 126, 133, 0.1), rgba(227, 138, 94, 0.1));
    border-radius: 14px;
    color: var(--teal);
    margin-bottom: 1.25rem;
}

.value-card-icon svg {
    width: 24px;
    height: 24px;
}

.value-card-number {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.07;
    line-height: 1;
}

.value-card h3 {
    color: var(--teal-dark);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.65rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--peach-light) 0%, var(--white) 25%, var(--white) 75%, var(--peach-light) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(22, 126, 133, 0.07);
    border: 1px solid rgba(22, 126, 133, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(22, 126, 133, 0.16);
}

.pricing-card--featured {
    border: 2px solid var(--teal);
    box-shadow: 0 8px 40px rgba(22, 126, 133, 0.13);
    transform: scale(1.04);
}

.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 24px 64px rgba(22, 126, 133, 0.22);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1.5rem;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
    z-index: 2;
}

.pricing-card-header {
    padding: 2.25rem 2rem 1.25rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(22, 126, 133, 0.03) 0%, transparent 100%);
}

.pricing-card-header--featured {
    padding-top: 2.75rem;
    background: linear-gradient(180deg, rgba(22, 126, 133, 0.07) 0%, transparent 100%);
}

.pricing-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

.pricing-duration {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pricing-card-body {
    padding: 0.5rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(22, 126, 133, 0.1);
    width: 100%;
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-right: 0.1rem;
    position: relative;
    top: -0.65rem;
}

.pricing-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.pricing-cad {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #888;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    width: 100%;
    text-align: left;
    padding-bottom: 1.75rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.92rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 126, 133, 0.1);
    border-radius: 50%;
    color: var(--teal);
}

.pricing-card--featured .pricing-check {
    background: rgba(22, 126, 133, 0.15);
}

.pricing-btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: auto;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(217, 96, 59, 0.35);
}

.pricing-note-wrap {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 700px;
    padding: 1.25rem 1.75rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--teal);
    box-shadow: 0 4px 20px rgba(22, 126, 133, 0.06);
}

.pricing-note-icon {
    flex-shrink: 0;
    color: var(--teal);
    margin-top: 0.1rem;
}

.pricing-note p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--peach-light) 20%, var(--peach-light) 80%, var(--white) 100%);
}

.contact-logo-wrap {
    text-align: center;
    padding: 0.5rem 0 0.75rem;
    border-bottom: 1px solid rgba(22, 126, 133, 0.1);
    margin-bottom: 0.25rem;
}

.contact-logo {
    max-width: 300px;
    height: auto;
    display: inline-block;
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 8px 40px rgba(22, 126, 133, 0.08);
    border: 1px solid rgba(22, 126, 133, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(22, 126, 133, 0.1), rgba(227, 138, 94, 0.1));
    border-radius: 12px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--teal);
}

.contact-info-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.25rem;
}

.contact-info-link {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info-link:hover {
    color: var(--teal);
}

.contact-info-text {
    font-size: 1rem;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.5;
}

.contact-info-subtext {
    font-size: 0.875rem;
    color: #777;
    margin: 0.15rem 0 0;
    line-height: 1.4;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 40px rgba(22, 126, 133, 0.08);
    border: 1px solid rgba(22, 126, 133, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.form-optional {
    font-weight: 400;
    color: #999;
    font-size: 0.8rem;
}

.form-input {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-border);
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: #aaa;
}

.form-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(22, 126, 133, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.contact-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(217, 96, 59, 0.35);
}

/* Footer */
.main-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        min-height: 75vh;
    }

    .hero-backdrop {
        background-position: 60% center;
    }

    .hero-backdrop::after {
        background: linear-gradient(
            180deg,
            rgba(22, 126, 133, 0.9) 0%,
            rgba(22, 126, 133, 0.75) 50%,
            rgba(51, 51, 51, 0.6) 100%
        );
    }

    .hero-text {
        max-width: 100%;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .why-content,
    .why-content--reversed {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .why-content--reversed .why-profiles {
        order: 0;
    }

    .why-content--reversed .why-text {
        order: 0;
    }

    .team-divider {
        margin: 0 1.5rem;
    }

    .why-profiles {
        max-width: 340px;
        margin: 0 auto;
    }

    .why-quote {
        padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    }

    .values-icons {
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .support-box {
        padding: 2rem 1.5rem;
    }

    .support-desc-wrap {
        padding: 1.25rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card--featured {
        transform: none;
    }

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

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem 2.5rem;
        height: auto;
    }

    .contact-logo-wrap {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-container {
        padding: 0 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-scroll-hint {
        margin-top: 1.75rem;
    }

    .utility-bar {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .utility-bar-inner {
        flex-direction: column;
        gap: 0.15rem;
    }

    .main-header {
        padding: 0.75rem 1.25rem;
    }

    .nav-inner {
        flex-wrap: nowrap;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, box-shadow 0.35s ease;
        box-shadow: none;
    }

    .menu-open .nav-menu {
        max-height: 320px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        transition: background 0.2s ease;
    }

    .nav-links a:hover {
        background: var(--peach-light);
        text-decoration: none;
    }

    .nav-cta {
        margin: 0.75rem 1.25rem 1.25rem;
        text-align: center;
        border-radius: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .know-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-container {
        padding: 2rem 1.25rem;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .values-icons {
        gap: 1.25rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon svg {
        width: 24px;
        height: 24px;
    }

    .value-item span {
        font-size: 0.8rem;
    }

    .value-card {
        padding: 2rem 1.5rem 1.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card:last-child {
        max-width: none;
    }

    .pricing-card-body {
        padding: 0.5rem 1.5rem 2rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .contact-info-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        height: auto;
    }

    .contact-logo-wrap {
        padding: 0.25rem 0 0.6rem;
    }

    .contact-logo {
        max-width: 220px;
    }

    .contact-info-item {
        gap: 0.75rem;
    }

    .contact-icon-wrap {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .contact-info-title {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }

    .contact-info-link {
        font-size: 0.9rem;
        word-break: break-word;
    }

    .contact-info-text {
        font-size: 0.9rem;
    }

    .contact-info-subtext {
        font-size: 0.8rem;
    }

    .contact-form-wrap {
        padding: 1.5rem 1.25rem;
    }

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

    .contact-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.35s ease;
    pointer-events: none;
}

.cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-banner--hiding {
    transform: translateY(100%);
    opacity: 0;
    visibility: visible;
    pointer-events: none;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto 1.25rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.1), 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.cookie-banner-content {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-banner-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--peach);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.cookie-banner-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.55;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-decline {
    background: transparent;
    color: #888;
    border: 1px solid var(--gray-border);
}

.cookie-btn-decline:hover {
    background: var(--gray-bg);
    color: var(--charcoal);
}

.cookie-btn-settings {
    background: var(--peach);
    color: var(--copper);
    border: 1px solid rgba(214, 90, 49, 0.15);
}

.cookie-btn-settings:hover {
    background: #ffe8dd;
}

.cookie-btn-accept {
    padding: 0.6rem 1.5rem;
}

/* Cookie Preferences Panel */
.cookie-preferences {
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                margin 0.3s ease;
    pointer-events: none;
}

.cookie-preferences--open {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
    margin-bottom: 0.75rem;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.06);
}

.cookie-pref-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-border);
}

.cookie-pref-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.cookie-pref-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
}

.cookie-pref-close:hover {
    color: var(--charcoal);
    background: var(--gray-bg);
}

.cookie-pref-body {
    padding: 0.5rem 1.5rem;
}

.cookie-pref-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-pref-item:last-child {
    border-bottom: none;
}

.cookie-pref-info h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.15rem;
}

.cookie-pref-info p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d0d5d6;
    border-radius: 24px;
    transition: background 0.25s ease;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--teal);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle--locked .cookie-toggle-slider {
    background: var(--teal);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle--locked input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-pref-footer {
    padding: 0.85rem 1.5rem;
    border-top: 1px solid var(--gray-border);
    display: flex;
    justify-content: flex-end;
}

.cookie-btn-save {
    font-size: 0.85rem;
    padding: 0.55rem 1.5rem;
}

/* Cookie Banner - Responsive */
@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.25rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        margin-bottom: 0.75rem;
        border-radius: 14px;
        gap: 1rem;
    }

    .cookie-banner-content {
        min-width: auto;
    }

    .cookie-banner-icon {
        width: 38px;
        height: 38px;
    }

    .cookie-banner-icon svg {
        width: 22px;
        height: 22px;
    }

    .cookie-banner-title {
        font-size: 0.95rem;
    }

    .cookie-banner-desc {
        font-size: 0.8rem;
    }

    .cookie-banner-actions {
        flex-direction: row;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
        padding: 0.55rem 0.75rem;
        font-size: 0.8rem;
    }

    .cookie-preferences {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }

    .cookie-pref-header {
        padding: 0.85rem 1rem;
    }

    .cookie-pref-body {
        padding: 0.25rem 1rem;
    }

    .cookie-pref-item {
        padding: 0.7rem 0;
    }

    .cookie-pref-footer {
        padding: 0.75rem 1rem;
    }
}

/* ===== Toast Notifications ===== */
.toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateX(calc(100% + 2rem));
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease;
    pointer-events: none;
    max-width: 420px;
}

.toast--visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.toast--success {
    border-left: 4px solid var(--teal);
}

.toast--error {
    border-left: 4px solid var(--orange-red);
}

.toast-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast--success .toast-icon {
    background: rgba(22, 126, 133, 0.1);
    color: var(--teal);
}

.toast--error .toast-icon {
    background: rgba(217, 96, 59, 0.1);
    color: var(--orange-red);
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--charcoal);
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
}

.toast-close:hover {
    color: var(--charcoal);
    background: var(--gray-bg);
}

/* Submit button spinner */
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
    vertical-align: middle;
}

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

.contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .toast {
        top: auto;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
        transform: translateY(calc(100% + 2rem));
    }

    .toast--visible {
        transform: translateY(0);
    }
}
