:root {
    --primary: #FF6F61; /* Strong Coral */
    --secondary: #48C9B0; /* Strong Mint */
    --accent: #9B59B6; /* Strong Lavender */
    --warning: #F4D03F; /* Strong Mustard */
    --dark: #2C3E50;
    --light: #FDFEFE;
    --bg-soft: #F4F7F6;
    --text: #34495E;
    --text-muted: #7F8C8D;
    --white: #FFFFFF;
    
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --radius: 12px;
    --container: 1200px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (min-width: 769px) {
    .main-header nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }
    .logo {
        justify-self: start;
    }
    .nav-links {
        justify-self: center;
    }
    .header-right {
        justify-self: end;
        display: flex;
        align-items: center;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.lang-switcher select {
    background: white;
    border: 2px solid var(--primary);
    padding: 6px 12px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary);
    transition: 0.3s;
}

.lang-switcher select:hover {
    background: var(--primary);
    color: white;
}

.btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ff5242;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

/* Hero Section */
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero h1, .hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero p, .hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

/* Service Cards */
.services-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
}

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

.card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.3s;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.card i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 20px;
}

.card.coral i { background-color: var(--primary); }
.grid .card:nth-child(2) i { background-color: var(--accent); }
.grid .card:nth-child(3) i { background-color: var(--warning); }

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-bottom {
    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);
}

/* Blog Specific */
.blog-post-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
}

.blog-post-img {
    height: 200px;
    background-color: var(--bg-soft);
}

.blog-post-content {
    padding: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        text-align: center;
        gap: 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        backdrop-filter: blur(15px);
    }
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
    .hero h1 {
        font-size: 2.8rem !important;
        line-height: 1.1;
        margin-bottom: 15px !important;
    }
    .hero p {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
        padding: 0 15px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px !important;
        padding: 0 20px;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .grid {
        grid-template-columns: 1fr !important;
    }
    .services-section, .blog-preview, .cta-home {
        padding: 60px 0 !important;
    }
    .card {
        padding: 30px 20px;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    color: var(--dark);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
}
