/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --navy: #062B78;
  --blue: #1560FF;
  --blue-light: #e8f0ff;
  --blue-glow: rgba(21, 96, 255, 0.12);
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e6ef;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 3px rgba(6,43,120,0.06);
  --shadow-md: 0 4px 20px rgba(6,43,120,0.08);
  --shadow-lg: 0 8px 40px rgba(6,43,120,0.10);
  --shadow-xl: 0 16px 60px rgba(6,43,120,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--blue); margin-bottom: 12px;
  background: var(--blue-light); padding: 6px 16px; border-radius: 20px;
}
.section-title { font-size: 2.4rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: 10px; font-weight: 600; font-size: 0.95rem; border: none;
  cursor: pointer; transition: var(--transition); font-family: inherit;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 16px rgba(21,96,255,0.3);
}
.btn-primary:hover { background: #0d4fd4; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(21,96,255,0.4); }
.btn-secondary {
  background: var(--white); color: var(--navy); border: 2px solid var(--gray-200);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(25px);
  border-bottom: 1px solid transparent; transition: var(--transition); padding: 0;
}
.navbar.scrolled { border-bottom-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; height: 100%; overflow: visible; }
.nav-logo img { height: 150px; width: auto; transition: var(--transition); mix-blend-mode: multiply; margin-top: 15px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--gray-600); transition: var(--transition); }
.nav-links a:hover { color: var(--navy); }
.nav-cta .btn { padding: 12px 28px; font-size: 0.9rem; color: var(--white) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 10px; z-index: 1001; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); transform-origin: center; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 140px; position: relative; overflow: hidden;
  background: linear-gradient(to right, #ffffff 0%, #f0f5ff 35%, #dce8ff 65%, #c8daff 100%);
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(21, 96, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: 40%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21, 96, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: var(--blue-light); border-radius: 24px; margin-bottom: 24px;
  font-size: 0.85rem; font-weight: 500; color: var(--blue);
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 { font-size: 3.2rem; font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--blue); }
.hero p { font-size: 1.15rem; color: var(--gray-600); margin-bottom: 36px; max-width: 520px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.hero-stat h3 { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.hero-stat span { font-size: 0.85rem; color: var(--gray-600); }
.hero-visual { position: relative; z-index: 2; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.hero-visual::before {
  content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%;
  background: var(--blue-glow); border-radius: var(--radius-lg); z-index: -1;
}
.hero-wave {
  position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 3;
}
.hero-wave svg {
  display: block; width: 100%; height: 80px;
}

/* ===== SERVICE SHOWCASES ===== */
.service-showcases { background: var(--gray-50); }
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.showcase-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  min-height: 420px; display: flex; align-items: flex-end;
  cursor: pointer; transition: var(--transition); text-decoration: none;
  box-shadow: var(--shadow-md);
}
.showcase-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.showcase-image {
  position: absolute; inset: 0; z-index: 1;
}
.showcase-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-card:hover .showcase-image img { transform: scale(1.08); }
.showcase-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to top,
    rgba(6, 43, 120, 0.95) 0%,
    rgba(6, 43, 120, 0.7) 40%,
    rgba(6, 43, 120, 0.25) 100%
  );
  transition: var(--transition);
}
.showcase-card:hover .showcase-overlay {
  background: linear-gradient(
    to top,
    rgba(21, 96, 255, 0.95) 0%,
    rgba(6, 43, 120, 0.75) 40%,
    rgba(6, 43, 120, 0.35) 100%
  );
}
.showcase-content {
  position: relative; z-index: 3; padding: 40px;
  color: var(--white);
}
.showcase-icon {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.showcase-icon svg { width: 28px; height: 28px; color: var(--white); }
.showcase-card:hover .showcase-icon { background: rgba(255,255,255,0.25); }
.showcase-content h3 {
  font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 12px;
  line-height: 1.2;
}
.showcase-content p {
  font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7;
  margin-bottom: 24px; max-width: 400px;
}
.showcase-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; color: var(--white);
  padding: 12px 28px; border-radius: 10px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.showcase-card:hover .showcase-cta {
  background: var(--white); color: var(--navy);
}
.showcase-card:hover .showcase-cta svg { stroke: var(--navy); }

/* ===== SUBPAGE SHARED STYLES ===== */
.subpage-hero {
  padding: 160px 0 100px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #0a3d9e 50%, var(--blue) 100%);
}
.subpage-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.subpage-hero::after {
  content: ''; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,96,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.subpage-hero .container { position: relative; z-index: 2; }
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.subpage-hero .hero-badge { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.subpage-hero h1 { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.subpage-hero h1 .highlight { color: #60a5fa; }
.subpage-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 600px; line-height: 1.8; }
.subpage-hero .btn-primary { background: var(--white); color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.subpage-hero .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0,0,0,0.2); }
.subpage-hero .btn-secondary { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.subpage-hero .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.service-icon svg { width: 26px; height: 26px; color: var(--blue); }

.subpage-features { background: var(--gray-50); }
.subpage-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.subpage-feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.subpage-feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.subpage-feature-card .service-icon { margin-bottom: 20px; }
.subpage-feature-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.subpage-feature-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }
.subpage-feature-card:hover .service-icon { background: var(--blue); }
.subpage-feature-card:hover .service-icon svg { color: var(--white); }

.subpage-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 40px 0;
}
.subpage-detail.reverse { direction: rtl; }
.subpage-detail.reverse > * { direction: ltr; }
.subpage-detail-text h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.subpage-detail-text p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.subpage-detail-text ul { margin-bottom: 24px; }
.subpage-detail-text ul li {
  display: flex; align-items: flex-start; gap: 12px; padding: 8px 0;
  font-size: 0.95rem; color: var(--gray-600);
}
.subpage-detail-text ul li svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.subpage-detail-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.subpage-detail-image img { width: 100%; display: block; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.7);
  margin-bottom: 24px; transition: var(--transition);
}
.back-link:hover { color: var(--white); }
.back-link svg { width: 18px; height: 18px; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-card {
  display: flex; flex-direction: column; padding: 40px 32px; text-align: center;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); transition: var(--transition);
  text-decoration: none; color: inherit; position: relative;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.contact-card-featured {
  border: 2px solid var(--blue); box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
}
.contact-card-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white); padding: 4px 20px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.contact-card-icon {
  width: 72px; height: 72px; border-radius: var(--radius-md);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; transition: var(--transition);
}
.contact-card-icon svg { width: 32px; height: 32px; color: var(--blue); }
.contact-card:hover .contact-card-icon { background: var(--blue); }
.contact-card:hover .contact-card-icon svg { color: var(--white); }
.contact-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.contact-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.contact-detail {
  display: block; font-size: 0.95rem; font-weight: 600; color: var(--blue);
  margin-bottom: 24px; word-break: break-all;
}
.contact-card-action {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; color: var(--navy);
  padding: 12px 28px; border-radius: 10px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  transition: var(--transition); margin-top: auto;
}
.contact-card:hover .contact-card-action {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.contact-card:hover .contact-card-action svg { stroke: var(--white); }
.contact-card-featured .contact-card-action {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.contact-card-featured .contact-card-action svg { stroke: var(--white); }
.contact-card-featured:hover .contact-card-action {
  background: var(--navy); border-color: var(--navy);
}

/* Contact Form */
.contact-form-wrapper {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start;
}
.contact-form-info h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.contact-form-info p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 36px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-info-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-info-item span { font-size: 0.85rem; color: var(--gray-600); }

.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 0; }
.form-group:last-child { margin-bottom: 20px; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px; border-radius: 10px; border: 1.5px solid var(--gray-200);
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--gray-800);
  background: var(--gray-50); transition: var(--transition);
  outline: none; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(21, 96, 255, 0.1);
}
.form-group select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== WHY CHOOSE US ===== */
.why-us {
  position: relative; overflow: hidden;
  background-color: #f0f4ff;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(21, 96, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(21, 96, 255, 0.10) 0%, transparent 45%),
    radial-gradient(circle, rgba(21, 96, 255, 0.15) 1.2px, transparent 1.2px);
  background-size: 100%, 100%, 30px 30px;
}
.why-us::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 450px; height: 450px; border-radius: 50%;
  border: 2px solid rgba(21, 96, 255, 0.10);
  pointer-events: none;
}
.why-us::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 2px solid rgba(21, 96, 255, 0.10);
  pointer-events: none;
}
.why-us .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; position: relative; z-index: 2; }
.feature-item {
  display: flex; gap: 20px; padding: 28px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  border-radius: var(--radius-md); transition: var(--transition);
  border: 1px solid rgba(21, 96, 255, 0.08);
}
.feature-item:hover { background: var(--white); border-color: var(--gray-200); box-shadow: var(--shadow-md); }
.feature-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--blue); }
.feature-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-item p { font-size: 0.9rem; color: var(--gray-600); }

