:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #38bdf8;
  --text-main: #334155;
  --text-light: #f1f5f9;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --glass: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', system-ui, sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--primary); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER --- */
.site-header {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  color: var(--white);
  position: sticky; top: 0; z-index: 1000;
  padding: 12px 0; /* Slight adjustment for better vertical align */
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }

/* --- BRANDING / LOGO STYLES (NEW) --- */
.brand {
    display: flex;
    width: 100px;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    height: 42px; /* Fits perfectly in header */
    width: 80px;
    height: 80px;
    border-radius: 8px; /* Makes the JPG white background look like an intentional icon */
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -1px; line-height: 1; color: var(--white); }
.logo span { color: var(--accent); }
.tagline { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2.5px; color: grey; font-weight: 600; margin-top: 2px; }

/* ... keep existing .brand styles ... */

/* Add this NEW class for the SVG */
.brand-logo-svg {
    height: 48px;  /* Perfect size for header */
    width: 48px;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.3)); /* Adds a cool glow */
    transition: transform 0.3s ease;
}

/* Hover effect for the logo */
.brand:hover .brand-logo-svg {
    transform: rotate(15deg) scale(1.1);
}

/* ... keep existing styles ... */

/* --- NAV --- */
.nav { display: flex; gap: 20px; align-items: center; }
.nav a { color: var(--white); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.nav a:hover { color: var(--accent); }
.nav-cta { background: var(--accent); color: var(--primary) !important; padding: 8px 16px; border-radius: 6px; font-weight: 700; }

/* --- HERO (100vh Fixed) --- */
.hero {
  background: radial-gradient(circle at top right, rgba(56,189,248,0.1), transparent), var(--primary);
  color: var(--white); 
  padding: 100px 0; 
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.badge { background: rgba(56, 189, 248, 0.1); color: var(--accent); padding: 6px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.hero h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 25px; font-weight: 800; }
.accent { color: var(--accent); }
.hero p { font-size: 1.1rem; color: #94a3b8; margin-bottom: 35px; }

.hero-stats { display: flex; gap: 30px; margin-bottom: 30px; }
.stat strong { display: block; font-size: 1.4rem; color: var(--accent); }
.stat span { font-size: 0.75rem; color: #64748b; }

.hero-form-card {
  background: var(--glass); border: 1px solid rgba(255,255,255,0.1);
  padding: 40px; border-radius: 24px; backdrop-filter: blur(20px);
}
.hero-form-card input, .hero-form-card select {
  width: 100%; padding: 14px; margin-bottom: 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2); color: white;
}

/* --- SECTIONS (Shared Styles) --- */
.section { padding: 100px 0; }
.section-title { font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 15px; color: var(--white); }
.section-subtitle { text-align: center; color: #94a3b8; margin-bottom: 60px; }
.text-center { text-align: center; }
.mb-60 { margin-bottom: 60px; }
.light { background: #0b1121; }

/* --- CARDS --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
  background: rgba(255,255,255,0.03); padding: 40px 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--accent); background: rgba(255,255,255,0.06); }
.card-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--white); }
.service-card p { color: #94a3b8; font-size: 0.95rem; }

/* Process Steps Numbers */
.process-card { position: relative; overflow: hidden; }
.step-num { font-size: 3rem; font-weight: 900; color: rgba(56,189,248,0.1); position: absolute; top: 20px; right: 20px; }

/* Trust Section Styling */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; padding: 20px 0; }
.trust-item { display: flex; align-items: flex-start; gap: 20px; }
.trust-item i { font-size: 2rem; color: var(--accent); margin-top: 5px; }
.trust-item h3 { font-size: 1.25rem; margin-bottom: 8px; color: #fff; }
.trust-item p { color: #94a3b8; font-size: 0.95rem; line-height: 1.5; }

/* --- CONTACT --- */
.contact { background: linear-gradient(to bottom, var(--primary), #000); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info p, .info-item span { color: grey;}
.main-contact-form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.main-contact-form input, .main-contact-form textarea {
  padding: 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: white; width: 100%;
}

/* --- BUTTONS --- */
.btn-primary { background: var(--accent); color: var(--primary); border: none; padding: 15px 30px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.btn-secondary { color: var(--white); border-bottom: 2px solid var(--accent); text-decoration: none; padding-bottom: 5px; font-weight: 600; }

/* --- FOOTER --- */
.site-footer { background: #020617; color: var(--white); padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: flex; flex-direction: column; gap: 40px; }
.footer-brand { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; }
.footer-desc { margin-top: 15px; color: #64748b; max-width: 400px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.85rem; color: #64748b; }
.footer-legal a { color: #64748b; text-decoration: none; margin: 0 5px; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero-split, .contact-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-stats, .hero-actions { justify-content: center; }
  .hero h1 { font-size: 2.5rem; }
  .step-num { position: relative; top: auto; right: auto; display: block; margin-bottom: 10px; }
}

@media (max-width: 600px) {
  .header-flex { justify-content: center; }
  .nav { width: 100%; justify-content: center; gap: 10px; margin-top: 10px; }
  .nav a { font-size: 0.85rem; }
  .form-row { grid-template-columns: 1fr; }
}

.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }