/*
- Font: Poppins (Google Fonts)
- Colors:
  - Jet Black (Primary): #0D0D0D
  - Rich Black (Secondary): #1A1A1A
  - Eerie Black (Cards/Panels): #242424
  - Platinum (Primary Text): #E6E6E6
  - Cultured (Secondary Text): #F5F5F5
  - Teal (Accent): #008080
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0D0D0D; /* Jet Black */
    color: #F5F5F5; /* Cultured */
    line-height: 1.8;
}

/* Header */
header {
    background-color: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    padding: 20px 50px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #242424;
}

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

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

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #E6E6E6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #008080; /* Teal */
}

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

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #E6E6E6;
    font-weight: 600;
    position: relative;
    transition: color 0.4s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #008080;
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: #008080;
}

.nav-links a:hover::after {
    width: 100%;
}

#language-toggle {
    background-color: transparent;
    border: 1px solid #008080;
    color: #008080;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#language-toggle:hover {
    background-color: rgba(0, 128, 128, 0.1);
}

#menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: #E6E6E6;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 150px 50px;
    min-height: 90vh;
}

.hero-content {
    max-width: 850px;
}

.hero-content h1 {
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    color: #E6E6E6;
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 55px;
    line-height: 1.9;
}

.cta-button {
    background-color: #008080;
    color: #FFFFFF;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 128, 128, 0.3);
}

/* Services Section */
#services {
    padding: 120px 50px;
    background-color: #1A1A1A; /* Rich Black */
}

#services h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #E6E6E6;
    margin-bottom: 70px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background-color: #242424; /* Eerie Black */
    padding: 45px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px -15px rgba(0,0,0,0.8);
    border-color: #008080;
}

.service-card i {
    font-size: 2.8em;
    color: #008080;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #E6E6E6;
    margin-bottom: 20px;
}

.service-tagline {
    font-style: italic;
    margin-top: 20px;
    color: #008080;
}

.pricing-list {
    list-style: none;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.pricing-list li {
    margin-bottom: 12px;
    color: #F5F5F5;
}

.pricing-list strong {
    color: #E6E6E6;
}

/* About Section */
#about {
    padding: 120px 50px;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

#about h2 {
    font-size: 2.8rem;
    color: #E6E6E6;
    margin-bottom: 35px;
}

#about p {
    font-size: 1.45rem;
    margin-bottom: 20px;
}



/* Contact Section */
#contact {
    padding: 120px 50px;
    background-color: #1A1A1A;
}

#contact h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #E6E6E6;
    margin-bottom: 70px;
}

#contact-form {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

#contact-form label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #E6E6E6;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #242424;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #008080;
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.2);
}

#contact-form button {
    width: 100%;
    font-size: 1.1rem;
}

#form-status {
    text-align: center;
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #242424;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    #hero, #services, #about, #contact {
        padding: 100px 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        backdrop-filter: blur(8px);
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        display: none; /* Hide nav links by default */
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 0;
        padding-top: 20px;
    }
    .nav-links.active {
        display: flex; /* Show when active */
    }
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        text-align: center;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links li a {
        padding: 15px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #242424;
    }
    .nav-links a::after {
        display: none;
    }
    #language-toggle {
        margin-top: 20px;
    }
    #menu-toggle {
        display: block; /* Show hamburger icon */
    }
    #hero {
        padding: 80px 20px;
        text-align: center;
    }
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .cta-button, #language-toggle {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    #services, #about, #contact {
        padding: 80px 20px;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
    #about h2, #contact h2 {
        font-size: 2.2rem;
    }
    #contact-form {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    nav ul {
        align-items: center;
    }
    #hero {
        min-height: 70vh;
    }
}