/* =========================
   RESET & BASE
========================= */

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

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

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

/* Container width */
section {
    padding: 3rem 1rem;
}

.container,
.hero-content,
.footer-container,
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */

.btn-cta {
    display: inline-block;
    background: #006cd1;
    color: #ffffff;
    padding: 0.85rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: background 0.2s, transform 0.1s;
}

.btn-cta:hover,
.btn-cta:focus {
    background: #0053a6;
    transform: translateY(-1px);
    outline: none;
}

/* =========================
   NAVBAR (accessibil, fără JS)
========================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111111;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.6rem;
}

.navbar a {
    color: #111111;
    font-size: 1rem;
    transition: 0.2s;
}

.navbar a:hover,
.navbar a:focus {
    color: #0053a6;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span {
    width: 26px;
    height: 3px;
    background: #111;
    display: block;
    border-radius: 2px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: "";
    width: 26px;
    height: 3px;
    background: #111;
    position: absolute;
    left: 0;
    border-radius: 2px;
}

.nav-toggle-label span::before {
    top: -7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* Mobile menu behavior */
@media (max-width: 800px) {
    .navbar {
        position: absolute;
        right: 0;
        top: 60px;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e5e5e5;
        display: none;
        padding: 1rem;
    }

    .navbar ul {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle-label {
        display: block;
    }

    .nav-toggle:checked + .nav-toggle-label + .navbar {
        display: block;
    }
}

/* =========================
   HERO SECTION
========================= */

.hero {
    background: #07111d;
    color: #ffffff;
    padding: 5rem 1rem 4rem;
}

.hero h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    max-width: 700px;
}

.hero p {
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 2rem;
    color: #e6e6e6;
}

/* =========================
   BENEFICII
========================= */

.benefits h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.benefits-intro {
    max-width: 900px;
    margin-bottom: 2rem;
}

.benefit-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefit-box {
    flex: 1 1 240px;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 1.2rem 1.3rem;
    color: #111111;
}

/* =========================
   PROBLEME
========================= */

.problems {
    background: #f0f0f0;
}

.problems h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.problems-list {
    list-style: disc;
    padding-left: 1.4rem;
    margin-bottom: 1.5rem;
}

.problems-text {
    max-width: 850px;
}

/* =========================
   HOW IT WORKS
========================= */

.how h2 {
    font-size: 1.6rem;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 1.5rem;
}

.step {
    flex: 1 1 220px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 6px;
    padding: 1rem 1.1rem;
}

.step .nr {
    color: #003b80;
    font-weight: bold;
    font-size: 1.2rem;
}

/* =========================
   SEO TEXT
========================= */

.seo-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.seo-text p {
    max-width: 900px;
    margin-bottom: 1rem;
}

/* =========================
   CTA FINAL
========================= */

.cta-final {
    background: #081623;
    text-align: center;
    color: #ffffff;
    padding: 4rem 1rem;
}

.cta-final h2 {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
}

.cta-final p {
    color: #e6e6e6;
    margin-bottom: 1.5rem;
}

/* =========================
   FOOTER (corporate)
========================= */

.footer {
    background: #0a0a0a;
    color: #e5e5e5;
    padding: 3rem 1rem 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col a {
    color: #d0d0d0;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #c0c0c0;
}

.footer-bottom a {
    color: #d5d5d5;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* =========================
   RESPONSIVE GLOBAL
========================= */

@media (max-width: 800px) {
    .benefit-container,
    .steps {
        flex-direction: column;
    }

    .benefit-box,
    .step {
        flex: 1 1 auto;
    }

    .hero h1 {
        font-size: 1.9rem;
    }
}

/* ================================================
   SEO EXTENDED SECTION (premium corporate style)
   ================================================ */

.seo-extended {
    background: #f7f9fc;                    /* fundal foarte deschis, profesional */
    border-top: 1px solid #dce3ed;         /* linie subtilă de separare */
    padding: 3.5rem 1rem;
    color: #111111;
}

.seo-extended h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #0b1f33;                         /* albastru corporatist închis */
    font-weight: 700;
}

.seo-extended h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    color: #0b1f33;
}

