/* --- CSS Variables & Global Styles --- */
:root {
    --primary-color: #b99c7c;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --container-width: 1200px;
    --transition-speed: 0.4s;
}

/* Light Theme (Default) */
html[data-theme='light'] {
    --background-color: #ffffff;
    --secondary-background: #f9f9f9;
    --text-color: #333333;
    --heading-color: #1a1a1a;
    --border-color: #eeeeee;
    --card-shadow: 0 10px 25px rgba(0,0,0,0.07);
    --logo-filter: none; /* No filter for logo in light mode */
}

/* Dark Theme */
html[data-theme='dark'] {
    --background-color: #1a1d24;
    --secondary-background: #242831;
    --text-color: #c2c2c2;
    --heading-color: #ffffff;
    --border-color: #333842;
    --card-shadow: 0 10px 25px rgba(0,0,0,0.2);
    --logo-filter: invert(1) brightness(1.5); /* Inverts logo for dark mode */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    transition: background-color var(--transition-speed) ease;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color var(--transition-speed) ease;
}

h1 { font-size: 3.8rem; }
h2 { font-size: 2.8rem; text-align: center; }
h3 { font-size: 1.6rem; }
p { max-width: 65ch; }
a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease, opacity 0.3s ease; }
a:hover { opacity: 0.8; }

/* --- Body & Preloader --- */
body.no-scroll {
    overflow: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--background-color);
    display: grid;
    place-items: center;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo img {
    width: 200px;
    height: 200px;
    filter: var(--logo-filter);
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Header & Navigation --- */
.main-header {
    background-color: transparent;
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.main-header.scrolled {
    background-color: var(--background-color);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--border-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 45px;
    width: auto;
    filter: var(--logo-filter);
    transition: filter var(--transition-speed) ease;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav ul li { margin-left: 2.5rem; }

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
    font-size: 1rem;
}

.main-header:not(.scrolled) .main-nav ul li a {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.main-header.scrolled .main-nav ul li a {
    color: var(--text-color);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after { width: 100%; }

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--heading-color);
}

.main-header:not(.scrolled) .hamburger {
    color: #fff;
}

/* --- Theme Toggle --- */
.theme-toggle {
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    width: 50px;
    height: 26px;
    border-radius: 25px;
    padding: 0;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
    transition: background-color var(--transition-speed) ease;
}

html[data-theme='light'] .theme-toggle { background-color: #87CEEB; }
html[data-theme='dark'] .theme-toggle { background-color: #484848; }

.theme-toggle .sun, .theme-toggle .moon {
    position: absolute;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease;
}

.sun {
    left: 4px;
    background-color: #FFD700;
    box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;
}
html[data-theme='dark'] .sun { transform: translateX(24px) rotate(180deg); opacity: 0; }
html[data-theme='light'] .sun { transform: translateX(0) rotate(0); opacity: 1; }

.moon {
    left: 4px;
    background-color: #f4f4f4;
    box-shadow:
        inset -3px -2px 0 0px #c9c9c9,
        inset -8px -6px 0 -2px #e0e0e0,
        inset 5px -2px 0 -1px #e0e0e0;
}
html[data-theme='light'] .moon { transform: translateX(-24px) rotate(-180deg); opacity: 0; }
html[data-theme='dark'] .moon { transform: translateX(24px) rotate(0); opacity: 1; }

/* --- Hero Section - Carousel --- */
#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

.slide {
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 40px;
}

#hero h1 {
    color: #fff;
    font-size: 4rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

#hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

#prev-slide { left: 30px; }
#next-slide { right: 30px; }

.founder-credit {
    position: absolute;
    bottom: 0;
    right: 20px;
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    font-style: italic;
}

/* --- Our Philosophy Section --- */
.philosophy-section {
    background-color: var(--secondary-background);
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    object-fit: cover;
}

.philosophy-content .section-tagline {
    display: block;
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-content h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* --- Core Services Section --- */
.services-section {
    background-color: var(--background-color);
}

.section-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-intro .section-tagline {
    display: block;
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--secondary-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    flex-grow: 1;
    color: var(--text-color);
    opacity: 0.9;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--heading-font);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.learn-more .fas {
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more .fas {
    transform: translateX(5px);
}

/* --- Utility Classes & Buttons --- */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-family: var(--heading-font);
    transition: background-color 0.3s, transform 0.3s, color 0.3s, border-color 0.3s;
    border: 2px solid var(--primary-color);
}

#hero .btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.btn-secondary {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--heading-font);
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-color);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    color: var(--heading-color);
    border-color: var(--heading-color);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--secondary-background);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    max-height: 35px;
    filter: var(--logo-filter);
    transition: filter var(--transition-speed) ease;
}

.footer-socials a {
    color: var(--text-color);
    margin-left: 1.5rem;
    font-size: 1.2rem;
}

.footer-socials a:hover { color: var(--primary-color); }

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .philosophy-container {
        gap: 2rem;
    }
    .philosophy-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #hero h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    section { padding: 80px 0; }

    .main-header .container {
        padding: 0 15px;
    }

    .main-nav { display: none; }
    .hamburger { display: block; }

    .main-nav.active {
        display: flex; flex-direction: column;
        width: 100%;
        background: var(--background-color);
        position: absolute; top: 100%; left: 0;
        text-align: center;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-color) !important;
        text-shadow: none !important;
    }

    .main-nav ul li:last-child a { border-bottom: none; }
    
    .hero-content {
        padding-bottom: 0;
    }
    
    .founder-credit {
        position: static;
        margin-top: 2rem;
        text-align: center;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
    }
    .philosophy-content h2 {
        text-align: center;
    }
    .philosophy-content {
        text-align: center;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-socials a {
        margin: 0 0.75rem;
    }
}






.projects-section {
    background-color: var(--secondary-background);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 2rem;
}

.project-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    height: 400px; /* Set a fixed height for consistency */
}

