*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--gray-700); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--charcoal); }
p { margin-bottom: 1rem; }
a { color: var(--ocean); text-decoration: none; transition: all 0.3s var(--ease); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 10vw, 120px) 0; }
.text-center { text-align: center; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--coral); margin-bottom: 16px; }
.section-label i { font-size: 0.65rem; }
.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; color: var(--charcoal); }
.section-subtitle { font-size: 1.1rem; color: var(--gray-500); max-width: 600px; margin: 0 auto 48px; font-weight: 300; line-height: 1.8; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; border-radius: 50px; border: 2px solid transparent; cursor: pointer; transition: all 0.4s var(--ease); text-decoration: none; position: relative; overflow: hidden; }
.btn i { transition: transform 0.3s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn-primary { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: var(--white); box-shadow: 0 4px 20px rgba(224,123,95,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(224,123,95,0.4); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--navy); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: all 0.4s var(--ease); border-bottom: 1px solid transparent; }
.header.scrolled { background: rgba(255,255,255,0.98); border-bottom-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1240px; margin: 0 auto; min-height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 50px; width: auto; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--navy); }
.logo-text span { color: var(--coral); }
.nav { display: none; }
.nav.active { height:350px; display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 24px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--gray-200); }
.nav-list { display: flex; flex-direction: column; gap: 8px; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: var(--gray-700); padding: 12px 16px; border-radius: 8px; transition: all 0.3s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--coral); background: var(--gray-100); }
.header-cta { display: none; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 10; }
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s var(--ease); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* PAGE HERO */
.page-hero { position: relative; padding: 160px 0 80px; background: linear-gradient(160deg, var(--navy) 0%, var(--charcoal) 50%, var(--navy-light) 100%); color: var(--white); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; opacity: 0.12; }
.page-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: linear-gradient(to top, var(--white), transparent); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.85rem; margin-bottom: 20px; opacity: 0.8; }
.breadcrumb a { color: var(--sand); }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; opacity: 0.9; font-weight: 300; }
.hero-decoration { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,110,0.15), transparent); pointer-events: none; }
.hero-decoration-1 { top: -100px; right: -100px; }
.hero-decoration-2 { bottom: -150px; left: -100px; }

/* HOME HERO */
.home-hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(160deg, var(--charcoal) 0%, var(--navy) 40%, var(--navy-light) 100%); color: var(--white); overflow: hidden; padding-top: 80px; }
.home-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url(../images/about-us.webp); background-size: cover; background-position: center; opacity: 0.2; }
.home-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, var(--white), transparent); }
.home-hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 640px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.3); padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--sand); margin-bottom: 28px; }
.hero-content h1 { color: var(--white); font-size: clamp(2.8rem, 5.5vw, 4.5rem); margin-bottom: 24px; line-height: 1.1; }
.hero-content h1 em { font-style: normal; background: linear-gradient(135deg, var(--gold), var(--sand)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { font-size: 1.15rem; opacity: 0.85; margin-bottom: 40px; line-height: 1.8; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; font-weight: 500; }



/* INTRO */
.intro-grid { display: grid; gap: 60px; align-items: center; }
.intro-content h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; }
.intro-content p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.8; }
.intro-image-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.intro-image-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.intro-image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,41,64,0.1), transparent); }
.experience-badge { position: absolute; bottom: 24px; left: 24px; background: var(--white); padding: 16px 24px; border-radius: var(--radius); box-shadow: var(--shadow-md); z-index: 2; }
.experience-badge strong { font-family: var(--font-display); font-size: 2rem; color: var(--coral); display: block; line-height: 1; }
.experience-badge span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); }

/* SERVICE CARDS (home) */
.services-grid { display: grid; gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.5s var(--ease); border: 1px solid var(--gray-200); position: relative; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-image { height: 220px; background-size: cover; background-position: center; position: relative; }
.service-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,41,64,0.6), transparent); }
.service-card-icon { position: absolute; bottom: -28px; left: 28px; width: 56px; height: 56px; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; z-index: 2; box-shadow: var(--shadow-md); }
.service-card-body { padding: 44px 28px 28px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.7; }
.service-link { font-weight: 600; font-size: 0.9rem; color: var(--coral); display: inline-flex; align-items: center; gap: 8px; }
.service-link:hover { color: var(--coral-dark); gap: 12px; }

