/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b0e14;
    color: #e0e6ed;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-title span {
    color: #00d4ff;
    border-bottom: 3px solid #ff8c00;
    padding-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: #8899aa;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
header {
    background-color: #11181f;
    padding: 15px 0;
    border-bottom: 2px solid #00d4ff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    color: #fff;
}

/* --- OUROBOROS DRAGON ANIMATION --- */
#ouroboros-icon {
    color: #ff8c00;
    font-size: 1.8rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo:hover #ouroboros-icon {
    animation: spinDragon 2s linear infinite;
}

@keyframes spinDragon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ---------------------------------- */

.logo .tagline {
    display: block;
    font-size: 0.75rem;
    color: #00d4ff;
    letter-spacing: 1px;
    font-weight: 300;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #00d4ff;
    border-bottom-color: #ff8c00;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(145deg, #0b0e14 0%, #1a2533 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #1e2a38;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero-content h2 span {
    color: #ff8c00;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #b0c4d8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #00d4ff;
    color: #0b0e14;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}
.btn-primary:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
}
.btn-secondary:hover {
    background: #00d4ff;
    color: #0b0e14;
    transform: translateY(-3px);
}

/* ===== SERVICES ===== */
.services {
    padding: 70px 0;
    background-color: #0f151d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: #1a2533;
    padding: 20px 20px 25px;
    border-radius: 16px;
    border-left: 4px solid #00d4ff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.service-card:hover {
    transform: translateY(-8px);
    background: #1f2d3f;
    border-left-color: #ff8c00;
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.15);
}

.service-card .category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff8c00;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.service-card p {
    font-size: 0.9rem;
    color: #b0c4d8;
    flex-grow: 1;
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 15px;
    border-radius: 30px;
    align-self: flex-start;
    margin-top: 5px;
}

.service-card .whatsapp-btn {
    margin-top: 15px;
    background: #25D366;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    font-size: 0.9rem;
}

.service-card .whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
}

/* ===== ABOUT / WHY US ===== */
.about {
    padding: 70px 0;
    background: #0b0e14;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.about-card {
    background: #1a2533;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #1e2a38;
}

.about-card:hover {
    border-color: #00d4ff;
    background: #1f2d3f;
}

.about-card i {
    font-size: 2.8rem;
    color: #ff8c00;
    margin-bottom: 15px;
}

.about-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.about-card p {
    color: #b0c4d8;
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: 70px 0;
    background: #0f151d;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    background: #1a2533;
    padding: 40px;
    border-radius: 20px;
}

.contact-info h3 {
    color: #00d4ff;
    margin: 20px 0 8px;
    font-size: 1.2rem;
}

.contact-info h3:first-of-type {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-info a {
    color: #25D366;
    font-weight: 600;
}
.contact-info a:hover {
    color: #fff;
}

.cta-highlight {
    background: rgba(255, 140, 0, 0.15);
    padding: 15px;
    border-radius: 12px;
    margin-top: 25px;
    border-left: 4px solid #ff8c00;
}

.cta-highlight i {
    color: #ff8c00;
    font-size: 1.2rem;
    margin-right: 10px;
}

/* ===== FOOTER ===== */
footer {
    background: #06090e;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #1a2533;
}

footer p {
    color: #8899aa;
    margin-bottom: 5px;
}

footer strong {
    color: #fff;
}

/* ===== RESPONSIVE (Mobile Friendly) ===== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #11181f;
        padding: 20px;
        gap: 15px;
        border-radius: 12px;
        margin-top: 15px;
    }

    nav ul.active {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}