:root {
    --primary-gradient: linear-gradient(135deg, #4facfe 0%, #a4508b 50%, #00f2fe 100%);
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
}

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

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

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h2 {
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.language-toggle a, .language-toggle span {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

.language-toggle .active {
    color: #a4508b;
}

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    color: var(--text-light);
    text-align: center;
    padding: 6rem 5%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #a4508b;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 4rem 5%;
    text-align: center;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* Services Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

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

/* Swiper Gallery */
.swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* Value Proposition */
.value-prop {
    background: var(--primary-gradient);
    color: var(--text-light);
}

.value-prop h2 {
    color: var(--text-light);
}

.value-list {
    list-style: none;
    font-size: 1.2rem;
}

.value-list li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 3rem 5%;
}

.social-link {
    display: inline-block;
    color: #00f2fe;
    font-size: 1.2rem;
    text-decoration: none;
    margin: 1rem 0;
    font-weight: 600;
}

.copyright {
    font-size: 0.9rem;
    color: #aaa;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}