:root {
    --primary-color: #D11F26;
    --dark-color: #222;
    --light-color: #f8f9fa;
    --grey-color: #666;
    --white: #ffffff;
    --container-width: 1140px;
    --transition: all 0.3s ease;
}

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

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

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

/* Header & Nav */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 40px;
}

.logo.secondary {
    filter: grayscale(1);
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1200;
    transition: var(--transition);
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) { top: 0px; }
.mobile-menu-toggle span:nth-child(2) { top: 8px; }
.mobile-menu-toggle span:nth-child(3) { top: 16px; }

.mobile-menu-toggle.active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 500px;
    background: url('images/autokary.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero h1 span {
    display: block;
    font-size: 0.6em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 5px;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-color);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b01b21;
    transform: translateY(-2px);
}

/* About Section */
.section-header h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--grey-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: var(--grey-color);
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
}

.fleet-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.fleet-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fleet-card:hover .fleet-image {
    transform: scale(1.08);
    /* Zoom effect on hover */
}

.fleet-info {
    padding: 25px;
    position: relative;
    background: var(--white);
    z-index: 2;
}

.fleet-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.fleet-info p {
    font-size: 14px;
    color: var(--grey-color);
}

.fleet-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Offer Section */
.offer h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.offer .subtitle {
    margin-bottom: 50px;
    color: var(--grey-color);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    border: 1px solid #eee;
    transition: var(--transition);
}

.offer-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.offer-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.offer-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.offer-card p {
    font-size: 14px;
    color: var(--grey-color);
    margin-bottom: 20px;
}

.offer-card ul {
    font-size: 14px;
    color: var(--dark-color);
}

.offer-card li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.offer-card li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Equipment Section */
.equipment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.eq-item {
    width: 120px;
    text-align: center;
}

.eq-icon {
    width: 100px;
    height: 100px;
    background: #ffebeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 40px;
    transition: var(--transition);
}

.eq-icon:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

.eq-item p {
    font-size: 14px;
    font-weight: 600;
}

/* Clients Section - Logo Carousel */
.logo-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    /* Gradient fade effect on sides */
}

.logo-carousel-container::before,
.logo-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--light-color), transparent);
}

.logo-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--light-color), transparent);
}

.logo-carousel {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
    gap: 80px;
    align-items: center;
}

.logo-item {
    flex-shrink: 0;
}

.logo-item img {
    height: 100px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.logo-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 40px));
        /* Half width minus half gap */
    }
}

/* Pause animation on hover */
.logo-carousel:hover {
    animation-play-state: paused;
}

/* Testimonials */
.italic-subtitle {
    font-style: italic;
    color: var(--grey-color);
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--grey-color);
}

.testimonial-card cite {
    font-weight: 700;
    font-style: normal;
}

/* Footers */
.main-footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo {
    height: 40px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.about-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.links-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-col ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-col ul li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 100px 40px 40px;
        z-index: 1100;
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0), visibility 0.4s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered delay for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-links li a {
        font-size: 20px;
        font-weight: 700;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .logos .logo {
        height: 32px;
    }

    .logos {
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Page Specific */
.contact-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 14px;
    color: var(--dark-color);
    line-height: 1.5;
}

.why-us-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.why-us-box h3 {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--grey-color);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.check-list i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.contact-form-container h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(209, 31, 38, 0.1);
}

.nav-links a.active {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered delay for child elements */
.stagger-container .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-container .reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-container .reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-container .reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-container .reveal:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-container .reveal:nth-child(6) {
    transition-delay: 0.6s;
}

/* Sticky header enhancement on scroll */
header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 10;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f1f1;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 40px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.modal-header h2 {
    font-size: 24px;
    color: var(--dark-color);
}

.equipment-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.equipment-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}

.equipment-details-list li i {
    color: var(--primary-color);
    font-size: 18px;
    width: 25px;
    text-align: center;
}

/* Fleet Card Clickable */
.fleet-card {
    cursor: pointer;
}

.fleet-click-hint {
    margin-top: 15px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.8;
    transition: var(--transition);
}

.fleet-click-hint::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
}

.fleet-card:hover .fleet-click-hint {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .equipment-details-list li {
        font-size: 14px;
    }
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 25px 0;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--grey-color);
    line-height: 1.5;
}

.cookie-content p a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 13px;
    white-space: nowrap;
}

.cookie-settings-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.cookie-settings-trigger.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.cookie-settings-trigger:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Legal Page Styles */
.legal-page .legal-content {
    max-width: 800px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--grey-color);
}

.legal-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style: disc;
    color: var(--grey-color);
}

.legal-content li {
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}


/* Contact Form Status */
.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    display: block;
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.form-status.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