/* ===== SECTION TRANSITIONS ===== */
.section-fade {
  height: 80px; width: 100%; margin: 0; padding: 0;
  position: relative; z-index: 1;
}

/* ===== PROCESS ===== */
.process { background: var(--gray-50); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%;
  height: 2px; background: var(--gray-200);
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--blue); margin: 0 auto 20px;
  position: relative; z-index: 2; transition: var(--transition);
}
.process-step:hover .step-number { background: var(--blue); color: var(--white); }
.process-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--gray-600); max-width: 220px; margin: 0 auto; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; color: #f59e0b; fill: #f59e0b; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  color: var(--blue); font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-author h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.testimonial-author span { font-size: 0.82rem; color: var(--gray-400); }

/* ===== PRICING / QUOTE ===== */
.pricing { background: var(--gray-50); }
.quote-wrapper { max-width: 800px; margin: 48px auto 0; }
.quote-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; border: 2px solid var(--blue);
  box-shadow: 0 8px 40px rgba(21, 96, 255, 0.08);
}
.quote-price-row {
  display: grid; grid-template-columns: auto 1px 1fr; gap: 40px; align-items: center;
  margin-bottom: 36px;
}
.quote-price-block { text-align: center; }
.quote-from {
  display: block; font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--blue); margin-bottom: 8px;
}
.quote-price {
  font-size: 4rem; font-weight: 800; color: var(--navy); line-height: 1;
  margin-bottom: 8px;
}
.quote-note { display: block; font-size: 0.85rem; color: var(--gray-400); }
.quote-divider { width: 1px; height: 100%; background: var(--gray-200); }
.quote-includes h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.quote-includes ul { list-style: none; }
.quote-includes li {
  display: flex; align-items: center; gap: 10px; padding: 6px 0;
  font-size: 0.92rem; color: var(--gray-600);
}
.quote-includes li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.quote-actions {
  display: flex; gap: 16px; justify-content: center; padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

/* Pricing Duo (Homepage) */
.pricing-duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.pricing-preview-card {
  display: flex; flex-direction: column; padding: 40px 32px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200); transition: var(--transition);
  text-decoration: none; color: inherit; position: relative;
}
.pricing-preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--blue); }
.pricing-preview-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.pricing-preview-icon svg { width: 28px; height: 28px; color: var(--blue); }
.pricing-preview-card:hover .pricing-preview-icon { background: var(--blue); }
.pricing-preview-card:hover .pricing-preview-icon svg { color: var(--white); }
.pricing-preview-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-preview-price {
  font-size: 1rem; color: var(--gray-600); margin-bottom: 16px;
}
.pricing-preview-price strong { font-size: 2.2rem; font-weight: 800; color: var(--navy); }
.pricing-preview-price span { font-size: 0.9rem; color: var(--gray-400); font-weight: 400; }
.pricing-preview-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.pricing-preview-card ul { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.pricing-preview-card li {
  display: flex; align-items: center; gap: 10px; padding: 6px 0;
  font-size: 0.9rem; color: var(--gray-600);
}
.pricing-preview-card li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.pricing-preview-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; color: var(--navy);
  padding: 14px 28px; border-radius: 10px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  transition: var(--transition); margin-top: auto; text-align: center;
}
.pricing-preview-card:hover .pricing-preview-cta {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.pricing-preview-card:hover .pricing-preview-cta svg { stroke: var(--white); }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3d9e 50%, var(--blue) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.cta-section h2 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: var(--white); color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.cta-section .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0,0,0,0.2); }

