/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Assistant', sans-serif;
    font-weight: 300;
    background: #0a0a0a;
    color: #f8f8f8;
    line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Changa', sans-serif; font-weight: 300; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Assistant', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary { background: #f8f8f8; color: #0a0a0a; }
.btn-primary:hover { background: #e0e0e0; }
.btn-secondary { background: transparent; color: #f8f8f8; border: 1px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; text-align: center; }

/* ===== Info Bar ===== */
.info-bar {
    background: #050505;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-bar-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
}
.info-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== Nav ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}
.nav-logo img { height: 60px; width: auto; }
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #f8f8f8;
    transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 87vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

/* ===== Services ===== */
.services {
    background: #0a0a0a;
    padding: 80px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #111;
    border: 2px solid #1e1e1e;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.service-card:hover { border-color: #333; }
.service-card-header {
    padding: 30px 24px 20px;
    text-align: center;
    border-bottom: 5px solid #1e1e1e;
}
.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}
.service-icon svg { width: 100%; height: 100%; color: #f8f8f8; }
.service-card-header h3 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-card-body {
    padding: 24px;
    text-align: center;
}
.service-card-body p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    font-size: 15px;
}
.service-card.featured {
    border-color: #f8f8f8;
    position: relative;
}
.service-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #f8f8f8;
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== Split Section ===== */
.split-section {
    display: flex;
    min-height: 500px;
}
.split-text {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: #0a0a0a;
}
.split-text .container { max-width: 100%; }
.split-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
}
.split-text p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    font-size: 15px;
    text-align: justify;
}
.split-text .btn { margin-top: 12px; }
.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

/* ===== Features ===== */
.features {
    background: #0a0a0a;
    padding: 80px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-box {
    background: #111;
    border: 2px solid #1e1e1e;
    border-radius: 5px;
    padding: 40px 30px;
    text-align: center;
    transition: border-color 0.3s;
}
.feature-box:hover { border-color: #333; }
.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
}
.feature-icon svg { width: 100%; height: 100%; color: #f8f8f8; }
.feature-box h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}
.feature-box p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    text-align: justify;
}

/* ===== Areas ===== */
.areas {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.areas h2 { margin-bottom: 30px; font-weight: 300; }
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.area-tag {
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}
.area-tag:hover {
    border-color: #f8f8f8;
    color: #f8f8f8;
}

.trusted-section { padding: 60px 20px; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trusted-section .container { max-width: 1200px; margin: 0 auto; }
.trusted-heading { text-align: center; font-size: 2rem; margin-bottom: 30px; }
/* Trusted marquee */
.trusted-marquee {
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.trusted-marquee-track {
    display: flex;
    gap: 50px;
    animation: marquee 18s linear infinite;
    width: max-content;
}
.trusted-marquee-track span {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}
.trusted-marquee-track span::after {
    content: '\2022';
    margin-left: 50px;
    color: rgba(255,255,255,0.15);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: #0a0a0a;
}
.faq h2 { text-align: center; margin-bottom: 40px; font-weight: 300; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: #f8f8f8;
    font-family: 'Changa', sans-serif;
    font-weight: 300;
    font-size: 17px;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}
.faq-question:hover { color: #ccc; }
.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}
.faq-answer p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== Contact ===== */
.contact {
    padding: 80px 0;
    background: #0a0a0a;
}
.contact h2 { text-align: center; margin-bottom: 8px; font-weight: 300; }
.contact-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    color: #f8f8f8;
    font-family: 'Assistant', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #555;
}
.contact-form select option { background: #111; }
.contact-form textarea { resize: vertical; }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] { accent-color: #f8f8f8; }
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-info-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #f8f8f8;
}
.contact-info-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Assistant', sans-serif;
}
.contact-info-item p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
    background: #050505;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo { max-height: 60px; width: auto; }
.footer-col h4 {
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: color 0.3s;
}
.footer-col a:hover { color: #fff; }
.footer-col p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.6;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 975px) {
    .info-bar-inner { justify-content: center; gap: 20px; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .split-section { flex-direction: column; }
    .split-section.reverse { flex-direction: column-reverse; }
    .split-image { min-height: 300px; }
    .features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto; }
}
@media (max-width: 575px) {
    .form-row { grid-template-columns: 1fr; }
    .hero { min-height: 70vh; }
    .hero-bg { background-attachment: scroll; }
}
