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

:root {
  /* Corporate Blue - Primary (Trust, Stability) */
  --blue-900: #0A1628;
  --blue-800: #0F2440;
  --blue-700: #163560;
  --blue-600: #1E4D8C;
  --blue-500: #2563A8;
  --blue-400: #3B82C4;
  --blue-300: #6BA3D6;
  --blue-200: #A3C8E8;
  --blue-100: #DCEAF7;
  --blue-50: #F0F6FC;

  /* Burnt Orange - Accent (Energy, CTA, Construction) */
  --orange-700: #9A3A0A;
  --orange-600: #C4500F;
  --orange-500: #D96A1C;
  --orange-400: #E8832E;
  --orange-300: #F0A05A;
  --orange-200: #F7C798;
  --orange-100: #FDE8D0;
  --orange-50: #FFF5EC;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFB;
  --gray-100: #F1F4F6;
  --gray-200: #E2E7EB;
  --gray-300: #CDD4DA;
  --gray-400: #94A3B2;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --charcoal: #0F172A;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.1);
  --shadow-xl: 0 24px 48px rgba(10, 22, 40, 0.12);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--gray-700); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 28px; width: 100%; }

/* ===== HEADER ===== */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all var(--transition); }
.hdr.scrolled { background: rgba(10, 22, 40, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 2px 24px rgba(0,0,0,0.15); }
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.logo { display: flex; align-items: center; gap: 12px; z-index: 101; }
.logo-img { height: 65px; width: auto; }
.logo-txt .brand { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.2px; display: block; line-height: 1.1; }
.logo-txt .sub { font-size: 0.62rem; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 14px; font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.75); border-radius: var(--radius-sm); transition: all var(--transition); }
.nav a:hover, .nav a.on { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-btn { margin-left: 12px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); position: relative; overflow: hidden; }
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-orange { background: linear-gradient(135deg, var(--orange-600), var(--orange-500)); color: var(--white); box-shadow: 0 4px 16px rgba(196,80,15,0.35); }
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,80,15,0.45); }

.btn-blue { background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); color: var(--white); box-shadow: 0 4px 16px rgba(10,22,40,0.25); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,22,40,0.35); }

.btn-outline-w { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-w:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

.btn-outline-blue { background: transparent; color: var(--blue-700); border: 1.5px solid var(--blue-200); }
.btn-outline-blue:hover { background: var(--blue-50); border-color: var(--blue-400); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--orange-600); border: 1.5px solid var(--gray-200); }
.btn-ghost:hover { border-color: var(--orange-500); transform: translateY(-2px); }

/* Mobile toggle */
.mob-tog { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
.mob-tog span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.mob-tog.on span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mob-tog.on span:nth-child(2) { opacity: 0; }
.mob-tog.on span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(140deg, rgba(10,22,40,0.96) 0%, rgba(15,36,64,0.88) 35%, rgba(196,80,15,0.25) 100%); }

.hero .wrap { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding-top: 80px; gap: 60px; }
.hero-txt { max-width: 640px; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px; background: rgba(217,106,28,0.12); border: 1px solid rgba(217,106,28,0.22); border-radius: 100px; color: var(--orange-300); font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; animation: fadeUp .7s ease both; }
.hero-badge .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-400); animation: pulseD 2s infinite; }
@keyframes pulseD { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero-txt h1 { font-family: var(--font-heading); font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 22px; animation: fadeUp .7s ease .12s both; }
.hero-txt h1 em { font-style: normal; color: var(--orange-300); }
.hero-txt p { font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 480px; margin-bottom: 36px; animation: fadeUp .7s ease .24s both; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s ease .36s both; }

.hero-card { width: 420px; flex-shrink: 0; background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 28px; animation: fadeUp .7s ease .48s both; }
.hero-card h3 { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-300); margin-bottom: 20px; }
.hc-stat { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hc-stat:last-child { border: none; padding-bottom: 0; }
.hc-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; min-width: 72px; }
.hc-num span { color: var(--orange-400); }
.hc-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.45); letter-spacing: .5px; }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.35); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; }
.scroll-bar { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); position: relative; overflow: hidden; }
.scroll-bar::after { content: ''; position: absolute; top: -40px; width: 100%; height: 40px; background: linear-gradient(to bottom, transparent, var(--orange-400)); animation: scrollD 2s infinite; }
@keyframes scrollD { to { transform: translateY(80px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION COMMON ===== */
.sec { padding: 100px 0; }
.sec-lbl { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px; }
.sec-lbl::before { content: ''; width: 36px; height: 2px; background: var(--orange-500); }
.sec-ttl { font-family: var(--font-heading); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--blue-900); line-height: 1.15; margin-bottom: 16px; }
.sec-sub { font-size: 1.05rem; color: var(--gray-500); max-width: 560px; line-height: 1.75; }
.centered { text-align: center; }
.centered .sec-sub { margin: 0 auto; }
.centered .sec-lbl { justify-content: center; }

/* ===== VALUE PROPOSITIONS ===== */
.vp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.vp { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-100); transition: all var(--transition); }
.vp:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.vp-ic { width: 64px; height: 64px; border-radius: var(--radius-md); background: var(--blue-50); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: all var(--transition); }
.vp:hover .vp-ic { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); }
.vp-ic svg { width: 28px; height: 28px; stroke: var(--blue-600); fill: none; stroke-width: 1.5; transition: stroke var(--transition); }
.vp:hover .vp-ic svg { stroke: var(--white); }
.vp h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.vp p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; }