.seo-extended p {
    max-width: 950px;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #222;
}

.seo-extended ul {
    padding-left: 1.4rem;
    margin-bottom: 1.3rem;
}

.seo-extended ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #222;
}

/* bullet points premium */
.seo-extended ul li::marker {
    color: #005bb4; /* albastru corporatist vizibil */
}

/* ================================================
   HEADINGS GLOBAL (premium enterprise typography)
   ================================================ */

h1, h2, h3 {
    letter-spacing: -0.02rem;
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
}

h3 {
    font-weight: 600;
}

/* ================================================
   SPACING OPTIMIZATION (enterprise readability)
   ================================================ */

section {
    scroll-margin-top: 100px;
}

p, li {
    font-size: 1.05rem;
}

/* ================================================
   LINK ACCESSIBILITY + PROFESSIONAL LOOK
   ================================================ */

a {
    color: #005bb4;
    transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover,
a:focus {
    color: #003b80;
    opacity: 0.9;
}

/* ================================================
   IMPROVED BUTTON DESIGN (corporate enterprise)
   ================================================ */

.btn-cta {
    background: #006cd1;
    border-radius: 6px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.btn-cta:hover {
    background: #0053a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.btn-cta:active {
    transform: translateY(0px);
}

/* ================================================
   CARDS (beneficii + pași) – modern corporate
   ================================================ */

.benefit-box,
.step {
    transition: box-shadow 0.2s, transform 0.15s;
}

.benefit-box:hover,
.step:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* ================================================
   CTA FINAL – contrast perfect + aspect premium
   ================================================ */

.cta-final {
    background: linear-gradient(180deg, #081623 0%, #0a1e30 100%);
    color: #ffffff;
    text-align: center;
    padding: 4rem 1rem;
}

.cta-final h2 {
    font-size: 1.8rem;
    font-weight: 800;
}

.cta-final p {
    font-size: 1.1rem;
}

/* ================================================
   FOOTER – look enterprise real
   ================================================ */

.footer {
    background: #0a0a0a;
    color: #e8e8e8;
    padding: 3rem 1rem;
    border-top: 1px solid #1d1d1d;
}

.footer a {
    color: #d0d0d0;
}

.footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    color: #bbbbbb;
}

/* ================================================
   RESPONSIVE IMPROVEMENTS
   ================================================ */

@media (max-width: 900px) {
    .seo-extended {
        padding: 3rem 1rem;
    }

    .seo-extended h2 {
        font-size: 1.5rem;
    }

    .cta-final h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .seo-extended h2 {
        font-size: 1.35rem;
    }

    .seo-extended p,
    .seo-extended li {
        font-size: 1rem;
    }
}
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 1rem 1.2rem;
    border-radius: 6px;
    transition: 0.2s;
}

.blog-card:hover {
    background: #f2f7ff;
    border-color: #aac8ff;
    transform: translateX(4px);
}

.blog-card h3 {
    margin-bottom: 0.3rem;
    color: #0b1f33;
}
/* ======================================
   ENTERPRISE PRICING TABLE (premium)
====================================== */

.pricing-table.enterprise {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding-top: 1rem;
}

.price-box {
    flex: 1 1 300px;
    background: #ffffff;
    border: 1px solid #d1dae6;
    padding: 2.3rem 2rem;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.price-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.price-box.highlight {
    border: 2px solid #005bb4;
    background: #f7fbff;
}

/* plan header */
.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: #0b1f33;
    font-weight: 700;
}

/* badge design */
.badge {
    font-size: 0.75rem;
    background: #dde6f3;
    padding: 0.35rem 0.6rem;
    border-radius: 5px;
    color: #0b1f33;
    font-weight: 600;
}

.badge-popular {
    background: #005bb4;
    color: #ffffff;
}

/* Pricing */
.price {
    font-size: 2.4rem;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    color: #005bb4;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
}

/* Onboarding */
.onboarding {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #333;
}

.onboarding strong {
    color: #003f7a;
}

/* List styling */
.price-box ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 2rem 0;
}

