/* Extra luxury touches */
body { font-family: 'Inter', system-ui, sans-serif; }
h1, h2 { font-family: 'Playfair Display', serif; }
.card-hover:hover { transform: translateY(-10px); }
/* ====================== GLOBAL STYLING & SPACING FIX ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
}

/* Section Spacing - Kam kiya gaya hai */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Mobile pe spacing aur kam */
@media (max-width: 768px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Specific Sections ke liye tight spacing */
#about, #categories, #services, #gallery, #rates, #reviews, #faq {
    padding-top: 70px;
    padding-bottom: 70px;
}

@media (max-width: 768px) {
    #about, #categories, #services, #gallery, #rates, #reviews, #faq {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* Hero ke baad wale section ka top margin kam */
#about {
    padding-top: 60px;
}

/* Cards & Containers */
.max-w-7xl {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Gap between elements */
.gap-6, .gap-8, .gap-10 {
    gap: 1.5rem !important;
}

@media (max-width: 768px) {
    .gap-6, .gap-8, .gap-10 {
        gap: 1rem !important;
    }
}

/* Rate Table Mobile Fix */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 14px 10px;
    text-align: center;
}

@media (max-width: 640px) {
    th, td {
        padding: 12px 8px;
        font-size: 15px;
    }
}

/* Footer Tight Spacing */
footer {
    padding-top: 60px;
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    footer {
        padding-top: 50px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Extra Luxury Touch */
h2 {
    font-size: 2.75rem;
    line-height: 1.1;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.25rem;
    }
}
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    section {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}
/* ====================== RATE TABLE - FULLY MOBILE RESPONSIVE ====================== */

.diamond-price-container {
    background: linear-gradient(145deg, #1a1a1a, #111111);
}

.neon-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.neon-price-table th {
    background: #1f1f1f;
    color: #d4af77;
    padding: 18px 12px;
    text-align: center;
    font-weight: 600;
    border-bottom: 3px solid #d4af77;
}

.neon-price-table td {
    padding: 16px 12px;
    text-align: center;
    color: #e0e0e0;
    border-bottom: 1px solid #333333;
}

.neon-price-table tr:hover {
    background-color: rgba(255, 51, 102, 0.08);
}

.price-val {
    color: #ff3366;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Mobile Friendly - No Horizontal Scroll */
@media (max-width: 768px) {
    .neon-price-table {
        font-size: 15px;
    }
    
    .neon-price-table th,
    .neon-price-table td {
        padding: 14px 10px;
    }

    .neon-price-table th {
        font-size: 15px;
        padding: 16px 8px;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .neon-price-table th,
    .neon-price-table td {
        padding: 12px 6px;
        font-size: 14px;
    }
}