/*
Theme Name: Find Adviser - Limited Company Buy to Let Mortgage
Theme URI: https://ltdcompanybtlmortgage.co.uk
Author: Find Adviser
Author URI: https://ltdcompanybtlmortgage.co.uk
Description: Professional one-page theme for Find Adviser limited company buy to let mortgage lead generation. Features dynamic location detection from subdomains, Formspree integration, and full SEO optimization for 2026.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: find-adviser
Tags: one-column, custom-colors, custom-logo, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* ========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   Find Adviser Blue/Green Theme
======================================== */
:root {
    /* Background & Foreground */
    --background: hsl(210, 33%, 98%);
    --foreground: hsl(210, 50%, 15%);
    
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(210, 50%, 15%);
    
    /* Primary Green - From Find Adviser Logo */
    --primary: hsl(142, 76%, 36%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    /* Secondary Blue - From Find Adviser Logo */
    --secondary: hsl(210, 100%, 30%);
    --secondary-foreground: hsl(0, 0%, 100%);
    
    --muted: hsl(210, 20%, 94%);
    --muted-foreground: hsl(210, 16%, 47%);
    
    /* Accent Green - Matching Logo */
    --accent: hsl(142, 76%, 36%);
    --accent-foreground: hsl(0, 0%, 100%);
    
    --destructive: hsl(0, 84%, 60%);
    --border: hsl(210, 25%, 88%);
    --input: hsl(210, 25%, 88%);
    --ring: hsl(142, 76%, 36%);
    
    --radius: 0.5rem;
    
    /* Custom tokens - Find Adviser Blue/Green */
    --hero-gradient: linear-gradient(135deg, hsl(210, 100%, 25%) 0%, hsl(210, 100%, 35%) 50%, hsl(160, 60%, 35%) 100%);
    --brand-blue: hsl(210, 100%, 30%);
    --brand-blue-light: hsl(204, 70%, 53%);
    --brand-green: hsl(142, 76%, 36%);
    --brand-green-light: hsl(145, 63%, 42%);
    --trust-green: hsl(142, 76%, 36%);
    
    /* Legacy token aliases for compatibility */
    --gold: hsl(142, 76%, 36%);
    --gold-light: hsl(145, 63%, 49%);
    --navy-dark: hsl(210, 100%, 20%);
    --navy-light: hsl(210, 80%, 40%);
    
    /* Shadows - Updated to green tint */
    --shadow-sm: 0 1px 3px 0 hsla(142, 76%, 36%, 0.08);
    --shadow-md: 0 4px 12px -2px hsla(142, 76%, 36%, 0.12);
    --shadow-lg: 0 12px 40px -8px hsla(142, 76%, 36%, 0.18);
    --shadow-accent: 0 4px 20px -4px hsla(142, 76%, 36%, 0.35);
    --shadow-gold: 0 4px 20px -4px hsla(142, 76%, 36%, 0.35);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

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

@media (min-width: 768px) {
    .container-max {
        padding: 0 2rem;
    }
}

.section-padding {
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-gradient {
    background: var(--hero-gradient);
}

.hero-section {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 3rem 0 5rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 5rem 0;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-logo {
        align-items: flex-start;
    }
}

.hero-logo-svg {
    width: 64px;
    height: 64px;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hero-logo-svg {
        width: 80px;
        height: 80px;
    }
}

.hero-logo-text {
    display: inline-block;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-logo-text {
        font-size: 2.5rem;
    }
}

.hero-logo-tagline {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 1.875rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-benefits {
    margin-bottom: 2rem;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-benefit {
        justify-content: flex-start;
    }
}

.hero-benefit svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-green-light);
    flex-shrink: 0;
}

.hero-trust-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    display: none;
}

@media (min-width: 768px) {
    .scroll-indicator {
        display: block;
    }
}

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

/* ========================================
   CONTACT FORM (Card)
======================================== */
.card-elevated {
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 2rem;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
    .form-title {
        font-size: 1.875rem;
    }
}

.form-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.input-field {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--input);
    background: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.input-field::placeholder {
    color: var(--muted-foreground);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(213, 56%, 24%, 0.1);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    color: var(--primary-foreground);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.btn-accent:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.75rem;
}

.hero-benefits-below-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-benefits-below-form .hero-benefit {
    justify-content: flex-start;
}

@media (min-width: 1024px) {
    .hero-benefits-below-form .hero-benefit {
        justify-content: flex-start;
    }
}

/* ========================================
   TRUST BADGES
======================================== */
.trust-section {
    background: var(--secondary);
}

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

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    background: var(--card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.trust-badge:hover {
    border-color: hsla(142, 76%, 36%, 0.3);
    box-shadow: var(--shadow-md);
}

.trust-badge svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.trust-badge-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.trust-badge-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials-section {
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    padding: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
}

.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    color: hsla(142, 76%, 36%, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    fill: var(--accent);
    color: var(--accent);
}

.testimonial-text {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-footer {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--foreground);
    display: block;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   SEO CONTENT SECTION
======================================== */
.seo-section {
    background: var(--background);
}

.seo-content {
    max-width: 56rem;
    margin: 0 auto;
}

.seo-content .prose {
    max-width: none;
}

.seo-content p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-content h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .seo-content h3 {
        font-size: 1.5rem;
    }
}

.seo-content h3 svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
}

.seo-content h4 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.seo-content ul, .seo-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.seo-content ul {
    list-style: disc;
}

.seo-content ol {
    list-style: decimal;
}

.seo-content li {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.seo-content strong {
    color: var(--foreground);
}

.seo-content em {
    font-style: italic;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--secondary);
    border-radius: 0.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-green);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: 0.5rem;
    overflow: hidden;
}

