/* SafeTherapy - Global Stylesheet */

/* ===== CSS VARIABLES & ROOT ===== */
:root {
    --primary-green: #1B4D3E;
    --accent-mustard: #F0C84C;
    --accent-orange: #D1402B;
    --soft-blue: #9CCCD6;
    --cream-background: #EFEBE4;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;

    --font-display: 'Fira Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --border-radius-std: 16px;
    --border-radius-card: 32px;
    --border-radius-pill: 9999px;

    --section-padding: 6rem 2rem;
    --grid-gap: 3rem;
    --card-padding: 2.5rem;
}

/* ===== BASE STYLES & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-weight: 600;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1em;
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: var(--primary-green);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-std);
}

ul,
ol {
    margin-bottom: 1em;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

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

.btn-primary:hover {
    background-color: #1a4437;
    box-shadow: 0 8px 15px rgba(27, 77, 62, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-white-pill {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.btn-white-pill:hover {
    background-color: var(--accent-mustard);
    color: var(--primary-green);
    border-color: var(--accent-mustard);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background-color: var(--cream-background);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-nav .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.main-nav .logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary-green);
    letter-spacing: -0.05em;
    flex-shrink: 0;
    margin-right: clamp(1rem, 3vw, 2.5rem);
}

.main-nav .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.main-nav .nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.main-nav .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-mustard);
    transition: width 0.3s ease;
}

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

.main-nav .nav-cta {
    margin-left: 0;
    flex-shrink: 0;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-right: 1rem;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary-green);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

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

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

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background-color: var(--cream-background);
    width: min(350px, 85vw);
    height: 100vh;
    padding: 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(27, 77, 62, 0.1);
}

.mobile-menu-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-green);
    letter-spacing: -0.05em;
    text-decoration: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    color: var(--primary-green);
}

.mobile-menu-close:hover {
    background-color: rgba(27, 77, 62, 0.1);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-std);
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background-color: rgba(240, 200, 76, 0.1);
    color: var(--primary-green);
    transform: translateX(4px);
}

.mobile-nav-links a.active {
    background-color: rgba(27, 77, 62, 0.1);
    font-weight: 700;
}

.mobile-nav-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(27, 77, 62, 0.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: var(--cream-background);
    padding: 3rem 2rem 6rem 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-bottom: 0;
    z-index: 2;
}

.hero-content p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.hero-content .btn-group {
    justify-content: flex-start;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius-card);
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
}

/* Hero without image (text-only pages) */
.hero-section.hero-simple {
    min-height: 50vh;
    text-align: center;
    padding: 6rem 2rem 4rem 2rem;
}

.hero-section.hero-simple .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section.hero-simple .btn-group {
    justify-content: center;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    margin: 5rem auto 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius-pill);
    text-align: left;
    color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.trust-badges-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: var(--primary-green);
}

.badge-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent;
    padding: 0;
    backdrop-filter: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
}

.badge-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    stroke-width: 2.5px;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-primary-green {
    background-color: var(--primary-green);
    color: var(--text-light);
}

.section-primary-green h2,
.section-primary-green h3 {
    color: var(--white);
}

.section-primary-green a {
    color: var(--accent-mustard);
}

.section-soft-blue {
    background-color: var(--soft-blue);
    color: var(--primary-green);
}

.section-soft-blue h2,
.section-soft-blue h3 {
    color: var(--primary-green);
}

.section-cream {
    background-color: var(--cream-background);
    color: var(--text-dark);
}

.section-cream h2,
.section-cream h3 {
    color: var(--primary-green);
}

.section-white {
    background-color: var(--white);
    color: var(--text-dark);
}

.section-white h2,
.section-white h3 {
    color: var(--primary-green);
}

/* ===== BENTO GRID ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--grid-gap);
}

.bento-card {
    background-color: var(--primary-green);
    border-radius: var(--border-radius-card);
    padding: var(--card-padding);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-card);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

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

.bento-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.bento-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.4;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.bento-card.bg-mustard {
    background-color: var(--accent-mustard);
}

.bento-card.bg-mustard h3,
.bento-card.bg-mustard p {
    color: var(--primary-green);
}

.bento-card.bg-orange {
    background-color: var(--accent-orange);
}

.bento-card.bg-orange h3 {
    color: var(--white);
}

.bento-card.bg-orange p {
    color: var(--white);
    opacity: 1;
}

.bento-card.bg-soft-blue {
    background-color: var(--soft-blue);
}

.bento-card.bg-soft-blue h3,
.bento-card.bg-soft-blue p {
    color: var(--primary-green);
}

/* Icon Wrappers */
.bento-card .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.bento-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.bento-card .icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    color: var(--white);
}

.bento-card.bg-mustard .icon-wrapper svg,
.bento-card.bg-soft-blue .icon-wrapper svg {
    color: var(--primary-green);
}

.bento-card.bg-mustard .icon-wrapper,
.bento-card.bg-soft-blue .icon-wrapper {
    background: rgba(27, 77, 62, 0.1);
}