/* PROCESS STEPS (home) */
.process-grid { display: grid; gap: 24px; }
.process-card { display: flex; gap: 20px; padding: 28px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all 0.4s var(--ease); }
.process-card:hover { border-color: var(--ocean-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-number { width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); font-size: 1.2rem; flex-shrink: 0; }
.process-card h4 { font-size: 1.15rem; margin-bottom: 6px; }
.process-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }

/* FEATURES */
.features-grid { display: grid; gap: 32px; }
.feature-card { text-align: center; padding: 40px 28px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all 0.4s var(--ease); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon { width: 76px; height: 76px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--sand-light), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.6rem; }
.feature-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; line-height: 1.7; }

/* CTA */
.cta-section { background: linear-gradient(160deg, var(--navy) 0%, var(--charcoal) 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; opacity: 0.1; }
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-section p { opacity: 0.85; margin-bottom: 36px; font-size: 1.1rem; font-weight: 300; }
.cta-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; max-width: 560px; margin: 0 auto; }
.cta-form input { flex: 1; min-width: 200px; padding: 14px 20px; border: none; border-radius: 50px; font-size: 0.95rem; font-family: var(--font-body); background: rgba(255,255,255,0.95); }
.cta-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(200,169,110,0.4); }

/* FOOTER */
.footer { background: var(--charcoal); color: var(--white); padding: 80px 0 24px; }
.footer-grid { display: grid; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: var(--sand); }
.footer-brand > p { opacity: 0.7; font-size: 0.9rem; margin-top: 16px; line-height: 1.7; max-width: 320px; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-links a { width: 42px; height: 42px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; transition: all 0.3s var(--ease); }
.social-links a:hover { background: var(--coral); transform: translateY(-3px); color: var(--white); }
.footer-links h4 { color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all 0.3s var(--ease); }
.footer-links a:hover { color: var(--sand); }
.footer-contact p { margin-bottom: 12px; font-size: 0.9rem; opacity: 0.7; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--coral); width: 18px; text-align: center; }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--sand); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.8rem; opacity: 0.5; }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--sand); }

