:root {
    --primary: #0f172a;
    --accent: #10b981;
    --accent-hover: #059669;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* SCROLL ANIMATION */
[data-animate] {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    transition: var(--transition);
}

header.scrolled {
    padding: 14px 6%;
    box-shadow: 0 4px 20px -5px rgba(15, 23, 42, 0.05);
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--accent);
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent);
    color: white;
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

/* MOBILE NAV */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.mobile-nav a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-nav.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    display: none;
    z-index: 1500;
}

.overlay.active {
    display: block;
}

/* HERO SECTION */
.hero {
    height: 80vh;
    min-height: 580px;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 24px;
    background-color: #0f172a;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero p {
    max-width: 620px;
    margin: 0 auto 40px auto;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.5;
}

/* BUTTONS */
.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* SECTIONS */
section {
    padding: 100px 6%;
}

.section-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.tagline {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

/* TRUST METRICS (UPDATED: White minimalist configuration) */
.trust-section {
    background: #ffffff;
    color: var(--primary);
    padding: 60px 6%;
    border-bottom: 1px solid #e2e8f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.metric .metric-val {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 8px;
}

.metric p {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 30px -10px rgba(15,23,42,0.05);
}

.card-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* ABOUT */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-main);
}

/* FAQ SECTION */
.faq-container {
    max-width: 750px;
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 120px;
    margin-top: 12px;
}

.faq-icon::before {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
}

.faq-item.active .faq-icon::before {
    content: '−';
}

/* CONTACT SECTION */
.contact-section {
    background: #f1f5f9;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    direction: rtl; 
}

.contact-info-side,
.contact-form-card {
    direction: ltr;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-text-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-alt-channels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.or-divider {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.channel-box {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    width: 100%;
}

.channel-box span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.channel-box a {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    word-break: break-all;
}

.channel-box a:hover {
    color: var(--accent);
}

/* FORM FIELD STYLING */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -15px rgba(15,23,42,0.03);
}

.form-group {
    margin-bottom: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--primary);
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* PRECISE DROP-DOWN CHEVRON ADJUSTMENT */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px; 
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center; 
    background-size: 15px;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* FOOTER */
footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 40px 6%;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #1e293b;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr; 
    }
}

@media (max-width: 768px) {
    nav { display: none; }
    .menu-btn { display: block; }
    header { padding: 16px 6%; }
    section { padding: 70px 6%; }
    .btn { width: 100%; text-align: center; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
    footer { flex-direction: column; text-align: center; }

    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
        direction: ltr;
    }
    .contact-info-side {
        display: contents; 
    }
    .contact-text-block {
        order: 1; 
        text-align: center;
    }
    .contact-text-block p {
        margin: 0 auto;
    }
    .contact-form-card {
        order: 2; 
        padding: 30px 20px;
        width: 100%;
    }
    .contact-alt-channels {
        order: 3; 
        text-align: center;
        width: 100%;
        padding: 0;
    }
    .channel-box {
        width: 100%;
        box-sizing: border-box;
    }
    .or-divider {
        text-align: center;
    }
}