:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #1e293b;
    --bg-cream: #f8fafc;
    --bg: #f8fafc;
    --white: #ffffff;
    --text: #334155;
    --gold: #c5a059;
}
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--bg-cream); color: var(--text); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary); }

/* Enhanced Navigation */
nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(37,99,235,0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-links a:not(.track-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-links a:not(.track-btn):hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.track-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
    transition: all 0.3s ease;
}
.track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}
.track-btn::after { display: none !important; }

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(37, 99, 235, 0.6)), url('../homeindex.jpeg?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 80px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, var(--bg-cream), transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 1000px; padding: 0 20px; }
.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: white;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.1;
    text-shadow: 0 10px 40px rgba(0,0,0,0.3);
    font-weight: 800;
}
.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.btn-gold {
    background: var(--gold);
    color: var(--accent);
    padding: 22px 55px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(212,165,116,0.4);
    position: relative;
    overflow: hidden;
}
.btn-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(212,165,116,0.6);
    background: #e0b666;
}
.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-gold:hover::after {
    left: 100%;
}

/* Features Bar */
.features-bar {
    background: var(--white);
    padding: 40px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    z-index: 2;
}
.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.feature-item:hover {
    background: var(--bg-cream);
    transform: translateY(-3px);
}
.feature-item i {
    color: var(--primary);
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

/* About Section */
.about-split {
    padding: 120px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-text p { font-size: 1.05rem; line-height: 1.9; color: #64748b; margin-bottom: 20px; }
.about-img { position: relative; }
.about-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(37,99,235,0.15);
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-img:hover img { transform: scale(1.02); }
.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 30px;
    z-index: -1;
}

/* Products Section */
.products-sec {
    padding: 120px 8%;
    background: var(--white);
    position: relative;
}
.products-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, var(--bg-cream), transparent);
}
.sec-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 1; }
.sec-header h2 { font-size: 2.8rem; margin-top: 15px; }
.sec-header p {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.sec-header p::before, .sec-header p::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}
.card {
    background: var(--white);
    border-radius: 28px;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(37,99,235,0.08);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(37,99,235,0.12);
}
.card-img {
    height: 320px;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border-radius: 22px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.08); }
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--accent);
}
.price-tag {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--bg-cream);
    padding: 8px 20px;
    border-radius: 50px;
}
.buy-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(37,99,235,0.25);
}
.buy-btn:hover {
    box-shadow: 0 10px 30px rgba(37,99,235,0.35);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 120px 8% 40px;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 80px;
}
.footer-col h3 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}
.footer-col h4 {
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
}
.footer-col p { opacity: 0.8; line-height: 1.8; font-size: 1rem; margin-bottom: 25px; color: #cbd5e1; }
.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding-left: 0;
}
.footer-col a:hover { color: var(--gold); padding-left: 8px; transform: translateX(5px); }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}
.social-links a:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-5px) !important;
}

.newsletter-form { position: relative; margin-top: 25px; }
.newsletter-form input {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 20px 25px;
    border-radius: 60px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.newsletter-form input:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}