/* ===== PARALLAX BANNERS ===== */
.parallax-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.parallax-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,43,120,0.82) 0%, rgba(21,96,255,0.65) 100%);
  z-index: 1;
}
.parallax-banner .parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 24px;
}
.parallax-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.parallax-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.parallax-1 { background-image: url('parallax-1.png'); }
.parallax-2 { background-image: url('parallax-2.png'); }

/* ===== PORTFOLIO / OUR WORK ===== */
.portfolio-section { background: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.portfolio-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: visible; /* changed from hidden for the monitor stand */
  border: 1px solid var(--gray-200); transition: var(--transition);
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  margin-bottom: 24px;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--blue); }

/* Monitor Mockup CSS */
.monitor-wrapper {
  padding: 32px 32px 48px;
  background: var(--gray-50);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
}
.monitor-mockup {
  position: relative;
  width: 100%;
}
.monitor-bezel {
  background: #1e293b;
  padding: 10px 10px 20px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 25px rgba(6,43,120,0.15);
  z-index: 2;
}
.monitor-screen {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}
.monitor-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: object-position 4s ease-in-out;
}
.portfolio-card:hover .monitor-screen img {
  object-position: bottom;
}
.monitor-stand {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 24px;
  background: linear-gradient(to right, #94a3b8, #cbd5e1, #94a3b8);
  z-index: 1;
}
.monitor-base {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 8px;
  background: #64748b;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 1;
}

.portfolio-content { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.portfolio-content h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.portfolio-content p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; flex-grow: 1; }
.portfolio-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; color: var(--blue);
  margin-top: auto; transition: var(--transition);
}
.portfolio-card:hover .portfolio-link { color: var(--navy); gap: 12px; }
.portfolio-link svg { width: 18px; height: 18px; stroke: currentColor; transition: var(--transition); }

