/* Base Styles */
:root {
    --primary-color: #e83e8c;
    --secondary-color: #6f42c1;
    --accent-color: #20c997;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #343a40;
    --border-radius: 6px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fafafa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-svg {
    width: 180px;
    height: 50px;
}

.logo-text {
    fill: var(--primary-color);
    font-weight: 800;
    font-size: 24px;
}

.logo-icon {
    fill: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: var(--text-color);
    margin: 3px 0;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--dark-color), #4a4a4a);
    color: #fff;
    padding: 150px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="50" height="50" fill="%23ffffff10"/><rect x="50" y="50" width="50" height="50" fill="%23ffffff10"/></svg>');
    opacity: 0.05;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 62, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(232, 62, 140, 0.4);
    color: #fff;
}

/* About Section */
.about {
    background-color: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.about-item {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-10px);
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.icon-bg {
    fill: rgba(232, 62, 140, 0.1);
}

.icon-path {
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
}

/* Features Section */
.features {
    background: #f8f9fa;
}

.features-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    margin-bottom: 40px;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.2;
    margin-right: 25px;
}

.feature-content {
    flex: 1;
}

/* Explore Section */
.explore {
    background: #fff;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.explore-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.explore-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.explore-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.explore-icon-bg {
    fill: rgba(232, 62, 140, 0.1);
}

.explore-icon-path {
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.toggle {
    position: relative;
    width: 20px;
    height: 20px;
}

.toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.toggle span:last-child {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s ease;
}

.faq-item.active .toggle span:last-child {
    transform: translateY(-50%) rotate(0);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta .btn-primary {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    fill: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-menu {
    margin-left: 60px;
    min-width: 140px;
}

.footer-menu h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-menu ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .footer-menu {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links {
        margin-top: 30px;
    }
    
    .footer-menu {
        margin-left: 0;
        margin-right: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
    }
}
