:root {
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --gold: #c5a47e;
    --gold-light: #e6c89e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #c5a47e;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --gold-shadow: 0 0 20px rgba(197, 164, 126, 0.2);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

/* Header */
header {
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid rgba(197, 164, 126, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    color: var(--gold);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Urgency Banner */
.urgency-banner {
    background: var(--gold);
    color: #000;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.section-title span {
    display: block;
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(197, 164, 126, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Image Showcase */
.image-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

/* Testimonials */
.testimonials {
    background: rgba(197, 164, 126, 0.03);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: rgba(197, 164, 126, 0.2);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Form Section */
.form-section {
    background: url('images/barber.png') center/cover no-repeat fixed;
    position: relative;
    padding: 120px 0;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
}

.form-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: auto;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--gold-shadow);
    border: 1px solid rgba(197, 164, 126, 0.2);
}

input,
select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 164, 126, 0.3);
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
}

::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select option {
    background: #1a1a1a;
    color: #fff;
}

button {
    width: 100%;
    padding: 18px;
    background-color: var(--gold);
    color: #000;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 164, 126, 0.3);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(197, 164, 126, 0.1);
    text-align: center;
}

.footer-content {
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .image-showcase {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

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