:root {
    --primary: #ce0058;
    --secondary: #800080;
    --accent: #FFD700;
    --white: #FFFFFF;
    --light-bg: #F5F5F5;
    --dark-bg: #1a1a1a;
    --text-dark: #333333;
    --text-light: #666666;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 40px;
    flex: 1;
    margin-left: 60px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--primary);
}

.btn-header {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin-top: 70px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.05), rgba(128, 0, 128, 0.05));
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(206, 0, 88, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 40px;
    background: var(--white);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(206, 0, 88, 0.15);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.card-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.card-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 80px 40px;
    background: var(--white);
}

.content-section.alt {
    background: var(--light-bg);
}

.content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-grid.reverse .content-text {
    order: 2;
}

.content-grid.reverse .content-image {
    order: 1;
}

.content-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    font-size: 15px;
    color: var(--text-dark);
    padding-left: 25px;
    position: relative;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ===== PILLARS SECTION ===== */
.pillars-section {
    padding: 80px 40px;
    background: var(--light-bg);
}

.section-title-center {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.pillars-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(206, 0, 88, 0.12);
}

.pillar-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.pillar-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.pillar-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== BANNER SECTION ===== */
.banner-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.9), rgba(128, 0, 128, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 40px;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-text {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.banner-quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 40px;
    background: var(--white);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(206, 0, 88, 0.3);
}

.testimonial-stat {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 100px 40px;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-large {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 16px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

.footer-text {
    font-size: 14px;
    color: #aaa;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .header-content {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 25px;
        margin-left: 40px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        gap: 40px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 15px 30px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin: 15px 0;
    }

    .hero-section {
        padding: 40px 30px;
        margin-top: 150px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
    }

    .content-grid.reverse .content-text {
        order: 1;
    }

    .content-grid.reverse .content-image {
        order: 2;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .banner-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 15px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-menu {
        display: none;
    }

    .btn-header {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-section {
        padding: 30px 15px;
        margin-top: 120px;
    }

    .hero-image {
        height: 250px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .services-section,
    .content-section,
    .pillars-section,
    .testimonials-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .banner-overlay {
        padding: 20px;
    }

    .banner-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .footer-content {
        gap: 20px;
    }
}
