/* ===========================
   GOOGLE FONT & ROOT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #ffb703;
    --secondary: #fb8500;
    --dark: #222;
    --light: #ffffff;
    --bg: #fffaf0;
    --gray: #777;
    --shadow: 0 15px 40px rgba(0,0,0,.12);
}

/* Reset & Basic Styles */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: "Poppins", "Noto Sans Myanmar", sans-serif; background: var(--bg); color: var(--dark); overflow-x: hidden; }
img { width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ===========================
   RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-size: 16px;
}

body {
    font-family: "Poppins", "Noto Sans Myanmar", sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font-family: inherit;
}

/* ===========================
   CONTAINER
=========================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===========================
   SECTION TITLE
=========================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 35px;
    margin-top: 10px;
    font-weight: 700;
}

.section-title p {
    color: var(--gray);
    margin-top: 15px;
}

/* ===========================
   HEADER
=========================== */
.header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    background: linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)), url("../images/header-bg.jpg") center/cover no-repeat;

    backdrop-filter: blur(10px);

    z-index: 9999;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

    transition: all .3s ease;

}

.header .container {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Sticky Header */
.header.sticky {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left:-20px;
}

.logo img {
    width: 120px;
    height: 80px;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 22px;
    color: var(--secondary);
}

.logo-text span {
    font-size: 14px;
    color: var(--secondary);
}
/* ဖုန်း Screen (768px ထက်သေးလျှင်) */
@media (max-width: 768px) {

    /* Logo နဲ့ စာသားကို ကပ်ကပ်လေးဖြစ်အောင် လုပ်ခြင်း */
    .header .logo {
        display: flex;
        align-items: center;
        gap: 5px !important;
    }

    /* Menu ခလုတ် (Hamburger menu) ကို သေးအောင်လုပ်ခြင်း */
    .header .menu-btn {
        padding: 5px 8px !important;
        font-size: 10px !important;
        height: auto;
    }
    /* Header အမြင့်ကို လျှော့ချခြင်း */
    .header .container {
        height: 45px !important; /* လိုအပ်သလို 50px သို့မဟုတ် 60px ထားပါ */
    }

    /* Logo ပုံကို ပိုသေးအောင်လုပ်ခြင်း */
    .header .logo img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain;
}

    /* Logo ဘေးက စာသားတွေကို သေးအောင်လုပ်ခြင်း */
    .header .logo-text h2 {
        font-size: 10px !important;
    }
    
    .header .logo-text span {
        font-size: 8px !important;
    }

    /* Navbar စာသားတွေကို ပိုသေးအောင်လုပ်ခြင်း */
    .header .navbar ul li a {
        font-size: 12px !important;
    }

    /* ဖုန်းခေါ်ဆိုမှု ခလုတ်ကို ပိုသေးအောင်လုပ်ခြင်း */
    .header .call-btn {
        font-size: 12px !important;
        padding: 5px 10px !important;
    }
}

/* NAVBAR */
.navbar ul {
    display: flex;
    gap: 35px;
}

.navbar a {
    color: var(--secondary);
    font-weight: 500;
    position: relative;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: .3s;
}

.navbar a:hover::after {
    width: 100%;
}

/* HEADER CALL BUTTON */
.call-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
}

.call-btn i {
    margin-right: 8px;
}

/* MOBILE MENU */
.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
    color: #222;
    position: relative;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 80px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,.2);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 35px;
}

