/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #f5f0e8;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

:root {
  --navy: #1a3a5c;
  --orange: #c75b2a;
  --amber: #e8a838;
  --cream: #f5f0e8;
  --text: #1e293b;
  --text-sec: #64748b;
}

/* ===== NAV ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(8px);
}
.navbar.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--navy); display: flex; align-items: center; gap: 8px;
}
.logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-weight: 500; font-size: 14px; color: var(--text); position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.btn {
  display: inline-block; font-weight: 500; font-size: 14px;
  border-radius: 6px; padding: 12px 28px; cursor: pointer; border: none;
  transition: all 0.3s; text-align: center; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: #a84a20; transform: translateY(-2px); }
.btn-primary-lg { padding: 16px 40px; font-size: 16px; font-weight: 600; }
.btn-outline { border: 2px solid var(--orange); color: var(--orange); background: transparent; padding: 12px 32px; }
.btn-outline:hover { background: var(--orange); color: white; }
.btn-white { background: white; color: var(--navy); font-weight: 600; padding: 14px 32px; }
.btn-white:hover { background: var(--cream); }
.btn-navy { background: var(--navy); color: white; padding: 14px 32px; font-weight: 600; }
.btn-navy:hover { background: #122a45; transform: translateY(-2px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed; top: 0; right: 0; width: 70%; max-width: 300px; height: 100vh;
  background: var(--cream); z-index: 1001; padding: 80px 24px 24px;
  transform: translateX(100%); transition: transform 0.3s;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; font-weight: 500; font-size: 16px; color: var(--text); padding: 14px 0; border-bottom: 1px solid rgba(30,41,59,0.1); }
.mobile-menu .btn { margin-top: 16px; width: 100%; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 1000; display: none; }
.mobile-overlay.open { display: block; }

/* ===== PAGE LAYOUT ===== */
.page-content { padding-top: 72px; min-height: 100vh; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: calc(100vh - 72px);
  display: flex; align-items: center; justify-content: center;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,58,92,0.75), rgba(26,58,92,0.5)); }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(26,58,92,0.5) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 40px 24px; }
.hero-label { font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--amber); margin-bottom: 16px; display: block; }
.hero h1 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(32px,5vw,56px); color: var(--cream); line-height: 1.15; letter-spacing: -0.03em; text-shadow: 0 2px 30px rgba(0,0,0,0.5); margin-bottom: 20px; }
.hero p { font-size: clamp(16px,2vw,18px); color: rgba(245,240,232,0.85); max-width: 560px; margin: 0 auto 32px; }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-navy { background: var(--navy); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-white { background: white; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center p { margin-left: auto; margin-right: auto; }
.label-accent { font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); display: block; margin-bottom: 12px; }
.section-navy .label-accent { color: var(--amber); }
.section-header h2 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: clamp(28px,4vw,44px); line-height: 1.2; letter-spacing: -0.02em; color: var(--text); margin-bottom: 12px; }
.section-navy .section-header h2 { color: var(--cream); }
.section-header p { color: var(--text-sec); font-size: 16px; max-width: 600px; line-height: 1.65; }
.section-navy .section-header p { color: rgba(245,240,232,0.8); }

/* Page Hero (smaller than home hero) */
.page-hero {
  background: var(--navy); color: var(--cream);
  padding: 100px 24px 60px; text-align: center;
}
.page-hero h1 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(28px,4vw,48px); letter-spacing: -0.02em; margin-bottom: 12px; }
.page-hero p { color: rgba(245,240,232,0.8); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ===== CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.service-card { background: white; border-radius: 12px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; }
.service-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.service-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(199,91,42,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--orange); }
.service-card h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 24px; color: var(--text); margin-bottom: 12px; }
.service-card p { color: var(--text-sec); font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.learn-more { font-weight: 500; font-size: 14px; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; }
.learn-more:hover { text-decoration: underline; }

/* Detail page content */
.detail-content { max-width: 800px; margin: 0 auto; }
.detail-content h2 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 28px; color: var(--text); margin: 32px 0 16px; }
.detail-content h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 20px; color: var(--text); margin: 24px 0 12px; }
.detail-content p { color: var(--text-sec); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.detail-content ul { margin: 0 0 20px 24px; color: var(--text-sec); }
.detail-content ul li { margin-bottom: 10px; line-height: 1.6; }
.detail-content .feature-list { list-style: none; margin: 20px 0; }
.detail-content .feature-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--text); }
.detail-content .feature-list li svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step-number { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 72px; color: rgba(232,168,56,0.2); line-height: 1; margin-bottom: 8px; }
.process-step h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 22px; color: var(--cream); margin-bottom: 8px; }
.process-step p { color: rgba(245,240,232,0.7); font-size: 16px; }

