/* Premium 2026 Design */
:root {
    --primary-dark: #111111;
    --primary-light: #ffffff;
    --accent: #D4AF37; /* Premium Gold */
    --accent-hover: #AA8B2C;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--primary-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; }
.logo span { color: var(--accent); }
.desktop-menu a {
    margin: 0 15px; text-decoration: none; color: var(--text-main);
    font-weight: 600; transition: color 0.3s;
}
.desktop-menu a:hover { color: var(--accent); }
.contact-info { display: flex; align-items: center; gap: 20px; }
.phone-link { font-weight: 800; text-decoration: none; color: var(--text-main); }

/* Buttons */
button { cursor: pointer; border: none; font-family: inherit; }
.btn-accent {
    background: var(--accent); color: white;
    padding: 15px 30px; border-radius: 4px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
    transition: all 0.3s; box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline {
    background: transparent; border: 2px solid var(--accent); color: var(--accent);
    padding: 10px 20px; border-radius: 4px; font-weight: 600; transition: all 0.3s;
}
.btn-outline:hover { background: var(--accent); color: white; }
.w-full { width: 100%; }
.btn-large { font-size: 1.2rem; padding: 20px 40px; }

/* Hero */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(17,17,17,0.5), rgba(17,17,17,0.8)), url('/static/img/hero-bg.jpg') center/cover;
    display: flex; align-items: center; padding-top: 80px; color: white;
}
.hero-content { max-width: 800px; }
.premium-heading { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 40px; }

/* Forms */
.lead-form-box {
    background: white; padding: 40px; border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); color: var(--text-main);
    max-width: 600px;
}
.lead-form-box h3 { font-size: 1.8rem; margin-bottom: 10px; }
.lead-form-box p { color: var(--text-muted); margin-bottom: 20px; }
.inline-form { display: flex; gap: 15px; flex-wrap: wrap; }
.inline-form input {
    flex: 1; padding: 15px; border: 1px solid #ddd;
    border-radius: 4px; font-size: 1rem;
    min-width: 150px;
}
.inline-form input:focus { outline: none; border-color: var(--accent); }

/* Sections */
.section { padding: 100px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--primary-dark); color: white; }
.section-title { font-size: 3rem; margin-bottom: 15px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.bg-dark .section-subtitle { color: #aaaaaa; }

/* Pains Grid */
.pains-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pain-card {
    background: white; padding: 30px; border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-top: 4px solid var(--accent); transition: transform 0.3s;
}
.pain-card:hover { transform: translateY(-10px); }
.pain-icon { font-size: 3rem; margin-bottom: 20px; color: var(--accent); }
.pain-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.pain-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 15px; }
.solution-text { font-size: 0.95rem; font-weight: 500; background: var(--bg-light); padding: 15px; border-radius: 4px; }

/* CTA Banner */
.cta-banner {
    background: var(--primary-dark); color: white;
    padding: 50px; border-radius: 8px; text-align: center;
}
.cta-banner h3 { font-size: 2rem; margin-bottom: 10px; }
.cta-banner p { opacity: 0.8; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.4s; color: white; padding: 20px; text-align: center;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.btn-outline-white { background: transparent; border: 2px solid white; color: white; padding: 10px 20px; transition: 0.3s; }
.btn-outline-white:hover { background: white; color: var(--primary-dark); }

/* Footer */
.footer { background: var(--primary-dark); color: white; padding: 60px 0; }
.footer-content { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-col { flex: 1; min-width: 300px; }
.footer-col h3 { margin-bottom: 20px; color: var(--accent); }
.social-links { display: flex; gap: 15px; }
.social-links a { color: white; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; border-radius: 4px; transition: 0.3s; }
.social-links a:hover { background: var(--accent); border-color: var(--accent); }

/* Modal */
.modal {
    margin: auto; padding: 0; border: none; border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); width: 100%; max-width: 400px;
}
.modal::backdrop { background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); }
.modal-content { padding: 40px; position: relative; }
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; background: none; border: none; color: var(--text-muted); }
.form-group { margin-bottom: 20px; }
.form-group input { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; }
.form-group input:focus { border-color: var(--accent); outline: none; }

/* Utils */
.success-message { background: #E6FFFA; color: #2C7A7B; padding: 15px; border-radius: 4px; border: 1px solid #81E6D9; font-weight: 600; }

@media (max-width: 768px) {
    .premium-heading { font-size: 2.5rem; }
    .desktop-menu { display: none; }
    .hero-section { padding-top: 100px; }
}