/* ABOUT PAGE */
.story-grid { display: grid; gap: 60px; align-items: center; }
.story-image-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.story-image-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.stat-box { background: var(--light-bg); padding: 20px; border-radius: var(--radius); text-align: center; }
.stat-box strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--coral); display: block; line-height: 1; margin-bottom: 4px; }
.stat-box span { font-size: 0.8rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.mv-grid { display: grid; gap: 24px; }
.mv-card { background: var(--white); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border-left: 5px solid var(--coral); transition: all 0.4s var(--ease); }
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.mv-card p { color: var(--gray-500); margin-bottom: 0; line-height: 1.8; }
.values-grid { display: grid; gap: 24px; }
.value-card { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all 0.4s var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon { width: 72px; height: 72px; margin: 0 auto 16px; background: linear-gradient(135deg, var(--sand-light), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.5rem; }
.value-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
.team-grid { display: grid; gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all 0.4s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-image { height: 280px; background-size: cover; background-position: center top; }
.team-info { padding: 24px; }
.team-info h4 { font-size: 1.2rem; margin-bottom: 4px; }
.team-role { color: var(--ocean); font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; }
.team-bio { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
.features-list { display: grid; gap: 16px; }
.feature-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all 0.3s var(--ease); }
.feature-row:hover { border-color: var(--ocean-light); box-shadow: var(--shadow-md); }
.feature-row-icon { width: 44px; height: 44px; background: var(--navy); color: var(--white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.feature-row h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.feature-row p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 0; }

/* SERVICES PAGE (detailed) */
.service-detail-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); display: flex; flex-direction: column; transition: all 0.4s var(--ease); }
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.service-detail-header { padding: 32px; color: var(--white); display: flex; align-items: center; gap: 20px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.service-detail-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.service-detail-header h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0; }
.service-detail-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-detail-body > p { color: var(--gray-500); line-height: 1.8; }
.service-features { margin-bottom: 24px; flex: 1; }
.service-features li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: var(--gray-700); }
.service-features li i { color: var(--coral); margin-top: 4px; font-size: 0.75rem; }
.service-detail-footer { padding-top: 20px; border-top: 1px solid var(--gray-200); display: flex; gap: 12px; flex-wrap: wrap; }
.approach-grid { display: grid; gap: 24px; }
.approach-card { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num { width: 48px; height: 48px; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); font-size: 1.2rem; flex-shrink: 0; }
.approach-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.approach-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; font-size: 1rem; font-weight: 600; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; text-align: left; font-family: var(--font-body); transition: color 0.3s; gap: 16px; }
.faq-question:hover { color: var(--ocean); }
.faq-question i { transition: transform 0.3s var(--ease); color: var(--coral); font-size: 0.85rem; flex-shrink: 0; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding-bottom: 20px; font-size: 0.95rem; color: var(--gray-500); margin-bottom: 0; line-height: 1.8; }

/* PROCESS PAGE TIMELINE */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding-left: 48px; }
.timeline-line { position: absolute; left: 23px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--coral), var(--ocean), var(--navy)); }
.timeline-step { position: relative; padding-bottom: 48px; padding-left: 32px; opacity: 0; transform: translateY(30px); transition: all 0.6s var(--ease); }
.timeline-step.visible { opacity: 1; transform: translateY(0); }
.timeline-step:last-child { padding-bottom: 0; }
.step-marker { position: absolute; left: -48px; top: 0; width: 48px; height: 48px; background: var(--white); border: 3px solid var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); color: var(--navy); z-index: 1; transition: all 0.4s var(--ease); }
.timeline-step.visible .step-marker { background: var(--navy); color: var(--white); }
.step-content { background: var(--white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all 0.4s var(--ease); }
.timeline-step:hover .step-content { box-shadow: var(--shadow-md); border-color: var(--ocean-light); }
.step-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.step-title { font-size: 1.25rem; margin-bottom: 0; }
.step-duration { background: var(--light-bg); padding: 4px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--ocean); white-space: nowrap; }
.step-description { color: var(--gray-500); margin-bottom: 16px; line-height: 1.7; }
.step-deliverables { background: var(--light-bg); padding: 20px; border-radius: var(--radius); }
.step-deliverables h4 { font-size: 0.75rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 10px; }
.step-deliverables li { font-size: 0.9rem; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; color: var(--gray-700); }
.step-deliverables li i { color: var(--coral); font-size: 0.7rem; }
.transparency-box { background: linear-gradient(135deg, var(--navy), var(--ocean)); color: var(--white); padding: 48px; border-radius: var(--radius-xl); margin-top: 64px; }
.transparency-box h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 28px; }
.transparency-grid { display: grid; gap: 24px; }
.transparency-item { display: flex; gap: 16px; align-items: flex-start; }
.transparency-item-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.transparency-item h4 { color: var(--white); font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.transparency-item p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 0; }

