/*
Theme Name: Stadionbanden
Theme URI: https://www.stadionbanden.de
Author: Stadionbanden.de
Author URI: https://www.stadionbanden.de
Description: Custom WordPress theme for Stadionbanden.de – Professional advertising banners for sports clubs. AluDiBond plates and PVC banners.
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: stadionbanden
Tags: one-page, custom-logo, sports, advertising
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc; /* slate-50 */
    color: #0f172a;       /* slate-900 */
}

::selection {
    background: #f97316;
    color: #fff;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   VARIABLES
   ============================================= */
:root {
    --brand: #5CB85C;
    --brand-dark: #4cae4c;
    --brand-light: #e8f5e8;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

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

.container-sm {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-md {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-brand { color: var(--brand); }
.text-orange { color: var(--orange); }
.bg-brand { background-color: var(--brand); }
.bg-orange { background-color: var(--orange); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
    position: fixed;
    width: 100%;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-nav .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-nav .logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    font-style: italic;
    color: var(--brand);
}

.site-nav .logo span { color: var(--orange); }

.nav-links {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-600);
}

.nav-links a:hover { color: var(--orange); transition: color 0.2s; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: none;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand);
}

.nav-phone span {
    color: var(--slate-400);
    font-weight: 400;
    margin-right: 0.25rem;
}

.btn-cta {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(249,115,22,0.3);
    transition: all 0.2s;
}

.btn-cta:hover {
    background: var(--orange-dark);
}

.btn-cta-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
}

.btn-cta-lg:hover {
    transform: scale(1.05);
}

.btn-brand {
    display: inline-block;
    width: 100%;
    background: var(--brand);
    color: #fff;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.btn-brand:hover { background: var(--brand-dark); }

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

@media (min-width: 1024px) {
    .nav-phone { display: block; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem 0;
    background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.8)),
                url('https://images.unsplash.com/photo-1508344928928-7165b67de128?auto=format&fit=crop&q=80&w=1920') center/cover;
    color: #fff;
}

.hero-inner { max-width: 56rem; }

.hero .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(92,184,92,0.5);
    border: 1px solid var(--brand);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero h1 span {
    background: linear-gradient(to right, #fb923c, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--slate-200);
}

/* =============================================
   WARUM / BENEFITS
   ============================================= */
.section-warum {
    padding: 6rem 1.5rem;
}

.warum-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .warum-grid { grid-template-columns: 1fr 1fr; }
}

.warum-grid h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.warum-grid p {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.benefit-list { margin-top: 2rem; }

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid var(--slate-100);
    margin-bottom: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: #fff7ed;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg { width: 1.5rem; height: 1.5rem; color: #ea580c; }
.benefit-item span { font-weight: 600; color: var(--slate-800); }

.warum-image-wrap {
    position: relative;
}

.warum-image-wrap::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to top right, var(--orange), var(--brand));
    border-radius: 1rem;
    opacity: 0.2;
    filter: blur(16px);
}

.warum-image-wrap img {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 4px solid #fff;
    object-fit: cover;
    height: 500px;
}

/* =============================================
   MATERIALIEN / PRODUCTS
   ============================================= */
.section-material {
    padding: 6rem 1.5rem;
    background: var(--brand);
    color: #fff;
}

.section-material .section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-material .section-head .label {
    color: #fb923c;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-material .section-head h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.section-material .section-head .bar {
    height: 6px;
    width: 6rem;
    background: var(--orange);
    border-radius: 9999px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .product-grid { grid-template-columns: 1fr 1fr; }
}

.product-card {
    background: #fff;
    color: var(--slate-900);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transition: transform 0.3s;
}

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

.product-card .card-image {
    height: 12rem;
    overflow: hidden;
    position: relative;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .card-image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(92,184,92,0.2);
}

.product-card .card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: var(--brand);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-card .card-body { padding: 2rem; }

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-card .card-desc {
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.product-card .price-box {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-row .label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-row .value { font-weight: 700; color: var(--brand); }

.price-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--slate-200);
}

.price-main .tax { font-size: 0.875rem; color: var(--slate-500); }

.price-main .amount {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--orange);
}

/* =============================================
   STEPS / ABLAUF
   ============================================= */
.section-ablauf {
    padding: 6rem 1.5rem;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
}

.section-ablauf h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.steps-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

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

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background: #fff;
    border: 4px solid var(--slate-100);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-400);
    transition: all 0.3s;
}

.step:hover .step-number {
    border-color: var(--orange);
    color: var(--orange);
}

.step h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.875rem;
    color: var(--slate-600);
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
    padding: 2.5rem 0;
    background: var(--orange);
    overflow: hidden;
    display: flex;
    border-top: 1px solid #ea580c;
    border-bottom: 1px solid #ea580c;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    animation: marquee 20s linear infinite;
    display: inline-flex;
    width: max-content;
    gap: 3rem;
    padding-right: 3rem;
}

.marquee-track span {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.marquee-track .dot {
    opacity: 0.5;
    font-weight: 700;
    letter-spacing: 0.3em;
}

/* =============================================
   TRUST / FEATURES
   ============================================= */
.section-trust {
    padding: 5rem 1.5rem;
    text-align: center;
}

.section-trust .label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--slate-400);
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    gap: 3rem;
}

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

.trust-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid var(--slate-100);
}

