* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c89b2c;
    --gold-dark: #a77f1f;
    --gold-light: #e8c85a;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f3efe7;
    color: #1e293b;
    overflow-x: hidden;
    padding-bottom: 75px;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    flex-wrap: wrap;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrap img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h2 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    color: #c89b2c;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 9px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.5px;
}

.desktop-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #222;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--gold);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #f3efe7 100%);
    display: flex;
    align-items: center;
}

.floating-diamond {
    position: absolute;
    color: rgba(200,155,44,0.08);
    animation: floatDiamond 6s ease-in-out infinite;
    pointer-events: none;
}

.diamond-1 { font-size: 80px; top: 100px; left: 3%; }
.diamond-2 { font-size: 50px; top: 250px; right: 5%; animation-delay: 1.5s; }
.diamond-3 { font-size: 100px; bottom: 80px; left: 8%; animation-delay: 0.8s; }

@keyframes floatDiamond {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(8deg); }
}

@keyframes rotate3D {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    50% { transform: rotateY(10deg) rotateX(5deg); }
    100% { transform: rotateY(0deg) rotateX(0deg); }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 0 0 rgba(200,155,44,0.2); }
    70% { box-shadow: 0 0 0 20px rgba(200,155,44,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,155,44,0.2); }
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    min-width: 300px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(200,155,44,0.12);
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #111;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: #111;
    background: transparent;
}

.hero-stats {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 28px;
    color: var(--gold-dark);
    font-weight: 800;
}

.stat p {
    font-size: 12px;
    color: #666;
}

.hero-right {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.hero-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 40px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

.diamond-3d {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate3D 6s ease-in-out infinite;
}

.diamond-3d i {
    font-size: 120px;
    color: var(--gold);
}

.glow-effect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(200,155,44,0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 60px 0;
    background: white;
}

.about-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.about-text p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-size: 14px;
}

.about-highlight {
    flex: 1;
    background: linear-gradient(135deg, #fef9f0, #f3efe7);
    padding: 25px;
    border-radius: 25px;
    border-left: 4px solid var(--gold);
}

.about-highlight h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold-dark);
}

/* ========== SERVICES SECTION ========== */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-sub {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: auto;
    margin-bottom: 40px;
    font-size: 14px;
}