/* CONTACT PAGE */
.contact-grid { display: grid; gap: 48px; }
.contact-form-wrap { background: var(--white); padding: 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-body); transition: border-color 0.3s; background: var(--off-white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--ocean); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; gap: 16px; }
.contact-info-cards { display: grid; gap: 16px; }
.contact-info-card { display: flex; gap: 16px; padding: 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all 0.3s var(--ease); }
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-info-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; flex-shrink: 0; }
.contact-info-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
.contact-info-card a { color: var(--ocean); }
.map-wrap { margin-top: 24px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 280px; background: var(--gray-200); display: flex; align-items: center; justify-content: center; color: var(--gray-500); font-size: 1rem; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 768px) {
.trust-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
}
/* RESPONSIVE */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav { display: flex !important; position: static; background: none; padding: 0; box-shadow: none; border: none; flex-direction: row; }
  .nav-list { flex-direction: row; gap: 8px; }
  .header-cta { display: inline-flex; }
  .trust-list { grid-template-columns: repeat(4, 1fr); }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(3, 1fr); }
  .transparency-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .page-hero { padding: 180px 0 100px; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { padding-left: 64px; }
  .timeline-line { left: 31px; }
  .step-marker { left: -64px; width: 56px; height: 56px; font-size: 1.15rem; }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { opacity: 0; transform: translateY(30px); transition: all 0.6s var(--ease); }
.animate-in.visible { opacity: 1; transform: translateY(0); }
/* --- Desktop: Make dropdown appear above invisible gap --- */
nav ul li {
  position: relative;
}

nav ul li ul,
nav ul li .dropdown,
nav ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;                         /* must be high — sits above everything */
  min-width: 200px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  border-radius: 6px;
  padding: 6px 0;
  list-style: none;
  margin: 0;                             /* removes any top margin that creates a gap */
}

/* THE KEY FIX: invisible gap between trigger and dropdown
   causes mouseout before the user reaches the menu */
nav ul li:hover > ul,
nav ul li:hover > .dropdown,
nav ul li:hover > .sub-menu,
nav ul li.open > ul,
nav ul li.open > .dropdown,
nav ul li.open > .sub-menu {
  display: block;
}

/* Bridge the gap — pseudo-element fills space between link and dropdown */
nav ul li > a::after {
  content: '';
  position: absolute;
  bottom: -10px;                         /* matches any gap between link and menu */
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}

nav ul li ul li a,
nav ul li .dropdown a,
nav ul li .sub-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
}

nav ul li ul li a:hover,
nav ul li .dropdown a:hover,
nav ul li .sub-menu a:hover {
  background: #f5f5f5;
  color: #c0522a;                        /* matches your brand orange */
}

/* --- Mobile: hamburger toggle fix --- */
@media (max-width: 768px) {

  /* Hide desktop nav by default on mobile */
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 5%;
    left: 0;
    z-index: 9999;
    border-top: 1px solid #e5e5e5;
    padding: 0;
    margin: 0;
  }

  /* When hamburger is clicked, JS adds .open or .active to nav or nav ul */
  nav.open ul,
  nav ul.open,
  nav ul.active,
  .nav-open nav ul {
    display: flex !important;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  nav ul li a {
    display: block;
    padding: 14px 20px;
  }

  /* Mobile sub-menu: tap to toggle */
  nav ul li ul,
  nav ul li .dropdown,
  nav ul li .sub-menu {
    position: static;                    /* not absolute on mobile */
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding-left: 16px;
    display: none;
  }

  nav ul li.open > ul,
  nav ul li.open > .dropdown,
  nav ul li.open > .sub-menu {
    display: block !important;
  }
}

    /* ===== DESIGN TOKENS ===== */
    :root {
      --color-navy: #1E3A5F;
      --color-charcoal: #2C3E50;
      --color-sand: #C9B99A;
      --color-ocean: #5B8A9E;
      --color-gold: #B8956A;
      --color-coral: #D4846A;
      --color-white: #FFFFFF;
      --color-light-gray: #F5F7FA;
      --color-medium-gray: #E2E8F0;
      --color-dark-gray: #4A5568;
      
      --font-heading: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
      
      --text-h1: clamp(2.5rem, 5vw, 3.5rem);
      --text-h2: clamp(2rem, 4vw, 2.5rem);
      --text-h3: clamp(1.5rem, 3vw, 1.75rem);
      --text-body: 1rem;
      --text-sm: 0.875rem;
      
      --space-xs: 0.5rem;
      --space-s: 1rem;
      --space-m: 1.5rem;
      --space-l: 2rem;
      --space-xl: 3rem;
      --space-xxl: 4rem;
      --space-section: clamp(4rem, 8vw, 6rem);
      
      --radius-sm: 0.5rem;
      --radius-md: 0.75rem;
      --radius-lg: 1rem;
      
      --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
      --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
      
      --container-max: 1200px;
      --transition: all 0.3s ease;
    }
    

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    html { scroll-behavior: smooth; }
    
    body {
      font-family: var(--font-body);
      font-size: var(--text-body);
      line-height: 1.6;
      color: var(--color-dark-gray);
      background: var(--color-white);
      -webkit-font-smoothing: antialiased;
    }
    /* =====================================================
   NST Developers — Responsive Fix
   Add this inside <style> in your HTML or link as a
   separate stylesheet AFTER your main styles.css
   ===================================================== */