/* BUTTON */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
/* ဖုန်း Screen များအတွက်သာ အကျုံးဝင်စေရန် */
@media (max-width: 768px) {
    .hero {
        /* Screen အမြင့်၏ ၅၀ ရာခိုင်နှုန်းသာ ယူစေခြင်း */
        min-height: 65vh !important; 
        height: 65vh !important;
        
        /* အတွင်းရှိ အကြောင်းအရာများကို အလယ်တည့်တည့် ထားရန် */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
/* ===========================
   TODAY PRICE SECTION
=========================== */

.today-price{
    padding:100px 0;
    background:#f8f9fa;
}

.price-card{
    max-width:900px;
    margin:0 auto;
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top:5px solid var(--primary);
}

.price-date{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#666;
    margin-bottom:30px;
}

.price-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff7e8;
    padding:22px 25px;
    border-radius:18px;
    margin-bottom:18px;
    font-size:24px;
}

.price-item strong{
    color:#ff7a00;
    font-size:32px;
}

.price-item:last-child{
    margin-bottom:0;
}


/* ===========================
   PRODUCT PRICE LIST
=========================== */

.price-list-section{
    margin-top:50px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.price-list-section h3{
    font-size:28px;
    margin-bottom:20px;
    color:#222;
}

.product-price-table{
    width:100%;
    border-collapse:collapse;
}

.product-price-table th{
    text-align:left;
    padding:15px;
    border-bottom:2px solid #ddd;
    font-size:20px;
}

.product-price-table td{
    padding:15px;
    border-bottom:1px solid #eee;
    font-size:18px;
}

.product-price-table td:last-child{
    text-align:right;
    font-weight:700;
    color:#ff7a00;
}


/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .price-card{
        padding:20px;
    }

    .price-date{
        font-size:22px;
    }

    .price-item{
        padding:15px;
        font-size:17px;
    }

    .price-item strong{
        font-size:22px;
    }

    .price-list-section{
        padding:20px;
    }

    .price-list-section h3{
        font-size:22px;
    }

    .product-price-table th,
    .product-price-table td{
        font-size:15px;
        padding:10px;
    }

}
.price-date {
    text-align: center;
    color: var(--gray);
    margin-bottom: 25px;
    font-weight: 500;
}

.price-date i {
    color: var(--secondary);
    margin-right: 8px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: #fff8e8;
    border-radius: 15px;
    transition: .3s;
}

.price-item:hover {
    transform: translateX(10px);
    background: #fff1cc;
}

.price-item div {
    font-weight: 500;
}

.price-item i {
    color: var(--secondary);
    margin-right: 10px;
}

.price-item strong {
    color: var(--secondary);
    font-size: 20px;
}

/* ===========================
   PRODUCTS SECTION
=========================== */

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

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

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

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

.product-info{
    padding:18px;
    text-align:center;
}

.product-info h3{
    font-size:20px;
    margin-bottom:8px;
}

.product-info p{
    font-size:14px;
    margin-bottom:10px;
}

.product-info .price{
    font-size:20px;
    color:#ff7a00;
    font-weight:bold;
    margin-bottom:15px;
}

.product-btn{
    display:block;
    width:100%;
    padding:10px;
    border-radius:30px;
    font-size:15px;
}

/* Mobile */
@media(max-width:768px){

.products-grid{

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.product-card img{

    height:120px;

}

.product-info{

    padding:12px;

}

.product-info h3{

    font-size:16px;

}

.product-info p{

    font-size:12px;

}

.product-info .price{

    font-size:16px;

}

.product-btn{

    font-size:13px;

    padding:8px;

}

}

/* PRODUCT SEARCH */
.search-box {
    max-width: 500px;
    margin: 0 auto 30px; /* margin-bottom တိုးထားပါတယ် */
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: .3s;
}

.search-box input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(251,133,0,.3);
}

.search-result {
    text-align: center;
    margin: 20px 0;
    color: var(--secondary);
    font-weight: 600;
    font-size: 18px;
}

/* ===========================
   FEATURES SECTION
=========================== */
.features {
    padding: 100px 0;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    background: #fffaf0;
    padding: 35px 20px;
    text-align: center;
    border-radius: 25px;
    transition: .3s;
}

.feature-box:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 45px;
    color: var(--secondary);
    margin-bottom: 20px;
}

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

.feature-box p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===========================
   REVIEW SECTION
=========================== */
.reviews {
    padding: 100px 0;
}

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

.review-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.review-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.review-card h3 {
    margin-bottom: 10px;
}

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

.review-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===========================
   GALLERY SECTION
=========================== */

.gallery{
    padding:100px 0;
    background:#fff;
}

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

.gallery-item{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.gallery-item:hover{
    transform:translateY(-5px);
}

.gallery-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}
/* ===========================
   MOBILE GALLERY
=========================== */

@media (max-width: 768px) {
    .gallery-grid {
        /* တစ်တန်းကို ၃ ပုံစီဖြစ်စေရန် */
        grid-template-columns: repeat(3, 1fr); 
        gap: 8px; /* ပုံတွေကြားက gap ကို အနည်းငယ်လျှော့ပေးလိုက်ပါတယ် */
    }

    .gallery-item img {
        /* ပုံအရွယ်အစား ညီညာစေရန် */
        width: 100%;
        height: 100px; /* ပုံအမြင့်ကို လိုအပ်သလို ချိန်ညှိနိုင်ပါတယ် */
        object-fit: cover; /* ပုံပုံစံမပျက်အောင် ဖြတ်ညှိပေးသည် */
        border-radius: 8px;
    }
}
/* ===========================
   CONTACT SECTION
=========================== */
.contact {
    padding: 100px 0;
    background: #fffaf0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.info-box i {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    font-size: 25px;
}

.info-box h3 {
    margin-bottom: 5px;
}

.info-box p {
    color: var(--gray);
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* အကွက်တွေကြားက အကွာအဝေး */
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.contact-form button {
    padding: 12px;
    background-color: #ff9800; /* သင့်ဆိုင်အရောင်နဲ့ လိုက်ဖက်အောင် */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}

/* ===========================
   MAP
=========================== */
.map iframe {
    display: block;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: #222;
    color: white;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-box h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-box p {
    color: #ddd;
    line-height: 1.8;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    color: #ddd;
    transition: .3s;
}

.footer-box ul li a:hover {
    color: var(--primary);
}

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

.social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: #222;
    transition: .3s;
}

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

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.2);
    text-align: center;
    color: #aaa;
}

/* ===========================
   FLOATING BUTTONS
=========================== */
.floating-buttons {
    position: fixed;
    right: 20px;   
    bottom: 30px;   
    display: flex;
    flex-direction: column; 
    gap: 15px;     
    z-index: 99999; 
}



