
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: white;
    min-height: 100vh;
    padding: 5px;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffd700;
    text-align: center;
    padding: 12px 10px 10px;
}

.brand-name {
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 3px;
    color: #ffd700;
    margin-bottom: 2px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.tagline {
    font-size: 0.85em;
    color: #ccc;
    margin-bottom: 8px;
}

.phone-header {
    font-size: 1.1em;
    color: #ffd700;
    font-weight: bold;
    margin-top: 5px;
    letter-spacing: 1px;
}

.phone-header a {
    color: #ffd700;
    text-decoration: none;
}

.phone-header a:hover {
    text-decoration: underline;
}

main {
    padding: 10px;
}

.hero-section {
    text-align: center;
    margin-bottom: 15px;
}

.slogan {
    display: inline-block;
    background: #1a1a1a;
    color: #ffd700;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 10px;
    border: 2px solid #ffd700;
}

.hero-section h2 {
    text-align: center;
    color: #d4af37;
    margin-bottom: 8px;
    font-size: 1.8em;
}

.gold-types {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.gold-item {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    padding: 10px 5px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    color: #1a1a1a;
    font-size: 0.85em;
}

.highlight-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid #ffd700;
}

.badge {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 4px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.85em;
    margin-bottom: 8px;
}

.highlight-text {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 3px;
}

.highlight-text-hindi {
    color: #ccc;
    font-size: 0.95em;
}

.cash-section {
    background: linear-gradient(135deg, #ffd700 0%, #f0c040 100%);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
}

.cash-section h3 {
    color: #1a1a1a;
    font-size: 1em;
    margin-bottom: 3px;
}

.cash-section p {
    color: #333;
    font-size: 0.9em;
}

.benefits {
    margin-bottom: 10px;
}

.benefits h3 {
    color: #d4af37;
    margin-bottom: 8px;
    text-align: center;
    font-size: 1.1em;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    padding: 3px 0;
    font-size: 0.85em;
    color: #333;
    line-height: 1.3;
}

.contact-section {
    text-align: center;
}

.contact-section h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.call-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: #1a1a1a;
    text-decoration: none;
    text-align: center;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.whatsapp-btn, .visit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.visit-btn {
    background: #1a1a1a;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.visit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.location {
    margin-top: 15px;
    padding: 15px;
    background: #f8f5e6;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.location h4 {
    color: #d4af37;
    margin-bottom: 10px;
}

.location p {
    margin: 5px 0;
    color: #333;
    font-size: 0.95em;
}

.map-container {
    margin-top: 10px;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffd700;
    text-align: center;
    padding: 12px;
    font-size: 0.85em;
}

.footer-sub {
    color: #999;
    font-size: 0.8em;
    margin-top: 3px;
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }
    
    .container {
        max-width: 100%;
        border-radius: 0;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    .gold-types {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }
}