/* ---------- Navbar ---------- */
@media (max-width: 768px) {
  nav,
  .navbar,
  header nav {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }

  .nav-links,
  nav ul {
    display: none;           /* show via JS toggle */
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-links.open,
  nav ul.open {
    display: flex;
  }

  .nav-links a,
  nav ul li a {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: block;
  }

  .btn-consultation,
  a.free-consultation,
  header .cta-btn {
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
    border-radius: 6px;
  }

  /* Hamburger button — add this element if not present */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a2b4b;
    border-radius: 2px;
  }
}

/* ---------- Hero Section ---------- */
@media (max-width: 768px) {
  .hero,
  .hero-section,
  section.hero {
    padding: 3rem 1.25rem 2.5rem;
    text-align: center;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
    line-height: 1.25;
  }

  .hero p,
  .hero-subtitle {
    font-size: 1rem;
    margin: 0.75rem auto 1.5rem;
    max-width: 90%;
  }

  .hero-buttons,
  .hero .cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-buttons a,
  .hero .cta-group a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-badges,
  .trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}

/* ---------- Services Grid (Expertise Section) ---------- */
@media (max-width: 900px) {
  .services-grid,
  .expertise-grid,
  .cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}

@media (max-width: 540px) {
  .services-grid,
  .expertise-grid,
  .cards-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== PROCESS SECTION FIX ===== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.process-step {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
}

/* Number Badge */
.process-number {
  min-width: 50px;
  height: 50px;
  background: #dc2626; /* your red theme */
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.process-content h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.process-content p {
  font-size: 14px;
  color: #555;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 15px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ---------- Why Partner Section ---------- */
@media (max-width: 768px) {
  .why-grid,
  .benefits-grid,
  section[class*="why"] > div {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
}

/* ---------- Footer ---------- */
@media (max-width: 768px) {
  footer .footer-grid,
  footer > div,
  .footer-columns {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 2rem;
  }

  footer {
    padding: 2rem 1.25rem;
  }
}

/* ---------- Global Utilities ---------- */
@media (max-width: 768px) {
  /* Prevent any element from overflowing horizontally */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  /* Section padding */
  section {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Section headings */
  h2 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }

  h3 {
    font-size: clamp(1rem, 4vw, 1.3rem) !important;
  }

  /* Images */
  img {
    max-width: 100%;
    height: auto;
  }
}

    h1, h2, h3, h4 {
      font-family: var(--font-heading);
      font-weight: 600;
      line-height: 1.2;
      color: var(--color-charcoal);
      margin-bottom: var(--space-m);
    }

    p { margin-bottom: var(--space-m); }

    a {
      color: var(--color-ocean);
      text-decoration: none;
      transition: var(--transition);
    }

    a:hover { color: var(--color-navy); }

    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--space-l);
    }

    .section { padding: var(--space-section) 0; }

    .section-light { background: var(--color-light-gray); }

    .text-center { text-align: center; }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-s) var(--space-l);
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: var(--text-body);
      border-radius: var(--radius-sm);
      border: 2px solid transparent;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      min-height: 48px;
    }

    .btn-primary {
      background: var(--color-coral);
      color: var(--color-white);
    }

    .btn-primary:hover {
      background: #c4735a;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(212, 132, 106, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: var(--color-white);
      border-color: var(--color-white);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .btn-outline {
      background: transparent;
      color: var(--color-navy);
      border-color: var(--color-navy);
    }

    .btn-outline:hover {
      background: var(--color-navy);
      color: var(--color-white);
    }

    /* ===== HEADER ===== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--space-s) var(--space-l);
      min-height: 72px;
      position: relative;
    }

    .logo {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--color-navy);
      text-decoration: none;
      line-height: 1.1;
      flex-shrink: 0;
      height: 60px;
    }
    .logo img{
      height: 52px;
    }

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

    /* --- Hamburger toggle (mobile only) --- */
    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: var(--space-xs);
      z-index: 1100;
    }

    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--color-charcoal);
      border-radius: 2px;
      transition: var(--transition);
      transform-origin: center;
    }

    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* --- NAV (mobile: overlay drawer) --- */
    .nav {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--color-white);
      padding: var(--space-l) var(--space-l);
      overflow-y: auto;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
      z-index: 999;
    }

    .nav.active { display: block; }

    .nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Mobile nav items */
    .nav-list > li,
    .nav-list > div { border-bottom: 1px solid var(--color-medium-gray); }

    .nav-list a {
      display: block;
      font-weight: 500;
      font-size: 1rem;
      color: var(--color-charcoal);
      padding: 14px 0;
      transition: var(--transition);
    }

    .nav-list a:hover, .nav-list a.active { color: var(--color-coral); }

    /* Mobile dropdown */
    .dropdown { position: relative; }

    .dropdown > a { cursor: pointer; }

    .dropdown-menu {
      display: none;
      padding-left: var(--space-m);
      background: var(--color-light-gray);
      border-radius: var(--radius-sm);
      margin-bottom: var(--space-xs);
    }

    .dropdown-menu a {
      font-size: 0.9rem;
      padding: 10px 0;
      color: var(--color-dark-gray);
    }

    .dropdown-menu a:hover { color: var(--color-coral); }

    .dropdown.open .dropdown-menu { display: block; }

    /* Mobile nested sub */
    .dropdown-sub { position: relative; }

    .dropdown-submenu {
      display: none;
      padding-left: var(--space-m);
    }

    .dropdown-sub.open .dropdown-submenu { display: block; }

    .dropdown-submenu a { font-size: 0.85rem; }

    .header-cta { display: none; }

    /* ===== DESKTOP NAV (768px+) ===== */
    @media (min-width: 768px) {
      .nav-toggle { display: none; }

      .nav {
        display: flex !important;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        background: none;
        padding: 0;
        box-shadow: none;
        overflow: visible;
        align-items: center;
      }

      .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 0;
      }

      .nav-list > li,
      .nav-list > div {
        border-bottom: none;
        position: relative;
      }

      .nav-list a {
        padding: 8px 14px;
        font-size: 0.9rem;
        white-space: nowrap;
      }

      /* Desktop dropdown */
      .dropdown { position: relative; }

      .dropdown > a { display: flex; align-items: center; gap: 4px; }

      .dropdown-menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 190px;
        background: var(--color-white);
        border-radius: var(--radius-md);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        padding: var(--space-xs) 0;
        z-index: 2000;
        border: 1px solid var(--color-medium-gray);
        margin-bottom: 0;
      }

      .dropdown-menu a {
        padding: 10px 18px;
        font-size: 0.875rem;
        display: block;
        border-bottom: none;
      }

      .dropdown:hover .dropdown-menu { display: block; }

      /* Desktop nested sub */
      .dropdown-sub { position: relative; }

      .dropdown-submenu {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        min-width: 170px;
        background: var(--color-white);
        border-radius: var(--radius-md);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        padding: var(--space-xs) 0;
        border: 1px solid var(--color-medium-gray);
        padding-left: 0;
        margin-bottom: 0;
      }

      .dropdown-submenu a { padding: 10px 18px; }

      .dropdown-sub:hover .dropdown-submenu { display: block; }

      .dropdown.open .dropdown-menu { display: block; }
      .dropdown-sub.open .dropdown-submenu { display: block; }

      .header-cta { display: inline-flex; }
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-charcoal) 100%);
      color: var(--color-white);
      padding-top: 72px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
