@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --primary-color: #2C3E50;
    --secondary-color: #1ABC9C;
    --accent-color: #F1C40F;
    --light-color: #ECF0F1;
    --dark-color: #1a252f;
    --gradient-primary: linear-gradient(135deg, #1ABC9C 0%, #2C3E50 100%);
    --hover-color: #16a085;
    --background-color: #f8f9fa;
    --text-color: #34495E;
    --border-color: rgba(44, 62, 80, 0.15);
    --divider-color: rgba(26, 188, 156, 0.3);
    --shadow-color: rgba(44, 62, 80, 0.1);
    --highlight-color: #E67E22;
    --main-font: 'Roboto Condensed', sans-serif;
    --alt-font: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-color);
}

/* Header & Nav */
header {
    background-color: var(--primary-color);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navigation a {
    color: var(--light-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.navigation a:hover {
    color: var(--accent-color);
}

/* Neumorphism Elements */
.neo-card {
    background: var(--background-color);
    border-radius: 15px;
    box-shadow: 8px 8px 16px #e1e3e4, -8px -8px 16px #ffffff;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.neo-card:hover {
    transform: translateY(-5px);
}

.neo-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: #fff !important;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 5px 5px 10px #b1b5b6, -5px -5px 10px #ffffff;
    transition: all 0.3s ease;
    font-family: var(--main-font);
}

.neo-button:hover {
    background: var(--hover-color);
    box-shadow: inset 5px 5px 10px rgba(0,0,0,0.1), inset -5px -5px 10px rgba(255,255,255,0.5);
}

/* Sections Base */
section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('./img/bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.hero h1 {
    color: var(--light-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    color: var(--light-color);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Content Sections */
.content-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.content-img {
    flex: 0 0 40%;
    border-radius: 20px;
    box-shadow: 0 10px 20px var(--shadow-color);
    width: 100%;
    height: auto;
}

.content-text {
    flex: 1;
}

/* Divider */
.divider-line {
    height: 2px;
    background: var(--border-color);
    margin: 20px auto;
    width: 80%;
    position: relative;
}

.divider-text {
    text-align: center;
    font-family: var(--main-font);
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    background: var(--background-color);
    display: inline-block;
    padding: 0 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(rgba(26, 188, 156, 0.85), rgba(44, 62, 80, 0.85)), url('./img/bg.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    color: var(--light-color);
}

.cta-section h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* FAQ */
.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px var(--shadow-color);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 40px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

footer a {
    color: var(--light-color);
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

footer nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.2);
    }
    
    .nav-toggle:checked ~ .navigation {
        display: block;
    }
    
    .navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero h1 { font-size: 2rem; }
    
    .content-flex { flex-direction: column; }
    
    .content-img { flex: 0 0 100%; }
    
    footer { flex-direction: column; text-align: center; gap: 20px; }
    
    footer nav ul { justify-content: center; }
}