.newsletter-form button {
    position: absolute;
    right: 8px;
    top: 8px;
    background: var(--gold);
    color: var(--accent);
    border: none;
    padding: 13px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.newsletter-form button:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(37,211,102,0.45);
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-box {
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 50px;
    border-radius: 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalIn 0.4s ease-out;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #cbd5e1;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}
.close-btn:hover {
    color: #ef4444;
    background: #fef2f2;
    transform: rotate(90deg);
}
.form-group { margin-bottom: 25px; }
.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
input, select, textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    box-sizing: border-box;
    color: var(--accent);
}
input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.bank-details-card {
    background: #fffbf0;
    border: 2px dashed #eab308;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    animation: fadeIn 0.5s ease;
}
.bank-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(234, 179, 8, 0.2);
}
.bank-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.bank-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--primary);
    cursor: pointer;
    background: rgba(37,99,235,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
    transition: all 0.2s;
}
.bank-copy-btn:hover { background: rgba(37,99,235,0.2); }
::placeholder { color: #94a3b8; }
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

/* Responsive */
@media (max-width: 992px) {
    .about-split { grid-template-columns: 1fr; text-align: center; gap: 50px; padding: 80px 5%; }
    .about-img { order: -1; }
    .about-img::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 45px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero { padding: 120px 20px 100px; }
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 100px 30px 50px;
        display: flex;
        align-items: flex-start;
        gap: 25px;
        box-shadow: 5px 0 30px rgba(0,0,0,0.1);
        z-index: 1050;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links.active { left: 0; }
    .nav-links a { font-size: 1rem; }
    .track-btn { width: 100%; text-align: center; margin-top: 20px; }
    .mobile-menu-btn { display: block; z-index: 1100; position: relative; font-size: 1.6rem; }
    nav { padding: 15px 5%; height: 65px; }
    .modal-box { padding: 30px 25px; border-radius: 24px; }
    .sec-header h2 { font-size: 2.2rem; }
    .products-sec, .about-split { padding: 80px 5%; }
}

/* Thank You Page Styles - Modern Redesign */
.header-plain {
    background: #ffffff;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}
.ty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.ty-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}
.ty-icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #10b981;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.ty-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}
.ty-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}
.ty-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
}
.ty-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}
.ty-card h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 15px;
}
/* Timeline */
.ty-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
}
.ty-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e5e7eb;
    z-index: 0;
}
.ty-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}
.ty-step-icon {
    width: 45px;
    height: 45px;
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #9ca3af;
    font-size: 1.1rem;
}
.ty-step.active .ty-step-icon {
    border-color: #10b981;
    background: #10b981;
    color: white;
}
.ty-step-text strong {
    display: block;
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.ty-step.active .ty-step-text strong { color: #10b981; }
.ty-step-text span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}
/* Details */
.ty-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #f3f4f6;
}
.ty-detail-row:last-child { border-bottom: none; }
.ty-label { color: #6b7280; font-weight: 500; font-size: 0.95rem; }
.ty-value { color: #111827; font-weight: 600; font-size: 0.95rem; }

/* Summary Card */
.ty-summary-card { background: white; border: 1px solid #e5e7eb; }
.ty-product-row {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}
.ty-prod-img {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}
.ty-prod-info h4 {
    font-size: 0.95rem;
    color: #111827;
    margin: 0 0 5px;
}
.ty-prod-info span { font-size: 0.85rem; color: #6b7280; }
.ty-prod-price { margin-left: auto; font-weight: 700; color: #111827; }

.ty-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 0.95rem;
}
.ty-final-total {
    border-top: 2px solid #f3f4f6;
    padding-top: 15px;
    margin-top: 15px;
    color: #111827;
    font-weight: 800;
    font-size: 1.25rem;
}

/* Social Share */
.ty-social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}
.share-icon:hover { transform: translateY(-3px); }
.share-icon.fb { background: #1877f2; }
.share-icon.wa { background: #25d366; }
.share-icon.tw { background: #1da1f2; }

@media (max-width: 992px) {
    .ty-grid { grid-template-columns: 1fr; }
    .ty-header h1 { font-size: 2rem; }
}
@media (max-width: 992px) {
    .main-container { grid-template-columns: 1fr; }
    .hero-banner { padding: 40px 25px; }
    .hero-banner h1 { font-size: 1.8rem; }
    .details-wrapper { padding: 30px 25px; }
    .info-grid { grid-template-columns: 1fr; gap: 15px; }
}

/* Track Order Page Styles */
.track-page-container {
    max-width: 550px;
    width: 100%;
}
.track-page-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
}
.search-card {
    background: white;
    padding: 50px 45px;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(37,99,235,0.12);
    text-align: center;
    border: 1px solid rgba(37,99,235,0.08);
}
.search-card h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 12px;
}
.search-card .subtitle {
    color: #94a3b8;
    margin-bottom: 35px;
    font-size: 0.95rem;
}
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(37,99,235,0.3);
}
.icon-wrapper i {
    font-size: 2rem;
    color: white;
}
.error-msg {
    background: #fef2f2;
    color: #dc2626;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid #fecaca;
    font-weight: 600;
}
.result-card {
    margin-top: 30px;
    text-align: left;
    background: var(--bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(37,99,235,0.1);
}
.result-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.result-card h3 .status-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}
.result-card p {
    color: #64748b;
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid var(--gold);
}
.result-card p strong {
    color: var(--accent);
}
