/* Peabody Guardian - Landing Page Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #070b19;
    --bg-card: rgba(15, 23, 42, 0.65);
    --bg-card-hover: rgba(23, 37, 70, 0.85);
    --border-color: rgba(0, 127, 255, 0.15);
    --border-hover: rgba(0, 240, 255, 0.4);
    
    --color-primary: #007fff; /* Shield Blue */
    --color-cyan: #00f0ff; /* Tech Cyan */
    --color-emerald: #10b981; /* Success Green */
    --color-red: #ef4444; /* Alert Red */
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Cyber Grid */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1000px;
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(0, 127, 255, 0.12) 0%, transparent 60%),
        linear-gradient(rgba(0, 127, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 127, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: 0 0, center 0, center 0;
    pointer-events: none;
    z-index: 0;
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* --- Header / Navigation --- */
header.nav-header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(7, 11, 25, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 127, 255, 0.6));
    animation: pulseLogo 3s infinite ease-in-out;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 40%, #a5f3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s, text-shadow 0.25s;
}

nav.main-nav a:hover {
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.btn-header {
    background: rgba(0, 127, 255, 0.1);
    border: 1px solid rgba(0, 127, 255, 0.4);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-header:hover {
    background: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 127, 255, 0.4);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0 100px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-tag {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--color-cyan);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    width: 100%;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0056cc 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 127, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 127, 255, 0.5);
    filter: brightness(1.1);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

/* Shield Visual Container (Right side of Hero) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 127, 255, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
    animation: floatGlow 8s infinite ease-in-out;
}

.hero-shield-img {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 35px rgba(0, 7, 25, 0.9)) drop-shadow(0 0 15px rgba(0, 127, 255, 0.3));
    animation: floatShield 6s infinite ease-in-out;
}

/* --- Features Grid Section --- */
.features-section {
    padding: 90px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    color: var(--color-cyan);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 60%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 650px;
    margin: 12px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.features-grid.grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
}


.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.06), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 127, 255, 0.12);
}

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

.feature-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(0, 127, 255, 0.12);
    border: 1px solid rgba(0, 127, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 20px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 127, 255, 0.5);
    border-color: var(--color-primary);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.feature-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Tech Protocol Section --- */
.protocol-section {
    padding: 90px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.protocol-img-container {
    background: radial-gradient(circle, rgba(0, 127, 255, 0.08) 0%, transparent 60%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.protocol-mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mock-card {
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid rgba(0, 127, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.mock-card.highlight {
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.mock-val {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-cyan);
    margin-bottom: 4px;
}

.mock-val.red { color: var(--color-red); }
.mock-val.green { color: var(--color-emerald); }

.mock-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.protocol-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.protocol-list {
    list-style: none;
    margin-top: 24px;
}

.protocol-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.protocol-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.15);
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
    flex-shrink: 0;
}

.protocol-item-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.protocol-item-text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Call To Action Section --- */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #03060c 100%);
    position: relative;
}

.cta-box {
    background: radial-gradient(circle at top left, rgba(0, 127, 255, 0.15) 0%, transparent 60%), rgba(13, 22, 47, 0.5);
    border: 1px solid rgba(0, 127, 255, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* --- Footer --- */
footer.main-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #040710;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
}

.footer-brand span {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Animations --- */
@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(0, 127, 255, 0.6));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.9));
    }
}

@keyframes floatShield {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1.5deg);
    }
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }
    50% {
        transform: translate(-15px, 10px) scale(1.1);
    }
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 50px 0 80px;
    }
    .hero-content {
        align-items: center;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-actions {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .protocol-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    header.nav-header {
        height: auto;
        padding: 16px 0;
        flex-direction: column;
        gap: 16px;
    }
    nav.main-nav {
        display: none; /* Hide standard nav items on mobile */
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .cta-box {
        padding: 40px 20px;
    }
    .cta-title {
        font-size: 26px;
    }
    .footer-wrap {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* --- Educational & Informational Resource Page Styles --- */
.resource-page-header {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(0, 127, 255, 0.03) 0%, transparent 100%);
}

.resource-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    color: var(--color-cyan);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.resource-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.resource-meta span:not(:last-child)::after {
    content: '•';
    margin-left: 16px;
    color: var(--text-muted);
}

.resource-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 16px;
}

.resource-layout {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 40px;
    padding: 60px 0 100px;
    align-items: start;
}

.article-body {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 36px 0 16px;
    letter-spacing: -0.5px;
}

.article-content h2:first-of-type {
    margin-top: 0;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-cyan);
    margin: 24px 0 12px;
}

.article-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.article-content li {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.article-content strong {
    color: #fff;
    font-weight: 600;
}

.article-callout {
    background: rgba(0, 127, 255, 0.06);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
}

.article-callout.safety {
    background: rgba(16, 185, 129, 0.06);
    border-left-color: var(--color-emerald);
}

.article-callout-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-callout p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Sidebar Styling */
.resource-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 28px;
}

.sidebar-widget.featured {
    border-color: var(--border-hover);
    background: radial-gradient(circle at top left, rgba(0, 127, 255, 0.08) 0%, transparent 80%), rgba(15, 23, 42, 0.6);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.widget-links {
    list-style: none;
}

.widget-links li {
    margin-bottom: 12px;
}

.widget-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s;
    line-height: 1.4;
    display: inline-block;
}

.widget-links a:hover {
    color: var(--color-cyan);
}

.widget-cta-button {
    width: 100%;
    margin-top: 16px;
    justify-content: center;
}

@media (max-width: 900px) {
    .resource-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 80px;
    }
    .article-body {
        padding: 32px 24px;
    }
    .resource-title {
        font-size: 30px;
    }
}

/* --- Contact Page Styles --- */
.contact-section {
    padding: 60px 0 100px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 80px;
    }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 127, 255, 0.1);
    border: 1px solid rgba(0, 127, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 13.5px;
    color: var(--text-muted);
}

.contact-detail-text a {
    color: var(--color-cyan);
    text-decoration: none;
    transition: text-shadow 0.2s;
}

.contact-detail-text a:hover {
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* Form Styling */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.04), transparent 50%);
    pointer-events: none;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-input {
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.25s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
    background: rgba(10, 15, 30, 0.85);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

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

.form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* Alert Banners */
.alert-banner {
    display: none;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13.5px;
    align-items: flex-start;
    gap: 12px;
    animation: fadeIn 0.3s ease;
}

.alert-banner.success {
    display: flex;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #a7f3d0;
}

.alert-banner.error {
    display: flex;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* reCAPTCHA Custom Styles */
.recaptcha-container {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 78px;
}

@media (max-width: 480px) {
    .recaptcha-container {
        justify-content: center;
    }
}



