/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: #FFFFFF;
    --color-gold: #A0834E;
    --color-black: #1A1A1A;
    --color-dark-bg: #242424;
    --color-dark-card: #2D2D2D;
    --color-dark-border: #404040;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #AAAAAA;
    --color-gray-dark: #E0E0E0;
    --color-gold-light: #B89968;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background-color: var(--color-black);
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(160, 131, 78, 0.1);
    z-index: 1000;
    border-bottom: 1px solid var(--color-dark-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-gray-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.cta-button {
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 8rem 0 6rem;
    background-color: var(--color-black);
    background-image:
        radial-gradient(ellipse at 15% 30%, rgba(160, 131, 78, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 70%, rgba(245, 245, 220, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(160, 131, 78, 0.12) 0%, transparent 40%),
        linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(36, 36, 36, 0.5) 100%);
    text-align: center;
    border-bottom: 1px solid var(--color-dark-border);
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-gray-dark);
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(160, 131, 78, 0.3);
}

/* Value Proposition Section */
.value-prop {
    padding: 4rem 0;
    background-color: var(--color-dark-bg);
    border-bottom: 1px solid var(--color-dark-border);
}

.value-statement {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Personal Bio Section */
.personal-bio {
    padding: 6rem 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-dark-border);
}

.bio-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bio-image {
    flex: 0 0 auto;
    width: 300px;
}

.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(160, 131, 78, 0.2);
    border: 2px solid var(--color-dark-border);
}

.bio-text {
    flex: 1;
}

.bio-text h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.bio-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

/* Offerings Section */
.offerings {
    padding: 6rem 0;
    background-color: var(--color-black);
}

.offerings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--color-white);
}

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

.offering-card {
    background-color: var(--color-dark-card);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--color-dark-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offering-card.featured {
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 20px rgba(160, 131, 78, 0.2);
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(160, 131, 78, 0.2);
    border-color: var(--color-gold);
}

.offering-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.offering-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.offering-subtitle {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.offering-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

/* Problems Solved Section */
.problems-solved {
    padding: 6rem 0;
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-dark-border);
}

.problems-solved h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--color-white);
}

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

.problem-card {
    background-color: var(--color-dark-card);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--color-dark-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
    border-left: 4px solid var(--color-gold);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(160, 131, 78, 0.2);
    border-left-color: var(--color-gold-light);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.problem-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--color-black);
    background-image:
        radial-gradient(ellipse at 25% 40%, rgba(245, 245, 220, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(160, 131, 78, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 50% 10%, rgba(160, 131, 78, 0.08) 0%, transparent 35%),
        linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(36, 36, 36, 0.4) 100%);
    border-top: 1px solid var(--color-dark-border);
    position: relative;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-white);
}

.about-content-with-image {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text-column {
    flex: 1;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
}

.about-image-column {
    flex: 0 0 auto;
    width: 450px;
}

.about-image-column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(160, 131, 78, 0.2);
    border: 2px solid var(--color-dark-border);
}

/* Results Section */
.results {
    padding: 6rem 0;
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-dark-border);
}

.results h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--color-white);
}

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

.stat-card {
    background-color: var(--color-dark-card);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--color-dark-border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(160, 131, 78, 0.2);
    border-color: var(--color-gold);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.stat-card p:first-of-type {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.stat-detail {
    font-size: 1rem;
    color: var(--color-gray-medium);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--color-black);
    border-top: 1px solid var(--color-dark-border);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--color-white);
}

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

.testimonial-card {
    background-color: var(--color-dark-card);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--color-dark-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(160, 131, 78, 0.2);
    border-color: var(--color-gold);
}

.testimonial-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--color-dark-bg);
    text-align: center;
    border-top: 1px solid var(--color-dark-border);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray-dark);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--color-dark-card);
    padding: 2.5rem 3rem;
    border-radius: 10px;
    border: 1px solid var(--color-dark-border);
    text-decoration: none;
    color: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(160, 131, 78, 0.2);
    border-color: var(--color-gold);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.contact-card p {
    color: var(--color-gold);
    font-weight: 500;
}

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

footer p {
    color: var(--color-gray-medium);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .value-statement {
        font-size: 1.1rem;
    }

    .offerings h2,
    .problems-solved h2,
    .about h2,
    .results h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }

    .offerings-grid,
    .problems-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .bio-content {
        flex-direction: column;
        gap: 2rem;
    }

    .bio-image {
        width: 250px;
    }

    .bio-text h2 {
        font-size: 2rem;
    }

    .about-content-with-image {
        flex-direction: column;
        gap: 3rem;
    }

    .about-image-column {
        width: 100%;
        order: -1;
    }

    .about-text-column {
        width: 100%;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .logo-img {
        height: 40px;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .value-prop,
    .offerings,
    .problems-solved,
    .about,
    .results,
    .testimonials,
    .contact {
        padding: 4rem 0;
    }
}
