/* Dark Theme & Gold Accent Design for Barbershop */
:root {
    --primary: #d97706; /* Gold/Amber */
    --primary-hover: #b45309;
    --bg-main: #111827; /* Dark */
    --bg-card: #1f2937;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: #374151;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-light);
    background-color: var(--bg-main);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    color: #ffffff;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 36px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(217, 119, 6, 0.3);
    transition: background 0.2s ease, transform 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Hero Section */
header {
    padding: 100px 0 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(circle at center, #1f2937 0%, #111827 100%);
}

.tagline {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
}

h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

h1 span {
    color: var(--primary);
}

header .subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Global */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
}

/* Pain Points */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.pain-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #ef4444;
}

.pain-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Services Section */
.services-bg {
    background-color: #172033;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h1 { font-size: 32px; }
    .service-list { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
}