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

:root {
    --color-bg-dark: #0a0e1a;
    --color-bg-section: #12172a;
    --color-accent: #c9a55a;
    --color-text-primary: #ffffff;
    --color-text-secondary: #b8bcc8;
    --color-border: #1f2937;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 165, 90, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #c9a55a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #c9a55a 0%, #d4b77a 100%);
    color: #0a0e1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 40px rgba(201, 165, 90, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(201, 165, 90, 0.4);
}

/* Section Styling */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

/* What We Offer Section */
.what-we-offer {
    background-color: var(--color-bg-section);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.8;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.offer-description {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Why Us Section */
.why-us {
    background-color: var(--color-bg-dark);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-block {
    margin-bottom: 4rem;
}

.why-block:last-child {
    margin-bottom: 0;
}

.why-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
}

.why-description {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 300;
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 300;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.safety-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.5rem;
    line-height: 1.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #12172a 0%, #1a1f35 100%);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-link {
    font-size: 1.5rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #d4b77a;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.footer p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-title {
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        margin-bottom: 2.5rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-card {
        padding: 2rem;
    }

    .why-block {
        margin-bottom: 3rem;
    }

    .why-title {
        font-size: 1.6rem;
    }

    .why-description,
    .safety-list li {
        font-size: 1rem;
    }

    .contact-info {
        gap: 3rem;
        flex-direction: column;
    }

    .contact-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .offer-number {
        font-size: 2.5rem;
    }

    .offer-title {
        font-size: 1.3rem;
    }

    .safety-list li {
        padding-left: 1.5rem;
    }
}

/* Smooth scroll offset for fixed header (if needed in future) */
html {
    scroll-padding-top: 2rem;
}
