* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4AF37;
    --secondary-color: #8B0000;
    --accent-color: #E8D7C3;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #fff;
    --border-color: #ddd;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 600px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.hero-content h1 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-shape {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    color: var(--text-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Featured Services */
.featured-services {
    padding: 5rem 0;
    background: var(--light-bg);
}

.featured-services h2 {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 3rem;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 22px;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 14px;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--secondary-color);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    color: var(--text-light);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.cta-banner h3 {
    font-size: 28px;
    margin-bottom: 1rem;
}

.cta-banner p {
    margin-bottom: 1.5rem;
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
    background: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #666;
}

.about-list i {
    color: var(--primary-color);
    font-size: 18px;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), #e8d7c3);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.image-placeholder-large {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color), #e8d7c3);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: var(--shadow);
    font-size: 80px;
}

.image-placeholder i,
.image-placeholder-large i {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.image-placeholder p,
.image-placeholder-large p {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Statistics */
.statistics {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 18px;
    color: var(--text-light);
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: var(--light-bg);
    text-align: center;
}

.newsletter h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.newsletter p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 0.5rem;
}

.header-content p {
    font-size: 18px;
    color: var(--accent-color);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: var(--text-light);
}

.services-section h2 {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-item.reverse .service-item-image {
    order: 2;
}

.service-item.reverse .service-item-content {
    order: 1;
}

.service-item h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-item h4 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem 0;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #666;
}

.service-features i {
    color: var(--primary-color);
}

.service-price {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Service Benefits */
.service-benefits {
    padding: 4rem 0;
    background: var(--light-bg);
}

.service-benefits h2 {
    font-size: 36px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--text-light);
}

.pricing-section h2 {
    font-size: 36px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    transform: scale(1.05);
}

.pricing-card.featured h3 {
    color: var(--text-light);
}

.pricing-card.featured .price {
    color: var(--text-light);
}

.pricing-card.featured p {
    color: var(--text-light);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    color: #666;
    margin-bottom: 0.5rem;
}

.pricing-card.featured ul li {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Our Story */
.our-story {
    padding: 4rem 0;
    background: var(--text-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Mission & Vision */
.mission-vision {
    padding: 4rem 0;
    background: var(--light-bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mission-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    padding: 4rem 0;
    background: var(--text-light);
}

.timeline h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    top: 0;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-date {
    text-align: right;
    padding-right: 50%;
    margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    padding-left: 50%;
    margin-left: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
    padding-left: 50%;
    margin-left: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
    padding-right: 50%;
    margin-right: 3rem;
}

.timeline-date {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.timeline-content {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background: var(--light-bg);
}

.team h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-color), #e8d7c3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: var(--secondary-color);
}

.team-member h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: #666;
    font-size: 14px;
}

/* Impact Section */
.impact {
    padding: 4rem 0;
    background: var(--text-light);
}

.impact h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.impact-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.impact-item p {
    font-size: 16px;
}

/* Values Section */
.values {
    padding: 4rem 0;
    background: var(--light-bg);
}

.values h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .hero-shape {
        width: 200px;
        height: 200px;
        font-size: 60px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item.reverse {
        grid-template-columns: 1fr;
    }

    .service-item.reverse .service-item-image {
        order: 0;
    }

    .service-item.reverse .service-item-content {
        order: 0;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding: 0;
        margin: 0;
        margin-left: 80px;
    }

    .timeline-date::before {
        content: '';
        position: absolute;
        left: -47px;
        top: 0;
        width: 14px;
        height: 14px;
        background: var(--primary-color);
        border-radius: 50%;
        border: 3px solid var(--text-light);
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        display: none;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .featured-services h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .image-placeholder,
    .image-placeholder-large {
        height: 250px;
    }

    .image-placeholder i,
    .image-placeholder-large i {
        font-size: 50px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}