/* Premium Gold Buyer Design */

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

:root {
    --gold: #BD924A;
    --gold-light: #D4A85A;
    --gold-dark: #9A7639;
    --black: #0a0a0a;
    --black-light: #141414;
    --black-card: #1a1a1a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 100%);
    color: var(--gold);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* Container */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin-bottom: 40px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
#navigation {
    position: static;
    float: none;
}

#navigation ul {
    display: flex;
    gap: 6px;
    list-style: none;
}

#navigation a {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 100px;
    background: transparent;
    border: 1px solid rgba(189, 146, 74, 0.2);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#navigation a:hover {
    background: rgba(189, 146, 74, 0.1);
    border-color: rgba(189, 146, 74, 0.4);
    color: var(--gold);
}

#navigation a.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Hero Banner */
#banner {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

#banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 40px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(189, 146, 74, 0.15) 0%, rgba(189, 146, 74, 0.05) 100%);
    border-radius: 32px;
    border: 1px solid rgba(189, 146, 74, 0.2);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .tagline {
    font-size: 20px;
    color: rgba(189, 146, 74, 0.7);
    margin-bottom: 32px;
}

.hero p {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 24px;
    color: rgba(189, 146, 74, 0.8);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.badge-label {
    font-size: 13px;
    color: rgba(189, 146, 74, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

/* Cards */
.card {
    background: linear-gradient(145deg, var(--black-card) 0%, var(--black-light) 100%);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 28px;
    border: 1px solid rgba(189, 146, 74, 0.12);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(189, 146, 74, 0.25);
    transform: translateY(-2px);
}

.card-highlight {
    background: linear-gradient(145deg, rgba(189, 146, 74, 0.12) 0%, rgba(189, 146, 74, 0.05) 100%);
    border-color: rgba(189, 146, 74, 0.25);
}

/* Main Content */
#maincontent {
    float: none;
    width: 100%;
    min-height: auto;
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 16px;
}

#maincontent h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--gold);
    text-align: left;
    font-style: normal;
}

#maincontent h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: left;
    color: var(--gold-light);
}

#maincontent h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 24px 0 16px 0;
    color: var(--gold);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

#maincontent h3::before {
    content: "";
    width: 4px;
    height: 20px;
    background: var(--gold);
    border-radius: 2px;
}

#maincontent p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(189, 146, 74, 0.8);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

#left, #right {
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
}

/* Opening Hours Table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(189, 146, 74, 0.1);
    font-size: 15px;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:first-child {
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    color: rgba(189, 146, 74, 0.6);
}

/* Section Titles */
.section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: rgba(189, 146, 74, 0.5);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 28px;
    border-radius: 20px;
    text-align: center;
}

.contact-card .section-title {
    color: rgba(0, 0, 0, 0.5);
}

.contact-card a {
    color: var(--black);
    font-weight: 600;
}

.contact-card .phone {
    font-size: 24px;
    font-weight: 700;
    margin: 12px 0;
}

/* Footer */
#mainbottom {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(189, 146, 74, 0.15);
    text-align: center;
    clear: both;
    width: 100%;
    display: block;
}

#mainbottom p {
    margin: 6px 0;
    font-size: 14px;
    color: rgba(189, 146, 74, 0.4);
}

#mainbottom p:first-child {
    color: rgba(189, 146, 74, 0.6);
}

/* Contact Page */
.contact-info {
    text-align: center;
}

.contact-info p {
    margin-bottom: 12px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    margin: 28px 0;
    border: 1px solid rgba(189, 146, 74, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 320px;
    border: none;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--black);
    font-weight: 700;
    font-size: 15px;
    border-radius: 100px;
    margin-top: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(189, 146, 74, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(189, 146, 74, 0.4);
    color: var(--black);
}

.cta-button-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}

.cta-button-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* Lists */
.item-list {
    list-style: none;
    padding: 0;
}

.item-list li {
    padding: 14px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid rgba(189, 146, 74, 0.08);
    color: rgba(189, 146, 74, 0.85);
}

.item-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
}

.item-list li:last-child {
    border-bottom: none;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.feature {
    background: rgba(189, 146, 74, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(189, 146, 74, 0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature p {
    font-size: 13px;
    color: rgba(189, 146, 74, 0.6);
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    #navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .trust-badges {
        gap: 24px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .wrapper {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 24px;
    }

    .hero h1 {
        font-size: 28px;
    }

    #maincontent h1 {
        font-size: 26px;
    }

    .card {
        padding: 24px;
        border-radius: 16px;
    }

    #navigation a {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Legacy support - hide old elements */
.header > p {
    display: none;
}

table[width="580"] {
    display: none;
}
