:root {
    --primary: #10b981;
    --primary-hover: #059669;
    --bg-dark: #092018;
    --text-light: #f9fafb;
    --text-muted: #9ca3af;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Image & Overlay */
body::before {
    content: '';
    position: fixed;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: url('assets/background.jpg') no-repeat center center/cover;
    z-index: -2;
    transform: translate(var(--move-x, 0), var(--move-y, 0));
    transition: transform 0.1s ease-out;
    /* filter: brightness(0.9) contrast(0.9); */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #092018ba;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    filter: brightness(1.2);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    opacity: 0.8;
}

nav a:hover {
    color: var(--primary);
    opacity: 1;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-content .logo img {
    height: 150px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.building {
    /* flex: 1; */
    display: flex;
    /* align-items: center; */
    justify-content: right;
    right: 100px;
    /* text-align: center; */
    font-size: 1.3rem;
    font-weight: 600;
    /* color: var(--primary); */
    padding: 0px 200px 20px 0px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1a1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Form Container */
.form-container {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    max-width: 500px;
    margin: 0 auto;
}

.form-container p {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

form {
    display: flex;
    gap: 0.5rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--primary);
}

button {
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

.hidden {
    display: none;
}

#form-feedback {
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
footer {
    padding: 1rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.container .phone {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-details .phone:hover {
    color: var(--primary-hover);
}

.address {
    font-style: normal;
    line-height: 1.6;
    opacity: 0.8;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.social-links a:hover {
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    form {
        flex-direction: column;
    }

    .form-container {
        padding: 1.5rem;
    }

    footer .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .footer-info {
        align-items: center;
    }

    .social-links {
        margin-top: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .social-links a {
        margin: 0 1rem;
    }
}