.price-box ul li {
    margin: 0.4rem 0;
    font-size: 1.05rem;
    color: #222;
}

/* CTA Buttons */
.price-box .btn-cta {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.2s;
    background: #e9eef5;
    color: #0b1f33;
}

.price-box .btn-cta:hover {
    background: #d4deec;
}

.price-box .btn-cta.primary {
    background: #005bb4;
    color: #ffffff;
}

.price-box .btn-cta.primary:hover {
    background: #003f7a;
}

/* MOBILE */
@media (max-width: 850px) {
    .pricing-table.enterprise {
        flex-direction: column;
    }
}


/* ================================
   COMPARISON TABLE
================================ */

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.compare-table th {
    background: #005bb4;
    color: #ffffff;
    padding: 0.8rem;
}

.compare-table td {
    background: #ffffff;
    padding: 0.7rem;
    border-bottom: 1px solid #dce3ed;
    text-align: center;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
}

/* ================================
   ONBOARDING STEPS
================================ */

.onboarding-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.step-box {
    flex: 1 1 260px;
    background: #ffffff;
    border: 1px solid #dce3ed;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.2s;
}

.step-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

/* ================================
   PRICE CALCULATOR
================================ */

.price-calculator {
    margin-top: 2rem;
}

.price-calculator select {
    padding: 0.6rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.calc-output p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.calc-output span {
    color: #005bb4;
    font-weight: 700;
}
/* ----------------------------------------------------
   HERO
---------------------------------------------------- */
.soft-hero {
    background: linear-gradient(180deg, #eef4ff, #ffffff);
    text-align: center;
    padding: 4rem 1.5rem;
}
.soft-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1f33;
    margin-bottom: 1rem;
}
.soft-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
    color: #333;
}

/* ----------------------------------------------------
   INTRO
---------------------------------------------------- */
.soft-intro {
    padding: 3rem 1rem;
    text-align: center;
}
.intro-grid {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.intro-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    width: 250px;
    border: 1px solid #dce3ed;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* ----------------------------------------------------
   BIG MODULE
---------------------------------------------------- */
.soft-module-big {
    padding: 3rem 1rem;
    text-align: center;
}
.module-big-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 2rem;
    justify-content: center;
}
.mb-card {
    width: 250px;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #dce3ed;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ----------------------------------------------------
   MODULES
---------------------------------------------------- */
.soft-modules {
    padding: 3rem 1rem;
    text-align: center;
}
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px, 1fr));
    gap: 1.3rem;
    margin-top: 2rem;
}
.mod-card {
    padding: 1.4rem;
    background: #ffffff;
    border: 1px solid #dce3ed;
    border-radius: 12px;
    transition: 0.2s;
}
.mod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ----------------------------------------------------
   FLOW
---------------------------------------------------- */
.digital-flow {
    padding: 3rem 1rem;
    text-align: center;
}
.flow-steps {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.flow-step {
    padding: 0.8rem 1.4rem;
    background: #e6f0ff;
    border-radius: 8px;
    font-weight: 600;
}

/* ----------------------------------------------------
   BENEFITS
---------------------------------------------------- */
.benefits {
    padding: 3rem 1rem;
    text-align: center;
}
.benefit-grid {
    display: grid;
    gap: 1.3rem;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    margin-top: 2rem;
}
.benefit-item {
    padding: 1.2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #dce3ed;
}

/* ----------------------------------------------------
   CTA FINAL
---------------------------------------------------- */
.cta-final {
    padding: 4rem 1rem;
    text-align: center;
    background: linear-gradient(180deg,#0b1f33,#092239);
    color: white;
}
.cta-final h2 { font-size: 2rem; }
/* ----------------------------------------------------
   HERO
---------------------------------------------------- */
.pricing-hero {
    text-align: center;
    padding: 4rem 1rem;
}
.pricing-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0b1f33;
}
.pricing-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
    color: #333;
}

