/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

:root {
    --bg-dark: #080c14;
    --bg-darker: #0b101a;
    --primary: #00ccff;
    --text-white: #ffffff;
    --text-gray: #b0b4bc;
}

body {
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 8%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(8, 12, 20, 0.95);
    z-index: 999;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    padding-top: 100px;
    gap: 3rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.hero-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: #00b3e6;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 204, 255, 0.1);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    color: #000;
}

/* Image Style — Soft Blend / No Hard Edge */
.hero-image img,
.page-image img {
    max-width: 450px;
    width: 100%;
    -webkit-mask-image: 
        linear-gradient(to right, black 85%, transparent 100%),
        linear-gradient(to left, black 85%, transparent 100%),
        linear-gradient(to top, black 85%, transparent 100%),
        linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: 
        linear-gradient(to right, black 85%, transparent 100%),
        linear-gradient(to left, black 85%, transparent 100%),
        linear-gradient(to top, black 85%, transparent 100%),
        linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    filter: brightness(0.9) contrast(1.1);
}

/* General Page Sections */
.page-section {
    background: var(--bg-darker);
    min-height: 100vh;
    padding: 8rem 8% 4rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: 2.5rem;
}

.section-heading h2 span {
    color: var(--primary);
}

.content-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.center-content {
    justify-content: center;
    text-align: center;
}

.page-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.page-text p {
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 2rem 0;
}

.info-grid span {
    color: var(--primary);
    font-weight: 600;
}

/* Cards */
.card {
    background: #101724;
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    max-width: 320px;
    margin: 1rem;
}

.card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-info {
    flex: 1;
    font-size: 1.1rem;
    text-align: left;
}

.contact-info p {
    margin: 1rem 0;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: #101724;
    border: 1px solid #222b3b;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #05080e;
    padding: 1.5rem 8%;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 960px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 120px;
    }
    .hero-buttons, .social-icons {
        justify-content: center;
    }
    .content-container {
        flex-direction: column;
        text-align: center;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
}