/*
Theme Name: ANO Settlement Trust
Theme URI: https://ano-settlement.com
Author: ANO Settlement Trust
Author URI: https://ano-settlement.com
Description: A compassionate, professional theme for the Archdiocese of New Orleans Settlement Trust website.
Version: 1.2.4
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anosettlement
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
    --warm-white: #FEFDFB;
    --soft-cream: #FBF9F5;
    --horizon-gold: #E8B86D;
    --sunrise-peach: #F4C8A3;
    --dawn-blue: #7BAFCB;
    --sky-light: #B8D4E3;
    --warm-gray: #6B6560;
    --deep-gray: #3D3A36;
    --trust-navy: #2C4A5E;
    --hope-green: #7BA38C;
    --gentle-shadow: rgba(107, 101, 96, 0.08);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    color: var(--deep-gray);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==========================================================================
   Horizon Background Effect
   ========================================================================== */

.horizon-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        180deg,
        var(--warm-white) 0%,
        var(--soft-cream) 40%,
        rgba(184, 212, 227, 0.15) 70%,
        rgba(244, 200, 163, 0.12) 85%,
        rgba(232, 184, 109, 0.08) 100%
    );
}

.horizon-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
        0deg,
        rgba(232, 184, 109, 0.06) 0%,
        transparent 100%
    );
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    color: var(--trust-navy);
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 101, 96, 0.08);
    transition: all 0.3s ease;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--horizon-gold) 0%, var(--sunrise-peach) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232, 184, 109, 0.25);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--trust-navy);
    letter-spacing: -0.02em;
}

.logo-text span {
    font-weight: 400;
    color: var(--warm-gray);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--warm-gray);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--horizon-gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--trust-navy);
}

nav a:hover::after {
    width: 100%;
}

.nav-contact {
    background: var(--trust-navy);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease !important;
}

.nav-contact:hover {
    background: var(--dawn-blue);
    transform: translateY(-2px);
}

.nav-contact::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--trust-navy);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--horizon-gold);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: italic;
    color: var(--dawn-blue);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--trust-navy) 0%, #3D5E75 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(44, 74, 94, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 74, 94, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--trust-navy);
    border: 2px solid rgba(44, 74, 94, 0.2);
}

.btn-secondary:hover {
    border-color: var(--trust-navy);
    background: var(--soft-cream);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 1.2s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(107, 101, 96, 0.15);
}

.hero-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(
        180deg,
        var(--sky-light) 0%,
        var(--dawn-blue) 40%,
        var(--sunrise-peach) 70%,
        var(--horizon-gold) 100%
    );
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(255,255,255,0.4) 0%, transparent 100%);
}

.sun-element {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(232, 184, 109, 0.6) 50%, transparent 70%);
    border-radius: 50%;
    animation: sunGlow 4s ease-in-out infinite;
}

@keyframes sunGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(107, 101, 96, 0.12);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: 2s;
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    background: var(--soft-cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.floating-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--horizon-gold);
}

.floating-card-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-gray);
}

/* ==========================================================================
   Phone Banner
   ========================================================================== */

.phone-banner {
    background: linear-gradient(135deg, var(--trust-navy) 0%, #3D5E75 100%);
    padding: 1.5rem 2rem;
    text-align: center;
}

.phone-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.phone-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: var(--sunrise-peach);
}

.phone-number svg {
    width: 24px;
    height: 24px;
    stroke: var(--horizon-gold);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--warm-gray);
    font-size: 1.1rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    background: var(--soft-cream);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--gentle-shadow);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(107, 101, 96, 0.12);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-cream) 0%, rgba(232, 184, 109, 0.15) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--horizon-gold);
}

.about-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

/* ==========================================================================
   Resources Section
   ========================================================================== */

.resources {
    background: white;
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.resource-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--soft-cream);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    border-color: var(--horizon-gold);
    transform: translateX(5px);
}

.resource-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--gentle-shadow);
}

.resource-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--trust-navy);
}

.resource-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--trust-navy);
}

.resource-content p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.resource-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--horizon-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.resource-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Confidential Report Section
   ========================================================================== */

.confidential {
    background: linear-gradient(135deg, var(--trust-navy) 0%, #1E3A4C 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.confidential::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.confidential-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.confidential-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.confidential-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--horizon-gold);
}

.confidential h2 {
    color: white;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.confidential p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.confidential .btn {
    background: var(--horizon-gold);
    color: var(--deep-gray);
}

.confidential .btn:hover {
    background: var(--sunrise-peach);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq {
    background: var(--soft-cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 3rem;
}

.faq-category-section:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--trust-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--horizon-gold);
    display: inline-block;
}

.faq-category-items {
    margin-top: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--gentle-shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--trust-navy);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--soft-cream);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--trust-navy);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--trust-navy);
}