/* Why Choose */
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.why-image { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-content p { color: var(--text-sec); font-size: 16px; line-height: 1.65; margin-bottom: 24px; }
.stats-row { display: flex; gap: 32px; margin-bottom: 28px; }
.stat-value { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 36px; color: var(--orange); display: block; }
.stat-label { color: var(--text-sec); font-size: 14px; }

/* Projects */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.project-image { border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; margin-bottom: 12px; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.project-card { cursor: pointer; }
.project-card:hover .project-image img { transform: scale(1.05); }
.project-card h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 20px; color: var(--text); margin-bottom: 4px; }
.project-card p { color: var(--text-sec); font-size: 14px; }

/* Testimonials */
.testimonial-card { background: white; border-radius: 16px; padding: 48px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); max-width: 800px; margin: 0 auto; }
.quote-icon { color: var(--orange); width: 40px; height: 40px; margin-bottom: 20px; }
.testimonial-card blockquote { font-family: 'Poppins', sans-serif; font-style: italic; font-size: clamp(18px,2.5vw,22px); color: var(--text); line-height: 1.6; margin-bottom: 24px; }
.testimonial-author { font-weight: 600; font-size: 16px; color: var(--text); }
.testimonial-location { color: var(--text-sec); font-size: 14px; }
.testimonial-dots { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; cursor: pointer; border: none; transition: 0.3s; }
.dot.active { background: var(--orange); }

/* Tiers */
.tiers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.tier-card { border-radius: 20px; padding: 40px; color: white; }
.tier-card.navy { background: var(--navy); }
.tier-card.orange { background: var(--orange); }
.tier-card .tier-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; margin-bottom: 12px; }
.tier-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 26px; margin-bottom: 12px; line-height: 1.2; }
.tier-card p { opacity: 0.9; font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.tier-features { list-style: none; margin-bottom: 28px; }
.tier-features li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 15px; }
.tier-features li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* CTA */
.cta-section { text-align: center; padding: 100px 24px; }
.cta-section h2 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(32px,4vw,48px); color: var(--cream); margin-bottom: 16px; }
.cta-section p { color: rgba(245,240,232,0.8); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }

/* ===== ORDER FORM ===== */
.order-form-container { max-width: 700px; margin: 0 auto; background: white; border-radius: 16px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 500; font-size: 14px; color: var(--text); margin-bottom: 8px; }
.form-group label .required { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text); background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(199,91,42,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--orange); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.checkbox-group label { font-size: 14px; color: var(--text); line-height: 1.5; cursor: pointer; }
.checkbox-group label a { color: var(--orange); text-decoration: underline; }
.checkbox-section { border-top: 1px solid #e2e8f0; padding-top: 24px; margin-top: 24px; }
.checkbox-section-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; color: var(--text); margin-bottom: 16px; }
.form-note { font-size: 13px; color: var(--text-sec); margin-top: 8px; line-height: 1.5; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; font-weight: 600; margin-top: 8px; }

/* Confirmation */
.confirmation-message { display: none; text-align: center; padding: 60px 40px; }
.confirmation-message.show { display: block; }
.confirmation-message svg { width: 64px; height: 64px; color: #22c55e; margin: 0 auto 20px; }
.confirmation-message h2 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.confirmation-message p { color: var(--text-sec); font-size: 16px; line-height: 1.6; max-width: 500px; margin: 0 auto 24px; }
.order-form-container.submitted .form-content { display: none; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; background: white; border-radius: 16px; padding: 48px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.legal-content h2 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 22px; color: var(--text); margin-top: 32px; margin-bottom: 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-sec); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.legal-content ul { margin-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--orange); }
.legal-content a:hover { text-decoration: underline; }
.legal-date { color: var(--text-sec); font-size: 14px; margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer { background: var(--cream); border-top: 1px solid rgba(30,41,59,0.08); }
.footer-content { max-width: 1200px; margin: 0 auto; padding: 60px 24px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-col p { color: var(--text-sec); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; color: var(--text); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-sec); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--text-sec); transition: color 0.2s; }
.footer-social a:hover { color: var(--orange); }
.footer-social svg { width: 20px; height: 20px; }
.footer-address { font-style: normal; color: var(--text-sec); font-size: 14px; line-height: 1.8; }
.footer-address a { color: var(--text-sec); transition: color 0.2s; }
.footer-address a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(30,41,59,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text-sec); font-size: 14px; }
.footer-bottom-links { display: flex; gap: 16px; align-items: center; }
.footer-bottom-links a { color: var(--text-sec); font-size: 14px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-container > .btn { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .legal-content, .order-form-container { padding: 28px; }
  .testimonial-card { padding: 28px; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
}
