/* ===== Pharmron — Contact Page Styles ===== */

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --accent-hover: #f3db8a;
    --gold-light: #f3db8a;
    --gold-texture: linear-gradient(135deg, #d4af37, #f3db8a, #b8962a);
    --light-color: #f8f8f8;
    --dark-color: #0d0d0d;
    --text-color: #e6e6e6;
    --text-light: #a3a3a3;
    --card-bg: #0d0d0d;
    --border-color: #333333;
    --footer-bg: #050505;
    --obsidian-950: #050505;
    --obsidian-900: #0d0d0d;
    --obsidian-800: #1a1a1a;
    --obsidian-700: #333333;
    --obsidian-500: #666666;
    --obsidian-400: #808080;
    --obsidian-300: #a3a3a3;
    --obsidian-100: #e6e6e6;
    --gold-500: #d4af37;
    --gold-light: #f3db8a;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--obsidian-950);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background: linear-gradient(135deg, #050505, #0d0d0d);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 2px solid var(--gold-500);
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    background: var(--gold-texture);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    color: var(--gold-light);
}

/* Navigation */
nav {
    background-color: var(--obsidian-900);
    padding: 0.5rem 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--gold-500);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--gold-500);
    text-decoration: none;
}

/* Hero */
.contact-hero {
    text-align: center;
    padding: 3rem 1rem;
    border-bottom: 1px solid var(--gold-500);
    margin-bottom: 2rem;
}

.contact-hero h2 {
    font-size: 2.2rem;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.contact-hero .tagline {
    color: var(--gold-light);
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--gold-500);
}

.contact-info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.contact-info-card h3 {
    color: var(--gold-500);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--gold-500);
}

.contact-method {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-form-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}

.contact-form-section h3 {
    color: var(--gold-500);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem;
    background-color: var(--obsidian-900);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-500);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select option {
    background-color: var(--obsidian-900);
    color: var(--text-color);
}

.submit-button {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--gold-500);
    color: #000000;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
}

.faq-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.faq-section h3 {
    color: var(--gold-500);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--obsidian-900);
}

.faq-question .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--gold-500);
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1rem 1.5rem;
    display: none;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-hero h2 {
        font-size: 1.6rem;
    }
}

.wholesale-notice {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
    border: 1px solid rgba(212,175,55,0.25);
}