/* ===== SERVICES CARDS ===== */
.srv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.srv { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--gray-100); transition: all var(--transition); position: relative; overflow: hidden; }
.srv::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-600), var(--orange-500)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.srv:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.srv:hover::before { transform: scaleX(1); }
.srv-ic { width: 56px; height: 56px; border-radius: var(--radius-md); background: var(--blue-50); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: all var(--transition); }
.srv:hover .srv-ic { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); }
.srv-ic svg { width: 26px; height: 26px; stroke: var(--blue-600); fill: none; stroke-width: 1.5; transition: stroke var(--transition); }
.srv:hover .srv-ic svg { stroke: var(--white); }
.srv h3 { font-family: var(--font-heading); font-size: 1.12rem; font-weight: 700; color: var(--blue-900); margin-bottom: 10px; }
.srv p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }
.srv-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 18px; font-size: 0.85rem; font-weight: 600; color: var(--orange-600); transition: gap var(--transition); }
.srv:hover .srv-link { gap: 10px; }
.srv-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== ABOUT SPLIT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-accent { position: absolute; bottom: -16px; right: -16px; width: 140px; height: 140px; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); padding: 16px; box-shadow: var(--shadow-lg); }
.about-accent .num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; line-height: 1; }
.about-accent .lbl { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; opacity: 0.9; }
.about-content p { color: var(--gray-500); line-height: 1.8; margin-bottom: 14px; }

.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 32px; }
.val { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; font-weight: 500; color: var(--blue-900); }
.val .ck { width: 20px; height: 20px; border-radius: 50%; background: var(--orange-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.val .ck svg { width: 11px; height: 11px; stroke: var(--orange-600); fill: none; stroke-width: 3; }

/* ===== STATS ===== */
.stats { padding: 56px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.st-num { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; color: var(--blue-900); line-height: 1; }
.st-num span { color: var(--orange-500); }
.st-lbl { font-size: 0.82rem; color: var(--gray-400); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ===== PROCESS / HOW IT WORKS ===== */
.proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; margin-top: 48px; }
.proc { text-align: center; padding: 28px 20px; }
.proc-n { width: 60px; height: 60px; border-radius: 50%; background: var(--blue-50); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--blue-600); margin: 0 auto 18px; transition: all var(--transition); }
.proc:hover .proc-n { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); color: var(--white); transform: scale(1.1); box-shadow: 0 8px 24px rgba(30,77,140,0.3); }
.proc h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.proc p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

/* ===== BUILD NOW / CREDIT CTA ===== */
.credit-banner { padding: 100px 0; background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%); position: relative; overflow: hidden; }
.credit-banner::before { content: ''; position: absolute; top: -30%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(217,106,28,0.12), transparent 70%); }
.credit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.credit-inner h2 { font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 18px; }
.credit-inner h2 em { font-style: normal; color: var(--orange-300); }
.credit-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }
.credit-features { display: flex; flex-direction: column; gap: 18px; }
.credit-feat { display: flex; align-items: center; gap: 14px; }
.credit-feat .cf-ic { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(217,106,28,0.12); border: 1px solid rgba(217,106,28,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.credit-feat .cf-ic svg { width: 20px; height: 20px; stroke: var(--orange-400); fill: none; stroke-width: 2; }
.credit-feat h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.credit-feat span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ===== PROJECTS ===== */
.proj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 24px; margin-top: 48px; }
.proj { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.proj:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.proj-img { position: relative; overflow: hidden; height: 250px; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.proj:hover .proj-img img { transform: scale(1.05); }
.proj-tag { position: absolute; top: 14px; left: 14px; padding: 5px 12px; background: rgba(10,22,40,0.75); backdrop-filter: blur(10px); color: var(--white); font-size: 0.72rem; font-weight: 600; border-radius: 100px; letter-spacing: .5px; text-transform: uppercase; }
.proj-info { padding: 22px 24px; }
.proj-info h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 6px; }
.proj-info p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ===== GALLERY GRID ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gi-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 50%); opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .gi-ov { opacity: 1; }
.gallery-item .gi-ov span { color: var(--white); font-weight: 600; font-size: 0.9rem; }

/* ===== HOUSE PACKAGES ===== */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 28px; margin-top: 48px; }
.pkg { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--gray-100); transition: all var(--transition); }
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.pkg-img { height: 260px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg:hover .pkg-img img { transform: scale(1.05); }
.pkg-body { padding: 28px; }
.pkg-body h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.pkg-body p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 18px; }
.pkg-specs { display: flex; gap: 20px; margin-bottom: 22px; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.pkg-spec { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--gray-600); }
.pkg-spec svg { width: 16px; height: 16px; stroke: var(--blue-500); fill: none; stroke-width: 2; }

