/* Global Styles */
:root {
    --primary-color: #37d43a; /* Luxury yellow */
    --primary-dark: #B8860B;
    --primary-light: #F5DEB3;
    --secondary-color: #1A1A1A;
    --text-color: #333;
    --light-color: #f8f8f8;
    --dark-color: #111;
    --border-color: #e0e0e0;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: var(--dark-color);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--light-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--light-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('img/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 0;
    padding-top: 0;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    z-index: -1;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    padding: 30px;
    text-align: center;
    background-color: white;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.feature:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature h3 {
    font-size: 1.5rem;
}

/* Target Audience */
.audience-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.profile {
    text-align: center;
    padding: 20px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.profile:hover {
    transform: translateY(-5px);
}

.profile img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    position: relative;
    padding: 30px;
    background-color: white;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-color);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('https://images.unsplash.com/photo-1539794830467-1f1755804d13?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=80') no-repeat center center/cover;
    color: var(--light-color);
}

.testimonials h2 {
    color: var(--light-color);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    display: none;
}

.testimonial p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial:first-child {
    display: block;
}

.client h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Pricing */
.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    box-shadow: var(--shadow);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px);
}

.plan h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.plan ul {
    margin-bottom: 30px;
    text-align: left;
}

.plan ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.plan ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

.plan.featured {
    transform: scale(1.05);
    z-index: 1;
    border: 2px solid var(--primary-color);
}

.plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Case Studies */
.cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.case {
    display: flex;
    background-color: white;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.case img {
    width: 40%;
    object-fit: cover;
}

.case-content {
    padding: 30px;
    flex: 1;
}

.case-content h3 {
    margin-bottom: 15px;
}

.case-content ul {
    margin-top: 15px;
}

.case-content ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.case-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat {
    padding: 30px;
    background-color: white;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Team */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.member {
    text-align: center;
    background-color: white;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.member:hover {
    transform: translateY(-10px);
}

.member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member h3 {
    margin: 20px 0 5px;
    font-size: 1.5rem;
}

.member p {
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Roadmap */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.milestone {
    position: relative;
    margin-bottom: 60px;
}

.milestone:last-child {
    margin-bottom: 0;
}

.milestone:nth-child(odd) .content {
    margin-left: auto;
    margin-right: 60px;
    text-align: right;
}

.milestone:nth-child(even) .content {
    margin-left: 60px;
    margin-right: auto;
}

.year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 10px 15px;
    font-weight: bold;
    z-index: 1;
}

.content {
    max-width: 45%;
    padding: 30px;
    background-color: white;
    box-shadow: var(--shadow);
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--light-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 40px;
}

.contact-info h3 {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 20px;
}

.map {
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-nav h4, .footer-legal h4 {
    color: var(--light-color);
    margin-bottom: 20px;
}

.footer-nav ul li, .footer-legal ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a, .footer-legal ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover, .footer-legal ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .case {
        flex-direction: column;
    }

    .case img {
        width: 100%;
        height: 300px;
    }

    .milestone:nth-child(odd) .content,
    .milestone:nth-child(even) .content {
        max-width: 100%;
        margin: 30px auto 0;
        text-align: left;
    }

    .timeline:before {
        left: 20px;
        transform: none;
    }

    .year {
        left: 20px;
        transform: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        padding: 20px;
        display: none;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .about-content {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .cases {
        grid-template-columns: 1fr;
    }

    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 100%;
        max-width: 450px;
        margin-bottom: 30px;
    }

    .plan.featured {
        transform: none;
    }

    .plan.featured:hover {
        transform: translateY(-10px);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}