.services {
    padding: 60px 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card i {
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: #666;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* ========== VERIFY SECTION ========== */
.verify-section {
    padding: 60px 0;
}

.verify-wrapper {
    background: linear-gradient(145deg, #fff, #f7f3eb);
    padding: 30px;
    border-radius: 35px;
}

.verify-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


/* ========== ATM SIZE PVC CARD - LARGER & MORE READABLE ========== */
.atm-card {
    width: 520px;
    max-width: 95%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0d5c0;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.atm-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

/* Card Header */
.card-header {
    background: linear-gradient(135deg, #c89b2c 0%, #a77f1f 100%);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 80px;
    height: 80px;
   
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Fix for logo image */
.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon i {
    font-size: 28px;
    color: white;
    display: none; /* Hide default icon when image is used */
}

/* If image exists, show it, else show icon */
.logo-icon.has-image i {
    display: none;
}

.logo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 800;
    color: #fbfbfa;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 12px;
    color: rgb(249 246 246 / 85%);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
}

.chip-area i {
    font-size: 28px;
    color: rgba(255,255,255,0.85);
}

/* Card Body - Two Columns */
.card-body {
    padding: 16px 20px;
    display: flex;
    gap: 20px;
}

/* Left Column - Details */
.details-left {
    flex: 1.6;
}

.cert-title {
    text-align: center;
    margin-bottom: 12px;
}

.cert-title h3 {
    font-size: 13px;
    font-weight: 800;
    color: #1e1e2a;
    letter-spacing: 1.5px;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid #c89b2c;
    display: inline-block;
    padding-bottom: 4px;
}

.date-row {
    text-align: right;
    margin-bottom: 10px;
}

.date-text {
    font-size: 12px;
    color: #064909;
    font-weight: 500;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 0.5px dashed #eee;
}

.detail-label {
    font-size: 10px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 12px;
    font-weight: 700;
    color: #1e1e2a;
    font-family: 'Courier New', monospace;
    text-align: right;
    word-break: break-word;
    max-width: 60%;
}

/* Customer Name - Made Larger */
.detail-row:has(.detail-label:contains("Customer Name")) .detail-value,
.detail-row:first-child .detail-value {
    font-size: 13px;
    font-weight: 800;
    color: #c89b2c;
}

.highlight {
    color: #c89b2c;
}

/* Specific style for Customer Name row */
.customer-name-value {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #c89b2c !important;
}

/* Right Column - Stacked */
.right-stack {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stone-box {
    background: #f8f5ef;
    border: 1px solid #e0d5c0;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.stone-box img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 10px;
}

.stone-label {
    font-size: 8px;
    color: #888;
    margin-top: 5px;
}

.qr-mini-box {
    background: #f8f5ef;
    border: 1px solid #e0d5c0;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.qr-mini-box img {
    width: 85px;
    height: 75px;
}

.qr-label {
    font-size: 8px;
    color: #888;
    margin-top: 5px;
}

.signature-box {
    background: #f8f5ef;
    border: 1px solid #e0d5c0;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.signature-name {
    font-family: 'Brush Script MT', cursive;
    font-size: 14px;
    color: #1e1e2a;
    border-bottom: 1px solid #c89b2c;
    display: inline-block;
    margin-bottom: 3px;
}

.signature-title {
    font-size: 7px;
    color: #888;
    margin-top: 3px;
}

/* Responsive for tablets */
@media (max-width: 600px) {
    .atm-card {
        width: 95%;
        max-width: 95%;
    }
    
    .card-body {
        flex-direction: column;
        gap: 15px;
    }
    
    .right-stack {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .stone-box, .qr-mini-box, .signature-box {
        flex: 1;
        padding: 8px;
    }
    
    .stone-box img {
        width: 65px;
        height: 65px;
    }
    
    .qr-mini-box img {
        width: 69px;
        height: 55px;
    }
    
    .signature-name {
        font-size: 12px;
    }
    
    .detail-label {
        font-size: 9px;
    }
    
    .detail-value {
        font-size: 11px;
    }
}

/* Responsive for small phones */
@media (max-width: 480px) {
    .card-header {
        padding: 10px 15px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h2 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 6px;
    }
    
    .card-body {
        padding: 12px 15px;
    }
    
    .cert-title h3 {
        font-size: 11px;
    }
    
    .detail-label {
        font-size: 8px;
    }
    
    .detail-value {
        font-size: 10px;
    }
    
    .right-stack {
        flex-direction: column;
    }
    
    .stone-box img {
        width: 70px;
        height: 70px;
    }
    
    .qr-mini-box img {
        width: 60px;
        height: 60px;
    }
}
.verify-stamp {
    margin-top: 8px;
    text-align: center;
}

.verify-image {
    width: 50px;
    height: auto;
    display: inline-block;
}

@media (max-width: 600px) {
    .verify-image {
        width: 40px;
    }
}
/* ========== VERIFY FORM ========== */
.verify-form {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 20px;
}

.verify-form h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 40px;
    border: 1px solid #ddd;
    font-size: 13px;
}

.verify-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
}

.message {
    margin-top: 12px;
    text-align: center;
}

/* ========== MAP SECTION ========== */
.map-section {
    padding: 50px 0;
}

.map-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.map-info {
    flex: 1;
}

.map-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.map-info p {
    font-size: 13px;
    margin-bottom: 8px;
    color: #555;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: #1877f2;
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    font-size: 13px;
}

.map-box {
    flex: 1;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 100%;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c89b2c, #e8c85a, #c89b2c);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 24px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c89b2c, #a77f1f);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon i {
    font-size: 28px;
    color: white;
}

.footer-logo-text h3 {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: white;
}

.footer-logo-text p {
    font-size: 10px;
    color: #94a3b8;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c89b2c;
    color: white;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4, .footer-hours h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after, .footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c89b2c;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #c89b2c;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(200,155,44,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 16px;
    color: #c89b2c;
}

.contact-text p {
    color: #94a3b8;
    font-size: 13px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}

.hour-day {
    color: #cbd5e1;
    font-size: 13px;
}

.hour-time {
    color: #94a3b8;
    font-size: 13px;
}

.badge {
    display: inline-block;
    background: rgba(200,155,44,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: #c89b2c;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #64748b;
    font-size: 12px;
}

.copyright a {
    color: #c89b2c;
    text-decoration: none;
}

/* ========== BOTTOM NAVIGATION ========== */
.bottom-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(23, 23, 34, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(200,155,44,0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #aaa;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 40px;
}

.nav-item i {
    font-size: 20px;
}

.nav-item span {
    font-size: 9px;
}

.nav-item:hover, .nav-item.active {
    color: var(--gold);
    background: rgba(200,155,44,0.1);
}

.nav-item.center {
    background: #25D366;
    color: white;
    margin-top: -25px;
    padding: 14px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

.nav-item.center i {
    font-size: 28px;
    margin: 0;
}

.nav-item.center span {
    display: none;
}

.nav-item.center:hover {
    transform: translateY(-3px);
    background: #20b859;
    color: white;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    body {
        padding-bottom: 75px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        flex-direction: column;
    }
    
    .bottom-nav {
        width: 95%;
        padding: 6px 15px;
    }
    
    .nav-item {
        padding: 4px 8px;
    }
    
    .nav-item i {
        font-size: 18px;
    }
    
    .nav-item.center {
        width: 55px;
        height: 55px;
        margin-top: -22px;
    }
    
    .nav-item.center i {
        font-size: 26px;
    }
    
    .atm-card {
        transform: scale(0.95);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .nav-item span {
        font-size: 9px;
    }
    
    .nav-item.center {
        width: 50px;
        height: 50px;
        margin-top: -20px;
    }
    
    .nav-item.center i {
        font-size: 24px;
    }
    
    .atm-card {
        transform: scale(0.9);
    }
}
/* ========== LOADING OVERLAY WITH ANIMATION ========== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.loading-overlay.active {
    display: flex;
}

/* Animated Gemstone Container */
.gemstone-loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gemstone-loader i {
    font-size: 70px;
    color: #c89b2c;
    animation: gemPulse 1.5s ease-in-out infinite, gemRotate 3s linear infinite;
    filter: drop-shadow(0 0 15px rgba(200,155,44,0.5));
}

@keyframes gemPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

@keyframes gemRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sparkles around the gemstone */
.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #c89b2c;
    border-radius: 50%;
    opacity: 0;
    animation: sparkleAnim 1.5s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.sparkle:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.3s; }
.sparkle:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.6s; }
.sparkle:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.9s; }
.sparkle:nth-child(5) { top: 20%; left: 20%; animation-delay: 0.15s; }
.sparkle:nth-child(6) { bottom: 20%; right: 20%; animation-delay: 0.45s; }
.sparkle:nth-child(7) { top: 20%; right: 20%; animation-delay: 0.75s; }
.sparkle:nth-child(8) { bottom: 20%; left: 20%; animation-delay: 1.05s; }

@keyframes sparkleAnim {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); background: #ffd700; }
}

/* Progress Bar */
.progress-container {
    width: 280px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #c89b2c, #e8c85a);
    border-radius: 4px;
    animation: progressFill 3s ease-out forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    20% { width: 15%; }
    40% { width: 35%; }
    60% { width: 60%; }
    80% { width: 85%; }
    100% { width: 100%; }
}

.loading-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.loading-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 5px;
}

/* Floating background particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(200, 155, 44, 0.1);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
    50% { transform: translateY(-50px) translateX(30px); opacity: 0.8; }
}