:root {
    --primary: #1a6dbf;
    --primary-dark: #145499;
    --primary-light: #e8f2fc;
    --secondary: #2d3748;
    --gray-100: #f7f8fa;
    --gray-200: #edf0f5;
    --gray-400: #a0aec0;
    --gray-600: #718096;
    --gray-800: #2d3748;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
    --radius: 12px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; color: var(--secondary); background: var(--white); overflow-x: hidden; }

  /* PAGE SYSTEM */
  .page { display: none; animation: fadeIn 0.4s ease; }
  .page.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  /* ===== TOP INFO BAR ===== */
  .top-bar { background: #0e3d72; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.08); position: sticky; top: 0; z-index: 1001; }
  .top-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 42px; }
  .top-bar-left { display: flex; align-items: center; gap: 0; }
  .top-bar-tagline { font-size: 12.5px; color: #a8d4f5; font-weight: 500; display: flex; align-items: center; gap: 8px; padding-right: 20px; border-right: 1px solid rgba(255,255,255,0.18); margin-right: 20px; }
  .top-bar-tagline-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; flex-shrink: 0; animation: blink 2s infinite; }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.35;} }
  .top-bar-contacts { display: flex; align-items: center; gap: 20px; }
  .top-bar-link { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,0.90); font-weight: 500; text-decoration: none; transition: color 0.2s; cursor: pointer; }
  .top-bar-link:hover { color: #fff; }
  .top-bar-link-icon { font-size: 13px; }
  .top-bar-sep { color: rgba(255,255,255,0.22); }
  .top-bar-right { display: flex; align-items: center; gap: 10px; }
  .top-bar-right a {display: inline-flex;}
  .top-social { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 800; text-decoration: none; }
  .top-social:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

  /* ===== HEADER ===== */
  .header-inner .logo{width: 100px;display: flex;padding: 5px 0;}
  header { position: sticky; top: 42px; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(14px); box-shadow: 0 2px 20px rgba(26,109,191,0.10); border-bottom: 1.5px solid var(--gray-200); }
  .header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; }
  .logo-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .logo-icon svg { width: 26px; height: 26px; fill: white; }
  .logo-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--primary); letter-spacing: -0.4px; }
  .logo-text span { font-size: 11px; color: var(--gray-600); font-weight: 400; letter-spacing: 0.6px; text-transform: uppercase; }
  nav { display: flex; align-items: center; gap: 2px; }
  .nav-link { padding: 8px 15px; border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--gray-800); transition: all var(--transition); background: none; border: none; font-family: 'Poppins', sans-serif; }
  .nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
  .btn-quote { padding: 10px 22px; background: var(--primary); color: white; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--transition); margin-left: 10px; font-family: 'Poppins', sans-serif; box-shadow: 0 4px 12px rgba(26,109,191,0.28); }
  .btn-quote:hover { background: var(--primary-dark); transform: translateY(-1px); }

  /* ===== BUTTONS ===== */
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--primary); color: white; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all var(--transition); font-family: 'Poppins', sans-serif; box-shadow: 0 4px 16px rgba(26,109,191,0.30); }
  .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,109,191,0.40); }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; background: transparent; color: white; border: 2px solid rgba(255,255,255,0.8); border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all var(--transition); font-family: 'Poppins', sans-serif; }
  .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }
  .btn-white { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: white; color: var(--primary); border: none; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all var(--transition); font-family: 'Poppins', sans-serif; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

  /* ===== COMMONS ===== */
  section { padding: 80px 0; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  .section-tag { display: inline-block; padding: 6px 16px; background: var(--primary-light); color: var(--primary); border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--secondary); line-height: 1.2; margin-bottom: 16px; }
  .section-sub { font-size: 16px; color: var(--gray-600); line-height: 1.7; max-width: 560px; }
  .text-center { text-align: center; }
  .text-center .section-sub { margin: 0 auto; }

  /* ===== HERO SLIDER ===== */
  .hero-slider { position: relative; height: 88vh; min-height: 560px; overflow: hidden; }
  .slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity 0.9s ease; }
  .slide.active { opacity: 1; }
  .slide-bg { position: absolute; inset: 0; }
  .slide-bg img { width: 100%; height: 100%; object-fit: cover; }
  .slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,24,56,0.82) 0%, rgba(8,24,56,0.28) 100%); }
  .slide-content { position: relative; z-index: 2; max-width: 620px; margin: 0 120px; }
  .slide.active .slide-content { animation: slideUp 0.8s ease 0.2s both; }
  @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .slide-tag { display: inline-block; padding: 5px 14px; background: rgba(255,255,255,0.18); backdrop-filter: blur(8px); color: white; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.3); }
  .slide-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 62px); color: white; line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
  .slide-desc { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 36px; font-weight: 300; }
  .slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .slider-nav { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
  .slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all var(--transition); border: none; }
  .slider-dot.active { background: white; width: 28px; border-radius: 5px; }
  .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.14); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,0.30); color: white; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); z-index: 10; }
  .slider-arrow:hover { background: rgba(255,255,255,0.28); }
  .slider-arrow.prev { left: 32px; }
  .slider-arrow.next { right: 32px; }

  /* ===== STATS BAR ===== */
  .stats-bar { background: var(--white); box-shadow: var(--shadow-md); position: relative; z-index: 5; margin-top: -54px; border-radius: var(--radius); max-width: 920px; margin-left: auto; margin-right: auto; }
  .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding: 32px 24px; }
  .stat-item { text-align: center; padding: 8px 16px; }
  .stat-item + .stat-item { border-left: 1px solid var(--gray-200); }
  .stat-num { font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1; }
  .stat-label { font-size: 13px; color: var(--gray-600); margin-top: 4px; font-weight: 500; }

  /* ===== INTRO ===== */
  .intro-section { padding: 100px 0 80px; background: var(--white); }
  .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .intro-img-wrap { position: relative; }
  .intro-img-real { width: 100%; border-radius: 20px; object-fit: cover; display: block; box-shadow: var(--shadow-md); }
  .intro-badge { position: absolute; bottom: 28px; left: -24px; background: white; border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
  .badge-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
  .badge-text strong { display: block; font-size: 18px; font-weight: 800; color: var(--primary); }
  .badge-text span { font-size: 12px; color: var(--gray-600); }
  .checklist { list-style: none; margin: 24px 0 36px; display: flex; flex-direction: column; gap: 12px; }
  .checklist li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-600); }
  .check-icon { width: 22px; height: 22px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); font-size: 11px; font-weight: 700; }

  /* ===== SERVICE CARDS ===== */
  .services-section { background: var(--gray-100); }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
  .service-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); cursor: pointer; border: 1.5px solid transparent; }
  .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
  .service-img { width: 100%; height: 200px; overflow: hidden; }
  .service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .service-card:hover .service-img img { transform: scale(1.07); }
  .service-body { padding: 24px; }
  .service-title { font-size: 17px; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
  .service-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; }
  .service-link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
  .service-card:hover .service-link { gap: 10px; }

  /* ===== WHY CHOOSE US ===== */
  .why-section { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 20px; }
  .why-img-real { width: 100%; border-radius: 20px; object-fit: cover; display: block; box-shadow: var(--shadow-md); }
  .why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
  .why-feature { display: flex; gap: 18px; align-items: flex-start; }
  .why-icon { width: 52px; height: 52px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; transition: all var(--transition); }
  .why-feature:hover .why-icon { background: var(--primary); transform: scale(1.05); }
  .why-feature-text h4 { font-size: 16px; font-weight: 600; color: var(--secondary); margin-bottom: 6px; }
  .why-feature-text p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

  /* ===== TESTIMONIALS ===== */
  .section-tint { background: linear-gradient(135deg, #f0f6fd 0%, var(--gray-100) 100%); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
  .testimonial-card { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-200); transition: all var(--transition); }
  .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
  .quote-icon { font-size: 48px; color: var(--primary-light); line-height: 1; margin-bottom: 16px; }
  .testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
  .stars { color: #f59e0b; font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
  .author-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; flex-shrink: 0; }
  .author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--secondary); }
  .author-info span { font-size: 12px; color: var(--gray-600); }

  /* ===== CTA ===== */
  .cta-section { background: linear-gradient(135deg, var(--primary) 0%, #145499 50%, #0e3d72 100%); position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%; top: -250px; right: -100px; }
  .cta-section::after { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; bottom: -150px; left: 100px; }
  .cta-inner { position: relative; z-index: 1; text-align: center; }
  .cta-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); color: white; margin-bottom: 16px; }
  .cta-sub { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ===== PAGE HERO (inner pages) ===== */
  .page-hero { position: relative; min-height: 280px; display: flex; align-items: center; text-align: center; overflow: hidden; }
  .page-hero-bg { position: absolute; inset: 0; }
  .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
  .page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,22,55,0.88) 0%, rgba(8,22,55,0.65) 100%); }
  .page-hero-content { position: relative; z-index: 2; width: 100%; padding: 80px 0 60px; }
  .page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 5vw, 52px); color: white; margin-bottom: 14px; }
  .page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.85); }
  .breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; }
  .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.7); cursor: pointer; transition: color 0.2s; }
  .breadcrumb span:hover { color: white; }
  .breadcrumb-sep { color: rgba(255,255,255,0.4); }

  /* ===== ABOUT ===== */
  .about-intro { padding: 80px 0; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .about-img-real { width: 100%; border-radius: 20px; object-fit: cover; display: block; box-shadow: var(--shadow-md); }
  .about-values { padding: 80px 0; background: var(--gray-100); }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
  .value-card { background: white; border-radius: var(--radius); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition); }
  .value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .value-icon { width: 70px; height: 70px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 20px; }
  .value-title { font-size: 18px; font-weight: 700; color: var(--secondary); margin-bottom: 12px; }
  .value-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
  .team-section { padding: 80px 0; }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
  .team-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; transition: all var(--transition); }
  .team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .team-photo { height: 210px; overflow: hidden; }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
  .team-card:hover .team-photo img { transform: scale(1.06); }
  .team-info { padding: 22px; }
  .team-name { font-size: 17px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
  .team-role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
  .team-bio { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

  /* ===== SERVICES PAGE ===== */
  .services-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 56px; }
  .service-full-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); cursor: pointer; border: 2px solid transparent; }
  .service-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
  .service-full-img { overflow: hidden; }
  .service-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .service-full-card:hover .service-full-img img { transform: scale(1.06); }
  .service-full-body { padding: 28px; }
  .service-full-title { font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 12px; }
  .service-full-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; }
  .service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
  .service-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-600); }
  .service-features li::before { content: '✓'; color: var(--primary); font-weight: 700; }

  /* ===== INQUIRY FORM ===== */
  .form-page { padding: 80px 0; background: var(--gray-100); }
  .form-wrap { max-width: 700px; margin: 0 auto; background: white; border-radius: 20px; padding: 56px; box-shadow: var(--shadow-md); }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-label { font-size: 13px; font-weight: 600; color: var(--secondary); }
  .form-input, .form-select, .form-textarea { padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-size: 14px; font-family: 'Poppins', sans-serif; color: var(--secondary); background-color: #fff; transition: all var(--transition); outline: none; }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(26,109,191,0.10); }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-submit { width: 100%; padding: 15px; background: var(--primary); color: white; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; transition: all var(--transition); margin-top: 8px; }
  .form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
  .form-success { text-align: center; padding: 40px 20px; display: none; }
  .success-icon { font-size: 64px; margin-bottom: 20px; }
  .success-title { font-size: 24px; font-weight: 700; color: var(--secondary); margin-bottom: 12px; }
  .success-sub { font-size: 15px; color: var(--gray-600); }

  /* ===== CONTACT PAGE ===== */
  .contact-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-info-card { background: white; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition); }
  .contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .contact-icon { font-size: 36px; margin-bottom: 16px; }
  .contact-info-title { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
  .contact-info-val { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
  .contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .map-placeholder { border-radius: var(--radius); overflow: hidden; position: relative; }
  .map-placeholder iframe {
    width: 100%;
    height: 485px;
}
  .map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
  .map-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: rgba(8,22,55,0.52); }
  .map-label { font-size: 15px; color: white; font-weight: 600; text-align: center; padding: 0 20px; }

  /* ===== FOOTER ===== */
  footer { background: var(--gray-800); color: white; padding: 60px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
  .footer-brand .logo-text strong { color: white; }
  .footer-brand .logo-text span { color: var(--gray-400); }
  .footer-brand p { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-top: 16px; max-width: 280px; }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .social-btn { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.10); display: flex; align-items: center; text-decoration: none;justify-content: center; font-size: 13px; cursor: pointer; transition: all var(--transition); border: none; color: white; font-weight: 700; }
  .social-btn:hover { background: var(--primary); transform: translateY(-2px); }
  .footer-col-title { font-size: 13px; font-weight: 700; color: white; margin-bottom: 20px; letter-spacing: 0.8px; text-transform: uppercase; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links span { font-size: 14px; color: var(--gray-400); cursor: pointer; transition: color var(--transition); }
  .footer-links span:hover { color: white; }
  .footer-contact-item { display: flex; gap: 12px; font-size: 14px; color: var(--gray-400); margin-bottom: 14px; line-height: 1.6; }
  .footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
  .footer-bottom p { font-size: 13px; color: var(--gray-400); }

.footer-brand img {
    height: 100px;
}
  .header-navbar {
    display: none;
}
.top-bar-right a img {
    max-height: 30px;
}
.footer-brand .logo-sec img {
    filter: brightness(0) invert(1);
}
.cross-menu {
    display: none;
}
.ml-0{margin-left: 0;}
.sticky-button {
    position: fixed;
    right: 0;
    background: #1a6dbf;
    top: 150px;
    z-index: 111;
    color: #fff;
    padding: 8px 15px 7px 30px;
    width: 147px;
    font-size: 13px;
    border-radius: 45px 0 0 45px;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(26, 109, 191, 0.28);
    background: rgb(26 109 191);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgb(255 255 255 / 30%);
    border-right: 0;
    text-align: left;cursor: pointer;
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    margin-top: 2rem;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}
.process-step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #e2e8f0;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.process-timeline::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}
.process-step:hover .process-step-icon {
    border-color: #0e3d72;
    color: #ffffff;
    background: #0e3d72;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px -15px rgba(2, 132, 199, 0.12), 0 10px 20px -10px rgba(15, 23, 42, 0.05);
}
.process-step-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: #0e3d72;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid #ffffff;
}
.mb-2 {
    margin-bottom: 13px;
}
.why-feature:hover .why-icon svg {
    color: #fff;
}
.logo{cursor: pointer;}
.form-submit.mt-2 {
    margin-top: 15px;
}

  /* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    .top-bar-tagline { display: none; }
    .intro-grid, .why-grid, .about-grid, .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
    .services-page-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .slide-content { margin: 0 10px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-wrap { padding: 36px 28px; }
    .contact-info-grid { grid-template-columns: 1fr 1fr; }
    .top-bar-contacts {gap: 5px;}
    .nav-link {padding: 8px 10px;}
    .btn-quote {padding: 10px;font-size: 12px;}
    .logo-sec img {height: 50px;}
.process-timeline {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin: 3rem auto 0 auto;
}
.process-step {
    background: #ffff;
    padding: 20px;
    border-radius: 15px;
}
.process-timeline::after {
    top: 45px;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: auto;
    right: auto;
}
  }
  @media (max-width: 600px) {
    .top-bar-inner { padding: 0 16px; }
    .top-bar-contacts { gap: 10px; }
    .top-bar-contacts .top-bar-sep { display: none; }
    .services-grid, .values-grid, .team-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .header-inner { padding: 0 16px; }
    nav .nav-link { padding: 8px 9px; font-size: 13px; }
    .container { padding: 0 16px; }
    .top-bar-right { display: none; }
    header { top: 42px; }
    .slider-arrow {
    display: none;
}

.header-navbar img {
    width: 25px;
}
  }
  @media (max-width: 600px) {
.header-navbar {
    display: flex;
    cursor: pointer;
}
.nav-header {
    position: fixed;
    top: -100dvh;
    left: 0;
    height: 100dvh;
    z-index: 1;
    width: 100%;
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all .5s;
}
.menu-active .cross-menu {
    display: flex;
    z-index: 11;
    position: absolute;
    top: 20px;
    right: 20px;
}
.menu-active .nav-header {
    top: 0;transition: all .5s;
}
.menu-active .cross-menu img {
    width: 16px;
}
.menu-active {
    overflow: hidden;
}
.menu-active header {
    top: 0 !important;
    position: absolute;
    width: 100%;
}
.menu-active .top-bar {
    top: 0;
    z-index: 0;
}
.sticky-button {
    top: unset;
    width: 220px;
    padding: 5px 15px 5px 20px;
    left: 0;
    right: 0;
    border-radius: 40px;
    text-align: center;
    font-size: 13px;
    bottom: 15px;
    margin: 0 auto;
    cursor: pointer;
}
.top-bar-inner {
    display: none;
}
header {
    top: 0;
}
.slide-title {
    font-size: 25px;
    line-height: 1.3;
}
.stat-item:nth-child(3) {
    border: 0;
}
.btn-primary {
    padding: 14px 20px;font-size: 14px;
}
.slide-btns {
    gap: 10px;
}
.slide-desc {
    font-size: 15px;
}
.btn-outline {
    padding: 13px 20px;font-size: 14px;
}
.hero-slider {
    height: unset;
    min-height: 460px;
}
.slider-nav {
    bottom: 15px;
}
.stat-item {
    padding: 10px;
}
.stats-inner {
    padding: 15px 10px;
}
.stats-bar {
    margin-top: 50px;
    margin-bottom: 50px;
}
.intro-section {
    padding: 0px 0 50px;
}
section {
    padding: 60px 0;
}
.services-grid {
    margin-top: 30px;
}
.why-grid {
    margin-top: 0;
}
.footer-grid {
    padding-bottom: 25px;
}
.footer-bottom {
    padding: 20px 0 80px;
}
.footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 7px;
}
}