background-image: url('/images/nst-property-developers-1.webp');
      background-size: cover;
      background-position: center;
      opacity: 0.25;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: var(--space-xl) var(--space-l);
    }

    .hero h1 {
      color: var(--color-white);
      margin-bottom: var(--space-m);
      font-size: var(--text-h1);
    }

    .hero p {
      font-size: var(--text-body);
      margin-bottom: var(--space-xl);
      opacity: 0.95;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-cta-group {
      display: flex;
      flex-direction: column;
      gap: var(--space-s);
      align-items: center;
    }

    /* ===== TRUST BADGES ===== */
    .trust-bar {
      background: var(--color-white);
      padding: var(--space-l) 0;
      border-bottom: 1px solid var(--color-medium-gray);
    }

    .trust-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-m);
      list-style: none;
    }

    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-xs);
      padding: var(--space-m);
      background: var(--color-navy);
      color: var(--color-white);
      border-radius: var(--radius-md);
      transition: var(--transition);
    }

    .trust-item:nth-child(3) {
      background: var(--color-sand);
      color: var(--color-charcoal);
    }

    .trust-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }

    .trust-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
    }

    .trust-text {
      font-weight: 500;
      font-size: var(--text-sm);
      text-align: center;
    }

    /* ===== INTRODUCTION SECTION ===== */
    .intro-grid {
      display: grid;
      gap: var(--space-xl);
      align-items: center;
    }

    .intro-content h2 {
      font-size: var(--text-h2);
      margin-bottom: var(--space-m);
    }

    .intro-content p {
      margin-bottom: var(--space-m);
      color: var(--color-dark-gray);
    }

    .intro-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card-hover);
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--color-sand), var(--color-ocean));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-navy);
      font-weight: 600;
      font-size: var(--text-h3);
    }

    /* ===== SERVICES SECTION ===== */
    .section-header {
      text-align: center;
      margin-bottom: var(--space-xl);
    }

    .section-header h2 {
      font-size: var(--text-h2);
      margin-bottom: var(--space-s);
    }

    .section-header p {
      max-width: 600px;
      margin: 0 auto;
      color: var(--color-dark-gray);
    }

    .services-grid {
      display: grid;
      gap: var(--space-l);
    }

    .service-card {
      background: var(--color-white);
      border-radius: var(--radius-md);
      padding: var(--space-l);
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      border: 1px solid var(--color-medium-gray);
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-card-hover);
    }

    .service-icon {
      width: 64px;
      height: 64px;
      background: var(--color-light-gray);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-m);
      color: var(--color-navy);
      font-size: 2rem;
    }

    .service-card h3 {
      margin-bottom: var(--space-s);
      font-size: var(--text-h3);
    }

    .service-card p {
      margin-bottom: var(--space-m);
      font-size: var(--text-sm);
      color: var(--color-dark-gray);
    }

    .service-link {
      font-weight: 600;
      font-size: var(--text-sm);
      color: var(--color-ocean);
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
    }

    .service-link:hover {
      color: var(--color-navy);
      gap: var(--space-s);
    }

    /* ===== PROCESS SECTION ===== */
    .process-steps {
      display: grid;
      gap: var(--space-l);
      counter-reset: step;
    }

    .process-step {
      display: flex;
      gap: var(--space-m);
      align-items: flex-start;
      padding: var(--space-l);
      background: var(--color-white);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-card);
    }

    .process-number {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: var(--color-navy);
      color: var(--color-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-family: var(--font-heading);
      font-size: 1.25rem;
    }

    .process-content h4 {
      margin-bottom: var(--space-xs);
      font-size: var(--text-h3);
    }

    .process-content p {
      margin-bottom: 0;
      font-size: var(--text-sm);
      color: var(--color-dark-gray);
    }

    /* ===== WHY CHOOSE US ===== */
    .features-grid {
      display: grid;
      gap: var(--space-l);
    }

    .feature-item {
      text-align: center;
      padding: var(--space-l);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto var(--space-m);
      background: linear-gradient(135deg, var(--color-sand), var(--color-gold));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-navy);
      font-size: 2rem;
    }

    .feature-item h4 {
      margin-bottom: var(--space-s);
      font-size: var(--text-h3);
    }

    .feature-item p {
      margin-bottom: 0;
      font-size: var(--text-sm);
      color: var(--color-dark-gray);
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-charcoal) 100%);
      color: var(--color-white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
background-image: url('/images/nst-property-developers-7.webp');      background-size: cover;
      background-position: center;
      opacity: 0.15;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-section h2 {
      color: var(--color-white);
      font-size: var(--text-h2);
      margin-bottom: var(--space-s);
    }

    .cta-section p {
      opacity: 0.9;
      margin-bottom: var(--space-xl);
    }

    .cta-form {
      display: flex;
      gap: var(--space-s);
      flex-wrap: wrap;
      justify-content: center;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-form input {
      flex: 1;
      min-width: 250px;
      padding: var(--space-s) var(--space-m);
      border: none;
      border-radius: var(--radius-sm);
      font-size: var(--text-body);
      font-family: var(--font-body);
    }

    .cta-form input:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--color-charcoal);
      color: var(--color-white);
      padding: var(--space-section) 0 var(--space-l);
    }

    .footer-grid {
      display: grid;
      gap: var(--space-xl);
    }

    .footer-brand .logo {
      color: var(--color-white);
      margin-bottom: var(--space-m);
      display: inline-block;
    }

    .footer-brand .logo span { color: var(--color-sand); }

    .footer-brand p {
      opacity: 0.85;
      font-size: var(--text-sm);
      margin-bottom: var(--space-m);
    }

    .social-links {
      display: flex;
      gap: var(--space-s);
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-white);
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--color-coral);
      transform: translateY(-2px);
    }

    .footer-links h4 {
      color: var(--color-white);
      margin-bottom: var(--space-m);
      font-size: 1.125rem;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li { margin-bottom: var(--space-xs); }

    .footer-links a {
      color: var(--color-white);
      opacity: 0.85;
      font-size: var(--text-sm);
    }

    .footer-links a:hover {
      opacity: 1;
      color: var(--color-sand);
    }

    .footer-contact p {
      margin-bottom: var(--space-s);
      font-size: var(--text-sm);
      opacity: 0.85;
      display: flex;
      align-items: center;
      gap: var(--space-xs);
    }

    .footer-bottom {
      margin-top: var(--space-xl);
      padding-top: var(--space-l);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      font-size: var(--text-sm);
      opacity: 0.7;
    }

    /* ===== RESPONSIVE ===== */
    @media (min-width: 768px) {
      .hero-cta-group { flex-direction: row; justify-content: center; }

      .trust-list { grid-template-columns: repeat(4, 1fr); }

      .intro-grid { grid-template-columns: 1fr 1fr; }

      .services-grid { grid-template-columns: repeat(2, 1fr); }

      .process-steps { grid-template-columns: repeat(2, 1fr); }

      .features-grid { grid-template-columns: repeat(3, 1fr); }

      .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
    }

    @media (min-width: 1024px) {
      .services-grid { grid-template-columns: repeat(4, 1fr); }
      .process-steps { grid-template-columns: repeat(4, 1fr); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    :focus-visible {
      outline: 2px solid var(--color-ocean);
      outline-offset: 2px;
    }
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0F2940;
  --navy-light: #1B3F5E;
  --charcoal: #1A1A2E;
  --sand: #D4C5A0;
  --sand-light: #EDE4CC;
  --ocean: #3D8DAE;
  --ocean-light: #5BA8C8;
  --gold: #C8A96E;
  --gold-light: #DABB82;
  --coral: #E07B5F;
  --coral-dark: #C96A50;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --light-bg: #F4F1EB;
  --gray-100: #F7F7F5;
  --gray-200: #E8E6E1;
  --gray-300: #D1CFC8;
  --gray-500: #8A8780;
  --gray-700: #4A4844;
  --gray-900: #1E1D1B;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(15,41,64,0.06);
  --shadow-md: 0 8px 30px rgba(15,41,64,0.10);
  --shadow-lg: 0 20px 60px rgba(15,41,64,0.12);
  --shadow-xl: 0 30px 80px rgba(15,41,64,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