/* ===== SPLIT FEATURE SECTION ===== */
.split-feature-section {
    padding: var(--section-padding);
}

.split-feature-row {
    display: flex;
    align-items: center;
    gap: var(--grid-gap);
    margin-bottom: 6rem;
}

.split-feature-row:last-child {
    margin-bottom: 0;
}

.split-feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.split-feature-content,
.split-feature-image {
    flex: 1;
}

.split-feature-content {
    padding: 1rem;
    max-width: 500px;
}

.split-feature-content h2 {
    margin-bottom: 1rem;
}

.split-feature-image img {
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
    background-color: var(--soft-blue);
    padding: var(--section-padding);
    color: var(--primary-green);
}

.process-timeline .container {
    text-align: center;
}

.process-timeline h2 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.process-timeline>.container>p {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--primary-green);
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-step {
    background-color: var(--white);
    border-radius: var(--border-radius-card);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-green);
    border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
}

.timeline-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--accent-mustard);
    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(240, 200, 76, 0.3);
    transition: transform 0.3s ease;
}

.timeline-step:hover .timeline-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.timeline-step-content {
    flex: 1;
}

.timeline-step-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.timeline-step-content p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Alternate colors for visual interest */
.timeline-step:nth-child(2) .timeline-icon-wrapper {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.3);
}

.timeline-step:nth-child(3) .timeline-icon-wrapper {
    background-color: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(209, 64, 43, 0.3);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section h2 {
    margin-bottom: 2rem;
}

.content-section h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.content-section h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-section p {
    margin-bottom: 1.25rem;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Info boxes */
.info-box {
    background-color: var(--white);
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: var(--border-radius-std);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-box h4 {
    margin-top: 0;
    color: var(--primary-green);
}

.warning-box {
    background-color: #FFF3CD;
    border-left: 4px solid var(--accent-orange);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: var(--border-radius-std);
}

/* ===== FAQ SECTION ===== */
.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-std);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.faq-item p {
    margin-bottom: 0;
}

/* ===== RESOURCE CARDS ===== */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background-color: var(--white);
    border-radius: var(--border-radius-card);
    padding: 2rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.resource-card h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.resource-card p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.resource-card .btn {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* ===== SERVICE CARDS ===== */
.service-section {
    margin-bottom: 4rem;
}

.service-section h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-mustard);
}

.service-details {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-details h4 {
    margin-top: 0;
}

.service-details ul {
    list-style-position: inside;
}

/* Pricing table */
.pricing-table {
    background-color: var(--white);
    border-radius: var(--border-radius-card);
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table h4 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.price-item strong {
    color: var(--primary-green);
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: var(--section-padding);
    text-align: center;
}

.main-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--grid-gap);
    text-align: left;
    margin-bottom: 3rem;
}

.footer-logo-col {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--accent-mustard);
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.footer-logo-col p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1rem;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-mustard);
    opacity: 1;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom a,
.footer-link {
    color: var(--accent-mustard);
    margin: 0 0.5rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom a:hover,
.footer-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    background-color: var(--cream-background);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.form-helper {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-std);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: var(--white);
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

/* Form Success Message */
.form-success-message {
    background: linear-gradient(135deg, var(--primary-green), #1a4437);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-std);
    text-align: center;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.2);
    animation: slideIn 0.3s ease;
    display: none;
}

.form-success-message.show {
    display: block;
}

.form-success-message svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem auto;
    stroke: var(--accent-mustard);
}

.form-success-message h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-success-message p {
    margin: 0;
    opacity: 0.9;
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav .nav-links {
        display: none;
    }

    .main-nav .nav-cta {
        display: none;
    }

    .main-nav .container {
        justify-content: space-between;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-section {
        text-align: center;
        padding-bottom: 3rem;
    }

    .hero-section .container {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .hero-content .btn-group {
        justify-content: center;
    }

    .hero-image {
        transform: none;
        border-radius: var(--border-radius-card);
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }

    .trust-badges-title {
        white-space: normal;
        font-size: 1rem;
        line-height: 1.3;
    }

    .badge-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .badge-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        min-width: 80px;
    }

    .badge-item svg {
        width: 32px;
        height: 32px;
    }

    .split-feature-row {
        flex-direction: column;
        margin-bottom: 4rem;
    }

    .split-feature-row:nth-child(even) {
        flex-direction: column;
    }

    .split-feature-content {
        order: 2;
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

    .split-feature-image {
        order: 1;
        margin-bottom: 2rem;
    }
}

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

    .timeline-step {
        padding: 2rem 1.5rem;
    }

    .main-footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-col {
        align-items: center;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .trust-badges {
        margin: 3rem auto 0 auto;
        padding: 1rem;
        gap: 1rem;
    }

    .trust-badges-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .badge-list {
        gap: 0.75rem;
    }

    .badge-item {
        min-width: 70px;
        gap: 0.25rem;
    }

    .badge-item svg {
        width: 28px;
        height: 28px;
    }

    .badge-item span {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 4rem 1.5rem;
        --grid-gap: 2rem;
        --card-padding: 2rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

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