/* ==========================================================================
   1. GLOBAL STYLES, VARIABLES, & MAIN HEADER
   ========================================================================== */

:root {
    --bg-dark: #0a0a0a;
    --card-dark: #141414;
    --card-hover: #1c1c1c;
    --gold-primary: #D4AF37;
    --gold-hover: #F3E5AB;
    --red-accent: #C62828;
    --red-hover: #B71C1C;
    --text-white: #E0E0E0;
    --text-muted: #A0A0A0;
    --border-color: #262626;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

header {
    background-color: #000000;
    border-bottom: 3px solid var(--gold-primary);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0.8rem;
    gap: 1.5rem; 
}

.logo-area {
    flex: 1; 
    min-width: 0; 
}

header h1 {
    color: var(--gold-primary);
    margin: 0;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem); 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tagline {
    margin: 2px 0 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
/* ==========================================================================
   2. CONTACT STRIP, HEADER LOGO, NAV MENU, & CONTENT SECTIONS
   ========================================================================== */

.quick-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem; 
    flex-wrap: nowrap; 
    white-space: nowrap; 
}

.phone-top {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

/* Round corporate logo container matching original button sizes */
.header-logo-container {
    width: 40px;                
    height: 40px;               
    border-radius: 50%;         
    background-color: #D4AF37;  
    display: inline-flex;       
    align-items: center;        
    justify-content: center;    
    overflow: hidden;           
    border: 2px solid var(--gold-primary);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.header-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;          
    display: block;
}

.lang-switcher-container {
    display: inline-flex;
    align-items: center;
    background-color: #141414;
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    gap: 0.4rem;
    white-space: nowrap;
}

.lang-icon {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 0.2rem;
}

.lang-opt {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-opt:hover, .lang-opt.active {
    color: var(--gold-primary) !important;
}

.lang-divider {
    color: #333;
    font-size: 0.8rem;
    user-select: none;
}

nav {
    display: flex;
    justify-content: center; 
    align-items: center;     
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
    flex-wrap: wrap;         
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-align: center;      
    min-width: fit-content;  
}

nav a:hover {
    color: var(--gold-primary);
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    background-color: var(--card-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

h2 {
    color: var(--gold-primary);
    font-size: 1.7rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.hero-section {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.hero-content {
    flex: 1.2;
}

.price-card {
    flex: 0.8;
    background: #000000;
    border: 2px solid var(--gold-primary);
    border-radius: 6px;
    padding: 1.5rem;
}

.price-card h3 {
    color: var(--gold-primary);
    margin-top: 0;
    text-align: center;
    font-size: 1.4rem;
}

.update-date {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -0.5rem;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
}

.gold-type {
    font-weight: bold;
}

.gold-val {
    color: var(--gold-primary);
    font-weight: bold;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}
/* ==========================================================================
   3. SERVICES MATRIX, SERVICE IMAGES, FOOTERS, & FIXED ACTION BUTTONS
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 0 0; 
    padding: 0;           
    width: 100%;          
}

.service-card {
    background-color: #000000;
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem; 
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: flex-start;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

/* Circular Frame Configuration for Pawn Items Images (Enlarged) */
.card-image-circle {
    width: 140px;                /* Increased from 80px to 140px for higher visibility */
    height: 140px;               /* Increased from 80px to 140px for a balanced circle */
    border-radius: 50%;          
    background-color: #141414;   
    border: 3px solid var(--gold-primary); /* Slightly thickened border to match the larger size */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;            
    margin-bottom: 1.5rem;       
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Enhanced shadow depth for a premium look */
    flex-shrink: 0;
}

/* Image Scaling Stabilizer for Pawn Items */
.pawn-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;           
    display: block;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.service-card p {
    text-align: center;  
    margin: 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    background-color: #000000;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 4px 4px 0;
}

.feature-item strong {
    color: var(--gold-primary);
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--red-accent);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 1.1rem;
}

.whatsapp-btn:hover {
    background-color: var(--red-hover);
}

footer {
    background-color: #000000;
    padding: 3rem 1rem;
    text-align: center;
    border-top: 2px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-nav {
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: var(--gold-primary);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-nav a:hover {
    color: var(--gold-hover);
}

.licenses {
    margin-top: 1rem;
    line-height: 1.8;
}

/* FLOATING SCROLLING BUTTON SHORTCUT */
.whatsapp-float-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulseFloat 2s infinite;
}

.whatsapp-float-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    animation: none;
}

.float-svg {
    width: 32px;
    height: 32px;
}

@keyframes pulseFloat {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* MEDIA BREAKPOINTS AREA */
@media (max-width: 900px) {
    .hero-section, .contact-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .price-card { margin-top: 1rem; }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    .quick-contact {
        justify-content: center;
        width: 100%;
        gap: 1.2rem;  
    }
    header h1 {
        white-space: normal;
        font-size: 1.4rem;
        line-height: 1.2;
    }
    .tagline { font-size: 0.8rem; }
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .float-svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 650px) {
    nav { gap: 1rem; }
    section { padding: 1.5rem; }
}

/* High-Contrast Styling for the Contact Section Hotline Link */
.contact-info p a {
    color: var(--text-white) !important; /* Forces the text to crisp white */
    font-weight: bold !important;        /* Makes the phone number link bold */
    text-decoration: none;               /* Removes any messy underline styling */
    transition: color 0.3s ease;
}

/* Subtly highlights the phone line if hovered on a desktop mouse */
.contact-info p a:hover {
    color: var(--gold-primary) !important; /* Smooth transition to gold on hover */
    text-decoration: underline;
}