@media (max-width: 768px) {
  .parallax-banner { background-attachment: scroll; min-height: 280px; }
  .parallax-banner h2 { font-size: 1.7rem; }
}

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-brand .footer-logo { height: 45px; width: auto; filter: brightness(10) saturate(0); opacity: 0.9; }
.footer h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 0.88rem; transition: var(--transition); }
.footer ul li a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-socials a:hover { background: var(--blue); }
.footer-socials a svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
.footer-socials a:hover svg { color: var(--white); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.82rem; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero h1 { font-size: 2.6rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-detail { grid-template-columns: 1fr; gap: 40px; }
  .subpage-detail.reverse { direction: ltr; }
  .subpage-features-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-hero h1 { font-size: 2.4rem; }
  .contact-form-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 1.9rem; }
  .nav-links { 
    display: flex; position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--white); flex-direction: column; align-items: center; justify-content: center;
    padding: 100px 32px 32px; gap: 32px; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000; overflow-y: auto; text-align: center;
  }
  .navbar .container { height: 72px; }
  .nav-logo img { height: 50px; }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.2rem; font-weight: 600; color: var(--navy); width: 100%; }
  .nav-cta { width: 100%; max-width: 280px; }
  .nav-cta .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
  .nav-hamburger { display: flex; }
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-stats { gap: 24px; }
  .hero-stat h3 { font-size: 1.4rem; }
  .showcase-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .showcase-card { min-height: 350px; }
  .showcase-content h3 { font-size: 1.5rem; }
  .why-us .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .subpage-hero { padding: 120px 0 60px; }
  .subpage-hero h1 { font-size: 2rem; }
  .subpage-features-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .subpage-detail { grid-template-columns: 1fr; gap: 32px; }
  .subpage-detail.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .section-fade { height: 50px; }
  .quote-card { padding: 32px 24px; }
  .quote-price-row { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .quote-divider { width: 100%; height: 1px; }
  .quote-price { font-size: 3rem; }
  .quote-actions { flex-direction: column; }
  .quote-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .pricing-duo { grid-template-columns: 1fr; }
}

