:root {
    --primary-black: #0e1010;
    --faded-black: rgba(14, 16, 16, 0.6);
    --dark-grey: #333534;
    --bg-deep: #ffffff;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
    --text-primary: #0e1010;
    --text-muted: rgba(0, 0, 0, 0.6);
    --glow: rgba(0, 0, 0, 0.05);
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
}

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

.nav-logo img {
    height: 30px;
    filter: none;
    opacity: 1;
}



/* --- Common Components --- */
section {
    padding: 10rem 0;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 900px;
    letter-spacing: -0.02em;
}

.section-header h2 span {
    color: var(--text-primary);
    background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 100%);
    background-size: 200% 100%;
    transition: background-position 0.5s;
}

.section-header p {
    margin: 1.5rem auto 0;
    max-width: 700px;
    color: var(--text-muted);
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 2rem;
    border: 1.5px solid var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: transparent;
}

.glass-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.glass-card:hover {
    border-color: var(--text-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* --- Hero --- */
.hero {
    padding-top: 15rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--text-muted);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto 3rem;
    max-width: 800px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-deep);
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--text-primary);
}

.hero-visual {
    display: none;
}



/* --- About --- */
.about {
    border-top: 1px solid var(--glass-border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.about-text p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    flex: 1;
    padding: 3rem 2rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- Why Choose Us --- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.feature-list {
    list-style: none;
    margin-top: 3rem;
}

.feature-list li {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-list li i {
    font-size: 1rem;
    opacity: 0.5;
}

.feature-visual {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feature-visual i {
    font-size: 10rem;
    opacity: 0.1;
}

/* --- Process --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-item {
    position: relative;
    padding: 2rem;
}

.process-num {
    font-size: 5rem;
    font-weight: 800;
    position: absolute;
    top: -2rem;
    left: 0;
    opacity: 0.05;
}

.process-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* --- Contact & Final Section --- */
.contact {
    background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.02) 0%, transparent 60%);
}

.contact-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-card {
    width: 100%;
    max-width: 600px;
}



/* Form Styles */
.form-card #contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-row input {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid var(--glass-border);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    color: var(--text-primary);
    outline: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.input-row input:focus {
    border-color: var(--text-primary);
    background: #ffffff;
}

.submit-btn {
    background: var(--text-primary);
    color: var(--bg-deep);
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    opacity: 0.5;
    font-size: 0.9rem;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    section {
        padding: 6rem 0;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .glass-card {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container,
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        height: 300px;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-text {
        text-align: center;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .hero {
        padding-top: 10rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-stats {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    section {
        padding: 5rem 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-logo img {
        height: 25px;
    }

    .glass-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .process-item {
        padding: 1.5rem;
    }

    .input-row input {
        padding: 1rem 1.5rem;
    }
}