.floating-buttons .floating-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;               /* တခြားခလုတ်တွေရဲ့ Size အတိုင်း (လိုအပ်က 48px သို့ 50px ပြောင်းပါ) */
    height: 45px !important;
    border-radius: 50% !important;        /* လုံးဝအဝိုင်းပုံစံ ဖြစ်စေရန် */
    color: #ffffff !important;            /* Icon ကို အဖြူရောင်ပြောင်းရန် */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important; /* တခြားခလုတ်တွေလို အရိပ်ထည့်ခြင်း */
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.tiktok-btn {
    background-color: #010101 !important; 
}


.tiktok-btn:hover {
    transform: scale(1.1) !important;
    background-color: #fe0979 !important; /* TikTok ပန်းရောင် */
}

.tiktok-btn svg {
    display: block;
    width: 20px !important;
    height: 20px !important;
}

/* ===========================
   FLOATING BUTTONS (ALL ROUND STYLE)
=========================== */
.floating-buttons {
    position: fixed;
    right: 20px;   
    bottom: 30px;   
    display: flex;
    flex-direction: column; 
    gap: 15px;     
    z-index: 99999; 
}

/* ခလုတ်အားလုံး (WhatsApp, Messenger, Phone, TikTok) ကို လုံးဝအဝိုင်းပုံစံ ပြောင်းခြင်း */
.floating-buttons a, 
.floating-buttons .floating-btn,
.floating-tiktok-btn,
.tiktok-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;       /* ခလုတ်အားလုံးကို အရွယ်အစား 48px တူညီအောင် ညှိထားပါတယ် */
    height: 48px !important;
    border-radius: 50% !important; /* လေးထောင့်ကွက်တွေကို လုံးဝအဝိုင်းပုံစံ ဖြစ်စေရန် */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    overflow: hidden !important;   /* ဘေးထောင့်တွေ ထွက်မလာစေရန် */
}

/* TikTok အတွက် သီးသန့် Brand Black အရောင် */
.floating-tiktok-btn, .tiktok-btn {
    background-color: #010101 !important;
    color: #ffffff !important;
}

/* Mouse တင်လိုက်ရင် ကြီးလာမယ့် Hover Effect */
.floating-buttons a:hover {
    transform: scale(1.1) !important;
}

/* Icon / SVG များအားလုံးကို အလယ်ကွက်တိဖြစ်အောင် ထိန်းညှိခြင်း */
.floating-buttons i, 
.floating-buttons svg {
    font-size: 22px !important;
    width: 22px !important;
    height: 22px !important;
    color: #ffffff !important;
}
.floating-viber, 
.floating-messenger, 
.floating-call, 
.back-to-top {
    width: 45px;    /* Slightly smaller for mobile */
    height: 45px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
}

/* Background Colors */
.tiktok-btn {
    background-color: #010101 !important;
    color: #ffffff !important;
}
.floating-call { background: #28a745; }
.floating-messenger { background: #0084ff; }
.floating-viber { background: #7360f2; }
.back-to-top { background: linear-gradient(45deg, #ff8c00, #ff4500); }

/* Ensure icons are centered */
.floating-buttons i {
    margin: 0;
}


/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media(max-width:992px) {
    .navbar {
        display: none;
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background: white;
        z-index: 9999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .navbar.active {
        display: block !important;
    }

    .navbar ul {
        flex-direction: column;
        padding: 30px;
        text-align: center;
        gap: 20px;
    }

    .menu-btn {
        display: block;
        position: relative;
        z-index: 10001;
    }

    .header-btn {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

    .products-grid{
    grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
    grid-template-columns:repeat(3,1fr);
}

.feature-grid,
.review-grid,
.contact-wrapper,
.footer-grid{
    grid-template-columns:1fr;
}

} /* End 992px */

@media(max-width:600px) {
    .section-title h2 {
        font-size: 27px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        justify-content: center;
    }

    .price-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .feature-grid,
.review-grid,
.contact-wrapper,
.footer-grid {
    grid-template-columns: 1fr;
}
       .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* ဒါဆို ၃ ပုံဖြစ်သွားပါပြီ */
        gap: 5px; /* ပုံတွေကြားက အကွာအဝေးကို နည်းနည်းလျှော့လိုက်ပါ */
    }

    .floating-call,
    .floating-messenger,
    .floating-viber {
        width: 50px;
        height: 50px;
        font-size: 20px;
        right: 15px;
    }
}

/* =====================================================
   SCROLL ANIMATION
===================================================== */

.product-card,
.feature-box,
.review-card,
.price-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card.show,
.feature-box.show,
.review-card.show,
.price-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   IMAGE LOADING & PRELOADER
===================================================== */
img.loaded {
    opacity: 1;
}

#preloader {
    transition: opacity .3s ease;
}  

/* =====================================================
   CONTACT FORM STATUS MESSAGE
===================================================== */

.form-status {
    display: none;
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background: #e8f7ee;
    border: 1px solid #28a745;
    color: #176b2c;
}

.form-status.error {
    background: #fff3f3;
    border: 1px solid #dc3545;
    color: #a71d2a;
}