/* ===== CHATBOT ===== */
#chatbot-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  font-family: 'Inter', sans-serif;
}
.chatbot-toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--blue); color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(21, 96, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  position: relative;
}
.chatbot-toggle:hover {
  transform: scale(1.05); box-shadow: 0 6px 25px rgba(21, 96, 255, 0.5);
}
.chatbot-toggle svg { width: 28px; height: 28px; transition: transform 0.3s ease, opacity 0.3s ease; }
.chatbot-toggle .icon-close { position: absolute; opacity: 0; transform: scale(0.5) rotate(-90deg); }
.chatbot-toggle.open .icon-chat { opacity: 0; transform: scale(0.5) rotate(90deg); }
.chatbot-toggle.open .icon-close { opacity: 1; transform: scale(1) rotate(0deg); }
.chatbot-pulse {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%; background: var(--blue); z-index: -1;
  animation: chatPulse 2s infinite;
}
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.chatbot-window {
  position: absolute; bottom: 80px; right: 0;
  width: 360px; max-width: calc(100vw - 48px);
  background: var(--white); border-radius: 20px;
  box-shadow: 0 10px 40px rgba(6,43,120,0.15);
  overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(0.95); transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-200);
}
.chatbot-window.open {
  opacity: 1; pointer-events: all; transform: translateY(0) scale(1);
}
.chatbot-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white); padding: 20px; display: flex; align-items: center; gap: 12px;
}
.chatbot-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
}
.chatbot-avatar svg { width: 20px; height: 20px; }
.chatbot-title h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 2px; color: var(--white); }
.chatbot-title span { font-size: 0.8rem; opacity: 0.8; display: flex; align-items: center; gap: 4px; }
.chatbot-status-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; }

.chatbot-messages {
  height: 320px; padding: 20px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 16px; background: var(--gray-50);
}
.chat-msg {
  display: flex; flex-direction: column; max-width: 85%;
  animation: msgFadeIn 0.3s ease forwards;
}
@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble {
  padding: 12px 16px; border-radius: 16px; font-size: 0.95rem; line-height: 1.5;
}
.bot .chat-bubble {
  background: var(--white); color: var(--gray-800);
  border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
}
.user .chat-bubble {
  background: var(--blue); color: var(--white); border-bottom-right-radius: 4px;
}
.chat-time {
  font-size: 0.75rem; color: var(--gray-400); margin-top: 4px; align-self: flex-end;
}
.bot .chat-time { align-self: flex-start; }

.chatbot-input {
  padding: 16px; background: var(--white); border-top: 1px solid var(--gray-200);
  display: flex; gap: 8px; align-items: center;
}
.chatbot-input input {
  flex: 1; border: none; background: var(--gray-100);
  padding: 12px 16px; border-radius: 24px; font-size: 0.95rem;
  font-family: inherit; outline: none; transition: background 0.2s;
}
.chatbot-input input:focus { background: var(--gray-200); }
.chatbot-send {
  background: var(--blue); color: var(--white); border: none;
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.chatbot-send:hover { transform: scale(1.1); background: #0d4fd4; }
.chatbot-send svg { width: 18px; height: 18px; transform: translateX(1px); }

.chat-typing {
  display: flex; gap: 4px; padding: 12px 16px;
  background: var(--white); border-radius: 16px; border-bottom-left-radius: 4px;
  width: fit-content; border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.typing-dot {
  width: 6px; height: 6px; background: var(--gray-400); border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@media (max-width: 480px) {
  .chatbot-window {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%; max-width: none; border-radius: 0;
    transform: translateY(100%);
  }
  .chatbot-messages { flex: 1; height: auto; }
  #chatbot-container.mobile-open .chatbot-toggle { display: none; }
}