.trust-card .big {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(to bottom right, var(--brand), var(--brand-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.trust-card .title {
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.trust-card .desc {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* =============================================
   FAQ
   ============================================= */
.section-faq {
    padding: 6rem 1.5rem;
    background: var(--slate-100);
    border-top: 1px solid var(--slate-200);
}

.section-faq h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--brand);
    margin-bottom: 3rem;
}

.accordion-item {
    border-radius: 0.75rem;
    border: 1px solid var(--slate-200);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--brand);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: background 0.2s;
}

.accordion-btn:hover { background: var(--slate-50); }

.accordion-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--slate-400);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content { max-height: 500px; }
.accordion-item.active .accordion-btn svg { transform: rotate(180deg); color: var(--orange); }

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--slate-600);
    line-height: 1.75;
}

/* =============================================
   FINAL CTA
   ============================================= */
.section-cta {
    padding: 6rem 1.5rem;
    background: var(--brand);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&q=80&w=1920') center/cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.section-cta .cta-inner {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-cta h2 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.section-cta p {
    font-size: 1.25rem;
    color: var(--brand-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cta-actions { flex-direction: row; justify-content: center; }
}

.cta-phone {
    color: var(--brand-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-phone svg { width: 1.25rem; height: 1.25rem; }

.cta-phone a {
    font-weight: 700;
    color: #fff;
    font-size: 1.25rem;
}

.cta-phone a:hover { color: var(--orange); transition: color 0.2s; }

.cta-email {
    color: var(--brand-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cta-email svg { width: 1.25rem; height: 1.25rem; }

.cta-email a {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.cta-email a:hover { color: var(--orange); transition: color 0.2s; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 3rem 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    font-weight: 800;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    font-style: italic;
}

.footer-logo span { color: var(--orange); }

.footer-contact p { margin-bottom: 0.25rem; }

.footer-contact a {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    transition: color 0.2s;
}

.footer-contact a:hover { color: var(--orange); }

.footer-contact .email-link {
    font-size: 0.9rem;
    font-weight: 500;
}

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

@media (min-width: 768px) {
    .footer-links { justify-content: flex-end; }
}

.footer-links a:hover { color: #fff; transition: color 0.2s; }

.footer-copy {
    text-align: center;
    font-size: 0.875rem;
}

/* =============================================
   CONTACT POPUP MODAL
   ============================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.is-open {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 480px;
    padding: 2.5rem;
    position: relative;
    animation: modalIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: var(--slate-100);
    border-radius: 9999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--slate-500);
    transition: background 0.2s;
}

.modal-close:hover { background: var(--slate-200); }

.modal-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.modal-box .modal-subtitle {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-600);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--slate-900);
    background: var(--slate-50);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(92,184,92,0.15);
}

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

/* File Upload Field */
.label-optional {
    font-weight: 400;
    color: #999;
    font-size: 0.85em;
}

.file-upload-area {
    position: relative;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--orange);
    background: rgba(249,115,22,0.05);
}

.file-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    pointer-events: none;
}

.file-upload-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.file-upload-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.file-upload-text strong {
    color: var(--orange);
}

.file-upload-hint {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
       background: #5CB85C !important;
    border-radius: 0.35rem;
    padding: 0.4rem 0.65rem;
    font-size: 0.85rem;
}

.file-item-name {
    color: rgba(255,255,255,0.8);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 2rem);
}

.file-item-remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    transition: color 0.15s;
}

.file-item-remove:hover {
    color: #ef4444;
}

.form-submit {
    width: 100%;
    background: var(--orange);
    color: #fff;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 0.5rem;
    box-shadow: 0 4px 14px rgba(249,115,22,0.3);
    transition: background 0.2s;
}

.form-submit:hover { background: var(--orange-dark); }

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


#fileUploadArea {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 2rem 1rem;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background-color: #f8fafc;
  transition: all 0.3s ease;
  cursor: pointer;
}

#fileUploadArea:hover {
  border-color: #f97316;
  background-color: #fff7ed;
}

#fileUploadArea input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

#fileUploadArea .file-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #475569;
  text-align: center;
  pointer-events: none;
}

#fileUploadArea .file-upload-text {
  display: block;
  width: 100%;
color:gray;
  text-align: center;
  font-size: 15px;
}

#fileUploadArea .file-upload-text strong {
  color: #f97316;
  text-decoration: underline;
}

#fileUploadArea .file-upload-hint {
  color: #94a3b8;
  font-size: 12px;
  margin-top: 4px;
}


/* Container for the navigation elements */
.nav-inner {
  display: flex;
  flex-wrap: wrap; /* Allow elements to wrap if space is limited */
  justify-content: center; /* Center elements when they wrap */
  height: auto !important; /* Allow the container height to adjust */
  padding: 15px 24px !important; /* Add some vertical padding for mobile */
  gap: 10px; /* Add spacing between the logo and button */
}

/* The logo link */
a.logo {
  font-size: clamp(1.2rem, 5vw, 1.5rem) !important; /* Scale font size based on screen width */
  width: auto !important;
  max-width: 100% !important;
  text-align: center !important;
  margin: 0 !important;
}

/* The container for the button and phone info */
.nav-right {
  display: flex;
  width: auto !important;
  justify-content: center !important;
  flex-wrap: wrap;
  gap: 10px;
}

/* Ensure button doesn't overflow */
.btn-cta {
  max-width: 100% !important;
}

/* =============================================
   CONTACT MODAL — OVERLAY & BOX
   (replaces any previous .modal rules)
   ============================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-overlay.is-open {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    margin: auto;
    animation: modalIn 0.25s ease-out;
}

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



/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
    .modal-box {
        padding: 1.75rem 1.25rem;
    }
}