.faq-item.active .faq-icon svg {
    stroke: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==========================================================================
   Updates Section
   ========================================================================== */

.updates {
    background: white;
}

.updates-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.update-card {
    background: var(--soft-cream);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(107, 101, 96, 0.12);
}

.update-image {
    height: 180px;
    background: linear-gradient(135deg, var(--sky-light) 0%, var(--dawn-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.update-image svg {
    width: 48px;
    height: 48px;
    stroke: white;
    opacity: 0.8;
}

.update-content {
    padding: 1.5rem;
}

.update-date {
    font-size: 0.8rem;
    color: var(--horizon-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.update-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--trust-navy);
}

.update-content p {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    background: var(--soft-cream);
}

.contact-full-width {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-full-width .section-header {
    margin-bottom: 3rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--gentle-shadow);
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--trust-navy);
}

.contact-method-content h4 {
    font-size: 1rem;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    color: var(--deep-gray);
    margin-bottom: 0.25rem;
}

.contact-method-content a,
.contact-method-content p {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-method-content a:hover {
    color: var(--trust-navy);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--gentle-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--deep-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(107, 101, 96, 0.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--soft-cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dawn-blue);
    background: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* WPForms Styling Override */
.contact-form .wpforms-container {
    margin: 0;
}

.contact-form .wpforms-field {
    margin-bottom: 1rem;
}

.contact-form .wpforms-field-label {
    font-weight: 500;
    color: var(--deep-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form .wpforms-field input,
.contact-form .wpforms-field textarea,
.contact-form .wpforms-field select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(107, 101, 96, 0.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--soft-cream);
}

.contact-form .wpforms-field input:focus,
.contact-form .wpforms-field textarea:focus,
.contact-form .wpforms-field select:focus {
    outline: none;
    border-color: var(--dawn-blue);
    background: white;
}

.contact-form .wpforms-submit-container button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    background: linear-gradient(135deg, var(--trust-navy) 0%, #3D5E75 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(44, 74, 94, 0.25);
}

.contact-form .wpforms-submit-container button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 74, 94, 0.35);
}

.contact-form-wrapper {
    margin-top: 3rem;
}

.contact-form-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--trust-navy);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Alternate Contact Section
   ========================================================================== */

.contact-alternate {
    background: var(--soft-cream);
    text-align: center;
}

.contact-alternate-inner {
    max-width: 900px;
    margin: 0 auto;
}

.contact-alternate .section-header {
    margin-bottom: 3rem;
}

/* Call Center Card */
.call-center-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--gentle-shadow);
    margin-bottom: 3rem;
}

.call-center-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--trust-navy);
    text-align: center;
    margin-bottom: 2rem;
}

.call-center-contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.call-center-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-center-item:hover {
    transform: translateY(-3px);
}

.call-center-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--trust-navy) 0%, #3D5E75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(44, 74, 94, 0.2);
}

.call-center-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--horizon-gold);
    stroke-width: 2;
}

.call-center-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.call-center-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.call-center-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--trust-navy);
}

a.call-center-item .call-center-value {
    color: var(--trust-navy);
    transition: color 0.3s ease;
}

a.call-center-item:hover .call-center-value {
    color: var(--horizon-gold);
}

/* Large Phone Button */
.contact-phone-cta {
    margin-bottom: 3rem;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--trust-navy) 0%, #3D5E75 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(44, 74, 94, 0.3);
    transition: all 0.3s ease;
}

.btn-phone:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 74, 94, 0.4);
}

.btn-phone svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--horizon-gold);
    stroke-width: 2;
}

.btn-phone-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-phone-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.btn-phone-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Email Section */
.contact-email-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--gentle-shadow);
}

.contact-email-heading {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.contact-email-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-email-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--soft-cream);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-email-card:hover {
    border-color: var(--horizon-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gentle-shadow);
}

.contact-email-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--gentle-shadow);
}

.contact-email-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--trust-navy);
    stroke-width: 2;
}

.contact-email-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.contact-email-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--trust-navy);
}

.contact-email-title {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* Case Website Button */
.case-website-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-case-website {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--horizon-gold) 0%, var(--sunrise-peach) 100%);
    color: var(--trust-navy);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(232, 184, 109, 0.3);
    transition: all 0.3s ease;
}

.btn-case-website:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 184, 109, 0.4);
}

.btn-case-website svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.btn-case-website .external-icon {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
    .call-center-contacts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .call-center-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .call-center-content {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .call-center-card {
        padding: 2rem 1.5rem;
    }

    .call-center-name {
        font-size: 1.5rem;
    }

    .btn-phone {
        padding: 1.25rem 2rem;
        width: 100%;
        justify-content: center;
    }

    .btn-phone-number {
        font-size: 1.5rem;
    }

    .contact-email-grid {
        grid-template-columns: 1fr;
    }

    .contact-email-card {
        flex-direction: row;
        text-align: left;
    }

    .contact-email-content {
        text-align: left;
    }

    .btn-case-website {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background: var(--deep-gray);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Simplified footer layout when Resources section is hidden */
.footer-top-simplified {
    grid-template-columns: 2fr 1fr 1.5fr;
}

.footer-brand .logo-text {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: white;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--horizon-gold);
}

.footer-advisory {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
}

.footer-advisory h4 {
    color: white;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-advisory p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(254, 253, 251, 0.98);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        border-bottom: 1px solid rgba(107, 101, 96, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(107, 101, 96, 0.08);
    }

    nav ul li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-inner {
        padding: 0.75rem 1rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .floating-card {
        display: none;
    }

    .phone-banner-inner {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