/* ----------------------------------------------------
   PRICING CARDS (ULTRA PREMIUM)
---------------------------------------------------- */
.pricing-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3rem 1rem;
}

.pricing-card {
    width: 310px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid #dce3ed;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    background: linear-gradient(180deg, #e3f1ff, #ffffff);
    border: 2px solid #005bb4;
}

.pc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-tag {
    background: #eef5ff;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pc-tag-popular {
    background: #005bb4;
    color: white;
}

.pc-price {
    padding: 1rem 0;
}

.amount {
    font-size: 2.4rem;
    color: #005bb4;
    font-weight: 800;
}

.per {
    color: #444;
    margin-left: 4px;
}

.onboarding {
    font-size: 0.95rem;
    margin-top: -0.4rem;
    color: #333;
}

.pc-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}
.pc-features li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* BUTTONS */
.pc-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 700;
    background: #e9eef5;
    transition: 0.2s;
    color: #0b1f33;
}

.pc-btn:hover {
    background: #ccd7e8;
}

.pc-btn.primary {
    background: #005bb4;
    color: white;
}
.pc-btn.primary:hover {
    background: #003f7a;
}

/* ----------------------------------------------------
   COMPARISON TABLE
---------------------------------------------------- */
.comparison-section {
    padding: 3rem 1rem;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}
.comparison-table th {
    background: #005bb4;
    color: white;
    padding: 0.8rem;
}
.comparison-table td {
    background: white;
    padding: 0.7rem;
    border-bottom: 1px solid #dce3ed;
    text-align: center;
}

/* ----------------------------------------------------
    BEAUTIFUL TIMELINE
---------------------------------------------------- */
.onboard-section {
    padding: 3rem 1rem;
}
.timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.tl-item {
    flex: 1 1 250px;
    padding: 1.4rem;
    background: #ffffff;
    border: 1px solid #dce3ed;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.2s;
}
.tl-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.10);
}

/* ----------------------------------------------------
    CALCULATOR
---------------------------------------------------- */
.calc-section {
    padding: 3rem 1rem;
    text-align: center;
}
.calc-box {
    max-width: 400px;
    margin: auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #dce3ed;
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}
.calc-results span {
    color: #005bb4;
    font-weight: 700;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1e1e1e;
    color: #fff;
    padding: 18px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner p {
    font-size: 0.95rem;
    margin: 0;
}

.cb-buttons {
    display: flex;
    gap: 10px;
}

.cb-btn {
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    background: #444;
    color: white;
}

.cb-btn.primary {
    background: #0077ff;
}

/* COOKIE SETTINGS PANEL */
.cookie-settings {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 340px;
    background: #fff;
    padding: 20px;
    display: none;
    box-shadow: -2px -2px 12px rgba(0,0,0,0.3);
    z-index: 99999;
    border-radius: 12px 12px 0 0;
}

.cs-box h3 {
    margin-bottom: 10px;
}

.cs-option {
    display: block;
    margin-bottom: 10px;
}

.cs-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.contact-hero {
    text-align: center;
    padding: 60px 20px;
    background: #f4f7fb;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 20px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.success {
    padding: 12px;
    background: #c8f7d4;
    color: #0d6b28;
    margin-bottom: 20px;
    border-radius: 6px;
}

.error {
    padding: 12px;
    background: #ffd4d4;
    color: #8b0000;
    margin-bottom: 20px;
    border-radius: 6px;
}

@media(max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
.success, .error {
    padding: 14px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 600;
    animation: fadeIn 0.4s ease;
}

.success {
    background: #d4f8df;
    color: #0c6c24;
    border: 1px solid #69d18d;
}

.error {
    background: #ffd4d4;
    color: #a30000;
    border: 1px solid #ff6b6b;
}

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