.comparison-table th {
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    background: var(--primary);
    color: var(--primary-foreground);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.comparison-table tr:nth-child(even) {
    background: hsla(210, 20%, 94%, 0.3);
}

/* Case Study Box */
.case-study-box {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .case-study-box {
        padding: 2rem;
    }
}

.case-study-box h3 {
    margin-top: 0;
}

.case-study-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.case-study-grid h4 {
    color: var(--accent);
    margin-top: 0;
}

.case-study-grid ul {
    font-size: 0.875rem;
}

.case-study-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

/* Disclaimer Box (within content) */
.disclaimer-box {
    background: hsla(210, 20%, 94%, 0.5);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 2rem 0;
}

.disclaimer-box p:first-child {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    background: var(--secondary);
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: hsla(210, 20%, 94%, 0.5);
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .cta-subtitle {
        font-size: 1.25rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-accent);
}

.cta-btn-primary:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    color: white;
    transition: color 0.2s ease;
}

.cta-btn-secondary:hover {
    color: var(--brand-green-light);
}

.cta-privacy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
}

/* ========================================
   DISCLAIMER SECTION
======================================== */
.disclaimer-section {
    background: hsla(210, 20%, 94%, 0.5);
}

.disclaimer-container {
    max-width: 56rem;
    margin: 0 auto;
}

.disclaimer-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .disclaimer-card {
        padding: 2rem;
    }
}

.disclaimer-card-content {
    display: flex;
    gap: 1rem;
}

.disclaimer-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.disclaimer-icon.alert {
    color: var(--accent);
}

.disclaimer-icon.shield {
    color: var(--trust-green);
}

.disclaimer-title {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .disclaimer-title {
        font-size: 1.5rem;
    }
}

.disclaimer-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.disclaimer-text strong {
    color: var(--foreground);
}

.regulatory-title {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.regulatory-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.regulatory-text:last-child {
    margin-bottom: 0;
}

.regulatory-text strong {
    color: var(--foreground);
}

.data-protection-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid-4col {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-heading-bold {
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo svg {
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-email {
    font-size: 0.875rem;
}

.footer-contact-email span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-email a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-contact-email a:hover {
    color: white;
}

.footer-regulatory {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: white;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from { 
        opacity: 0; 
        transform: scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ========================================
   TOAST NOTIFICATIONS
======================================== */
.toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    margin-top: 0.5rem;
    animation: slideUp 0.3s ease-out;
    box-shadow: var(--shadow-lg);
}

.toast-success {
    background: var(--trust-green);
}

.toast-error {
    background: var(--destructive);
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .hero-section,
    .cta-section,
    .contact-form-card {
        background: white !important;
        color: black !important;
    }
    
    .hero-title,
    .cta-title {
        color: black !important;
    }
}