/* ===== TESTIMONIALS ===== */
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; margin-top: 48px; }
.test { padding: 32px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-100); transition: all var(--transition); }
.test:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.test-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.test-stars svg { width: 15px; height: 15px; fill: var(--orange-400); }
.test blockquote { font-size: 0.92rem; color: var(--gray-600); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.test-who { display: flex; align-items: center; gap: 10px; }
.test-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-100), var(--gray-100)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--blue-600); }
.test-who .nm { font-family: var(--font-heading); font-weight: 600; color: var(--blue-900); font-size: 0.88rem; }
.test-who .rl { font-size: 0.78rem; color: var(--gray-400); }

/* ===== CTA ===== */
.cta { padding: 100px 0; background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -40%; right: -8%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(196,80,15,0.12), transparent 70%); }
.cta::after { content: ''; position: absolute; bottom: -30%; left: -5%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(217,106,28,0.08), transparent 70%); }
.cta-inner { text-align: center; max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }
.cta h2 { font-family: var(--font-heading); font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.cta p { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 32px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== INQUIRY FORM ===== */
.form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-wrap h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--blue-900); margin-bottom: 6px; }
.form-wrap .form-sub { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-800); transition: border-color var(--transition); background: var(--gray-50); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-400); background: var(--white); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== CONTACT CARDS ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.cc { display: flex; gap: 18px; padding: 24px; background: var(--gray-50); border-radius: var(--radius-md); border: 1px solid var(--gray-100); transition: all var(--transition); }
.cc:hover { border-color: var(--blue-200); box-shadow: var(--shadow-md); }
.cc-ic { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--blue-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-ic svg { width: 22px; height: 22px; stroke: var(--blue-600); fill: none; stroke-width: 1.5; }
.cc h4 { font-family: var(--font-heading); font-weight: 700; color: var(--blue-900); font-size: 0.95rem; margin-bottom: 4px; }
.cc p, .cc a { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }
.cc a:hover { color: var(--orange-600); }

/* ===== FOOTER ===== */
.ftr { background: var(--blue-900); color: rgba(255,255,255,0.55); padding: 72px 0 0; }
.ftr-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ftr-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.ftr-brand .logo { margin-bottom: 18px; }
.ftr-brand .logo-img { height: 44px; }
.ftr-soc { display: flex; gap: 10px; }
.ftr-soc a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.ftr-soc a:hover { background: var(--orange-600); border-color: var(--orange-600); transform: translateY(-2px); }
.ftr-soc a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }
.ftr-col h4 { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.ftr-col li { margin-bottom: 12px; }
.ftr-col li a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: all var(--transition); }
.ftr-col li a:hover { color: var(--orange-400); transform: translateX(3px); display: inline-block; }
.ftr-ct { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.ftr-ct svg { width: 16px; height: 16px; stroke: var(--orange-400); fill: none; stroke-width: 1.5; margin-top: 3px; flex-shrink: 0; }
.ftr-ct span { font-size: 0.88rem; }
.ftr-btm { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; }
.ftr-btm-links { display: flex; gap: 20px; }
.ftr-btm-links a:hover { color: var(--orange-400); }

/* ===== PAGE HEADER (Inner Pages) ===== */
.page-hdr { position: relative; padding: 160px 0 100px; background: var(--blue-900); overflow: hidden; }
.page-hdr-bg { position: absolute; inset: 0; opacity: 0.25; }
.page-hdr-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hdr .wrap { position: relative; z-index: 2; }
.page-hdr h1 { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.page-hdr p { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 600px; line-height: 1.7; }

.bc { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.bc a { transition: color var(--transition); }
.bc a:hover { color: var(--orange-400); }
.bc span { color: var(--orange-500); }

/* ===== FAQ ===== */
.faq-wrap { max-width: 840px; margin: 48px auto 0; }
.faq { border-bottom: 1px solid var(--gray-100); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--blue-900); transition: color var(--transition); }
.faq-btn:hover { color: var(--orange-600); }
.faq-btn svg { width: 22px; height: 22px; stroke: var(--gray-300); fill: none; stroke-width: 2.5; transition: all var(--transition); }
.faq.on .faq-btn { color: var(--orange-600); }
.faq.on .faq-btn svg { transform: rotate(45deg); stroke: var(--orange-500); }
.faq-ans { max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq.on .faq-ans { max-height: 300px; padding-bottom: 24px; }
.faq-ans p { color: var(--gray-500); font-size: 1rem; line-height: 1.8; }

/* ===== PRICING ===== */
.prc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-top: 56px; }
.prc { position: relative; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 48px 40px; backdrop-filter: blur(20px); transition: all var(--transition); }
.prc:hover { transform: translateY(-5px); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }
.prc.featured { background: rgba(196,80,15,0.08); border-color: rgba(196,80,15,0.2); }
.prc.featured:hover { background: rgba(196,80,15,0.12); }
.prc-tag { position: absolute; top: -1px; right: 32px; background: linear-gradient(135deg, var(--orange-600), var(--orange-400)); color: var(--white); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 8px 18px; border-radius: 0 0 10px 10px; }
.prc h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.prc .desc { font-size: 0.92rem; color: rgba(255,255,255,0.4); margin-bottom: 32px; min-height: 48px; }
.prc-feat { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.prc-f { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.prc-f svg { width: 18px; height: 18px; stroke: var(--orange-400); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.prc .btn { width: 100%; justify-content: center; }

/* ===== TEAM ===== */
.tm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.tm { text-align: center; transition: all var(--transition); }
.tm-img { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-50); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.tm-img .init { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--blue-200); }
.tm h4 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--blue-900); margin-bottom: 4px; }
.tm .rl { font-size: 0.85rem; font-weight: 600; color: var(--blue-600); text-transform: uppercase; letter-spacing: 1px; }

/* ===== CREDIT PAGE STEPS ===== */
.credit-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0; margin-top: 56px; position: relative; }
.credit-steps::before { content: ''; position: absolute; top: 34px; left: 10%; right: 10%; height: 2px; background: var(--blue-100); z-index: 0; }
.cs { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.cs-num { width: 68px; height: 68px; border-radius: 50%; background: var(--white); border: 3px solid var(--blue-200); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--blue-600); margin: 0 auto 20px; transition: all var(--transition); }
.cs:hover .cs-num { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); color: var(--white); border-color: var(--blue-500); transform: scale(1.1); }
.cs h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.cs p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; }