.project-image {
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-image img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end; /* Align content to the bottom */
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    color: #fff;
    margin-bottom: 0.25rem;
}

.project-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}


/* ============================
   Responsive Adjustments for Projects
============================ */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    .project-card {
        height: 350px;
    }
}

/* ============================
   Our Process Section
============================ */
.process-section {
    background-color: var(--background-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: process-counter; /* Initialize the counter */
    margin-top: 4rem;
}

.process-step {
    background-color: var(--secondary-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.process-step::before {
    counter-increment: process-counter; /* Increment the counter */
    content: "0" counter(process-counter); /* Display the counter */
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 4.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--heading-color);
    opacity: 0.05;
    z-index: 1;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.process-step h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.process-step p {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

/* ============================
   Responsive Adjustments for Process
============================ */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Stats Section (Redesigned)
============================ */
.stats-section {
    background-color: var(--secondary-background);
    padding: 80px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-content h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-content p {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* ============================
   Responsive Adjustments for Stats
============================ */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    /* Remove vertical lines on mobile */
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-item h3 {
        font-size: 3rem;
    }
}





/* ============================
   Generic Page Header
============================ */
.page-header {
    background-color: var(--secondary-background);
    text-align: center;
    padding: 80px 0;
    margin-top: 80px; /* Offset for fixed header */
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
    opacity: 0.8;
}

/* ============================
   Story Section
============================ */
.story-section {
    background-color: var(--background-color);
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 4rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.story-content .section-tagline {
    display: block;
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* ============================
   Team Section
============================ */
.team-section {
    background-color: var(--secondary-background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 280px;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--text-color);
    opacity: 0.7;
}

/* ============================
   Responsive Adjustments for About Page
============================ */
@media (max-width: 992px) {
    .story-container {
        grid-template-columns: 1fr; /* Stack on tablets */
    }

    .story-image {
        order: 2; /* Move image below text on tablet */
    }

    .story-content h2, .story-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* --- Active Navigation Link --- */
.main-nav ul li a.active,
.main-nav ul li a.active:hover {
    color: var(--primary-color);
}

.main-nav ul li a.active::after {
    width: 100%;
}

/* On dark background (hero section), the active link should also be distinct */
.main-header:not(.scrolled) .main-nav ul li a.active {
    color: #fff; /* Keep it white but the underline will show */
}


/* --- Contact Form Styles --- */
.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--heading-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background-color: var(--secondary-background);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(185, 156, 124, 0.2); /* Using primary color with alpha */
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

/* --- General Button Hover Effect --- */
.btn:hover {
    background-color: #a88d6b; /* A slightly darker shade of var(--primary-color) */
    border-color: #a88d6b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* This keeps the special hover effect for the hero button */
#hero .btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
    transform: translateY(0); /* Reset transform for this specific button */
    box-shadow: none; /* Reset box-shadow for this specific button */
}


/* --- Project Filter Styles --- */
.project-filter {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--heading-font);
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--secondary-background);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}


/* --- Form Status Message Styles --- */
.form-status {
    margin-top: 1.5rem;
    padding: 12px 15px;
    border-radius: 5px;
    text-align: center;
    display: none; /* Hidden by default */
}

.form-status.success {
    background-color: rgba(39, 174, 96, 0.1);
    border: 1px solid #27ae60;
    color: #27ae60;
}

.form-status.error {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}