/* ===== WHATSAPP FAB ===== */
.wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all var(--transition); animation: waPulse 2s infinite; }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-fab svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); } }

/* ===== REVEAL ===== */
.rv { opacity: 0; transform: translateY(36px); transition: all .8s cubic-bezier(.16, 1, .3, 1); }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero .wrap { flex-direction: column; }
  .hero-card { max-width: 420px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .credit-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .credit-steps::before { display: none; }
}

@media(max-width:768px) {
  .nav, .nav-btn { display: none; }
  .mob-tog { display: flex; }

  /* Mobile nav overlay */
  .nav.on {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #0A1628;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    gap: 6px;
    padding: 80px 28px 40px;
  }
  .nav.on a {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 14px 28px;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .nav.on a:hover,
  .nav.on a.on {
    color: #fff;
    background: rgba(255,255,255,0.08);
  }
  /* CTA at bottom of mobile menu */
  .nav.on::after {
    content: 'Get a Quote →';
    display: block;
    margin-top: 20px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-align: center;
    max-width: 320px;
    width: 100%;
  }
  /* Keep hamburger above overlay */
  .mob-tog { z-index: 10000; }

  .hero .wrap { padding-top: 100px; }
  .hero-card { display: none; }
  .srv-grid, .proj-grid, .test-grid, .pkg-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .vp-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .ftr-grid { grid-template-columns: 1fr; gap: 32px; }
  .ftr-btm { flex-direction: column; gap: 10px; text-align: center; }
  .vals { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .credit-steps { gap: 32px; }
  .sec { padding: 64px 0; }
  .page-hdr { padding: 120px 0 60px; }
  .wa-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-fab svg { width: 26px; height: 26px; }
}

@media(max-width:480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .pkg-specs { flex-wrap: wrap; gap: 12px; }
}