:root {
  --navy: #0A1F44;
  --navy-light: #112952;
  --navy-dark: #06132b;
  --white: #FFFFFF;
  --accent: #FF6B00;
  --accent-light: #FF8C35;
  --neutral: #F2F2F2;
  --text-muted: #6b7a96;
  --border: #e2e6ef;
  --card-bg: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--white); color: var(--navy); overflow-x: hidden; padding-bottom: 70px; }

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 8vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 500; }
p { line-height: 1.7; color: var(--text-muted); font-size: 0.95rem; }
a { color: inherit; }

/* ===== TOP NAV ===== */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.top-nav.scrolled { background: var(--navy); padding: 12px 20px; box-shadow: 0 2px 20px rgba(10,31,68,0.3); }
.nav-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; cursor: pointer; text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-desktop-links { display: none; gap: 32px; }
.nav-desktop-links a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: var(--transition); cursor: pointer; }
.nav-desktop-links a:hover, .nav-desktop-links a.active { color: var(--accent); }
.nav-cta { display: none; background: var(--accent); color: var(--white); border: none; padding: 10px 22px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; cursor: pointer; font-family: var(--sans); letter-spacing: 0.04em; transition: var(--transition); text-decoration: none; }
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }

/* ===== BOTTOM NAV ===== */
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: var(--navy); display: flex; border-top: 1px solid rgba(255,255,255,0.08); padding-bottom: env(safe-area-inset-bottom); }
.bottom-nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px 4px 8px; cursor: pointer; transition: var(--transition); border: none; background: none; color: rgba(255,255,255,0.45); font-family: var(--sans); text-decoration: none; }
.bottom-nav-item.active { color: var(--accent); }
.bottom-nav-item:active { transform: scale(0.92); }
.nav-icon { width: 22px; height: 22px; margin-bottom: 4px; }
.nav-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== SECTION BASE ===== */
.section { padding: 64px 20px; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 10px; display: block; }
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-sub { max-width: 500px; margin-bottom: 40px; }
.divider { width: 48px; height: 3px; background: var(--accent); margin: 16px 0 32px; border-radius: 2px; }

/* ===== HERO ===== */
.hero { position: relative; height: 82vh; min-height: 520px; display: flex; align-items: flex-end; justify-content: flex-start; overflow: hidden; margin-top: 0; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,31,68,0.3) 0%, rgba(10,31,68,0.85) 60%, rgba(10,31,68,0.97) 100%); }
.hero-content { position: relative; padding: 0 22px 52px; max-width: 600px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,0,0.18); border: 1px solid rgba(255,107,0,0.4); color: #ffb07a; padding: 6px 14px; border-radius: 30px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 em { color: var(--accent); font-style: italic; }
.hero-sub { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 28px; max-width: 400px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: var(--white); border: none; padding: 14px 26px; border-radius: 6px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: var(--transition); min-height: 48px; letter-spacing: 0.02em; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.35); }
.btn-primary:active { transform: scale(0.96); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); padding: 14px 26px; border-radius: 6px; font-size: 0.9rem; font-weight: 500; cursor: pointer; font-family: var(--sans); transition: var(--transition); min-height: 48px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline:active { transform: scale(0.96); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--navy); padding: 24px 20px; display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 0; }
.stat-item { padding: 12px 8px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ===== SERVICES CARDS ===== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.service-card { background: var(--neutral); border-radius: 12px; padding: 24px 20px; cursor: pointer; transition: var(--transition); border: 1.5px solid transparent; position: relative; overflow: hidden; text-decoration: none; display: block; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent); opacity: 0; transition: var(--transition); }
.service-card:hover, .service-card:active { border-color: var(--accent); background: var(--white); box-shadow: 0 8px 32px rgba(10,31,68,0.1); }
.service-card:hover::before, .service-card:active::before { opacity: 1; }
.service-card:active { transform: scale(0.98); }
.service-icon { width: 48px; height: 48px; background: rgba(255,107,0,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.service-card p { font-size: 0.85rem; line-height: 1.6; }

/* ===== WHY US ===== */
.why-section { background: var(--navy); padding: 64px 20px; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-section .section-label { color: rgba(255,107,0,0.9); }
.why-section .section-title { color: var(--white); }
.why-section p { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-num { font-family: var(--serif); font-size: 2.5rem; color: rgba(255,107,0,0.25); font-weight: 700; line-height: 1; flex-shrink: 0; width: 40px; }
.why-text h4 { font-family: var(--serif); color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.why-text p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ===== PROJECTS PREVIEW ===== */
.project-card { border-radius: 12px; overflow: hidden; cursor: pointer; transition: var(--transition); position: relative; text-decoration: none; display: block; }
.project-card:active { transform: scale(0.98); }
.project-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.project-card:hover .project-img { transform: scale(1.05); }
.project-info { padding: 16px 0; }
.project-tag { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 6px; display: block; }
.project-info h3 { color: var(--navy); font-size: 1.1rem; }
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

/* ===== TEAM ===== */
.team-scroll { display: flex; gap: 16px; overflow-x: auto; padding: 4px 0 16px; scrollbar-width: none; -ms-overflow-style: none; }
.team-scroll::-webkit-scrollbar { display: none; }
.team-card { flex-shrink: 0; width: 200px; background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.team-card:active { transform: scale(0.97); }
.team-card img { width: 100%; height: 220px; object-fit: cover; object-position: top; display: block; }
.team-info { padding: 14px; }
.team-info h4 { font-family: var(--serif); font-size: 1rem; color: var(--navy); margin-bottom: 2px; }
.team-info span { font-size: 0.75rem; color: var(--accent); font-weight: 500; letter-spacing: 0.04em; }

/* ===== TESTIMONIALS ===== */
.testimonials-bg { background: #f8f9fc; padding: 64px 20px; }
.testimonial-card { background: var(--white); border-radius: 14px; padding: 24px; border: 1px solid var(--border); }
.testimonial-card p { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--serif); color: var(--white); font-size: 0.9rem; font-weight: 600; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.author-role { font-size: 0.75rem; color: var(--text-muted); }
.stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 12px; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* ===== ABOUT PAGE ===== */
.about-hero { min-height: 55vh; background: var(--navy); display: flex; align-items: flex-end; padding: 80px 20px 48px; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,107,0,0.06); pointer-events: none; }
.about-hero-content { max-width: 600px; }
.about-hero .section-label { color: rgba(255,107,0,0.9); }
.about-hero h1 { color: var(--white); }
.about-hero h1 em { color: var(--accent); font-style: italic; }
.about-hero p { color: rgba(255,255,255,0.65); max-width: 460px; margin-top: 14px; }
.about-story { padding: 64px 20px; max-width: 1200px; margin: 0 auto; }
.about-img { width: 100%; border-radius: 14px; height: 280px; object-fit: cover; margin-bottom: 32px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-card { background: var(--neutral); border-radius: 10px; padding: 20px 16px; }
.value-icon { font-size: 1.6rem; margin-bottom: 8px; }
.value-card h4 { font-family: var(--serif); font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.value-card p { font-size: 0.8rem; }

/* ===== SERVICES / PROJECTS / CONTACT PAGE HEROES ===== */
.page-hero { background: var(--navy); padding: 100px 20px 52px; }
.page-hero .section-label { color: rgba(255,107,0,0.9); }
.page-hero h1 { color: var(--white); max-width: 500px; }
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 440px; margin-top: 12px; }

.services-full { padding: 64px 20px; max-width: 1200px; margin: 0 auto; }
.service-full-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 20px; transition: var(--transition); }
.service-full-card:hover { box-shadow: 0 8px 32px rgba(10,31,68,0.08); transform: translateY(-2px); }
.sfcard-img { width: 100%; height: 200px; object-fit: cover; }
.sfcard-body { padding: 22px 20px; }
.sfcard-tag { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 8px; display: block; }
.sfcard-body h3 { color: var(--navy); margin-bottom: 8px; }
.sfcard-body p { font-size: 0.85rem; margin-bottom: 16px; }
.sfcard-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sfcard-features li { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.sfcard-features li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ===== PROJECTS PAGE ===== */
.projects-full { padding: 40px 20px 64px; max-width: 1200px; margin: 0 auto; }
.filter-tabs { display: flex; gap: 8px; overflow-x: auto; padding: 0 0 16px; scrollbar-width: none; margin-bottom: 24px; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab { flex-shrink: 0; padding: 8px 18px; border-radius: 30px; border: 1.5px solid var(--border); background: transparent; font-size: 0.8rem; font-weight: 500; cursor: pointer; font-family: var(--sans); color: var(--text-muted); transition: var(--transition); min-height: 38px; text-decoration: none; display: inline-flex; align-items: center; }
.filter-tab.active, .filter-tab:active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.projects-all { display: grid; grid-template-columns: 1fr; gap: 20px; }
.proj-card { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; text-decoration: none; display: block; }
.proj-card:active { transform: scale(0.98); }
.proj-card img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.proj-card:hover img { transform: scale(1.06); }
.proj-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,31,68,0.9) 0%, transparent 100%); padding: 32px 16px 16px; }
.proj-card-overlay span { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.proj-card-overlay h3 { color: var(--white); font-size: 1.1rem; margin-top: 4px; }
.proj-card-overlay p { color: rgba(255,255,255,0.7); font-size: 0.78rem; margin-top: 2px; }

/* ===== PROJECT DETAIL ===== */
.detail-hero { width: 100%; height: 46vh; min-height: 320px; object-fit: cover; }
.detail-body { padding: 40px 20px 64px; max-width: 820px; margin: 0 auto; }
.detail-body .specs { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.detail-body .specs span { background: var(--neutral); border-radius: 30px; padding: 7px 16px; font-size: 0.8rem; color: var(--navy); font-weight: 500; }
.detail-body p { font-size: 1rem; }

/* ===== CONTACT PAGE ===== */
.contact-body { padding: 48px 20px 64px; max-width: 1200px; margin: 0 auto; }
.contact-info-cards { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
.contact-info-card { display: flex; align-items: center; gap: 16px; background: var(--neutral); border-radius: 12px; padding: 18px 16px; text-decoration: none; }
.cic-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cic-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cic-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
.cic-value { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.form-section h2 { color: var(--navy); margin-bottom: 8px; }
.form-section p { margin-bottom: 28px; }

/* ===== FORM ===== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.92rem; font-family: var(--sans); background: var(--white); color: var(--navy); outline: none; transition: var(--transition); min-height: 48px; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,31,68,0.08); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a96' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.submit-btn { width: 100%; background: var(--navy); color: var(--white); border: none; padding: 16px; border-radius: 8px; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: var(--transition); min-height: 52px; letter-spacing: 0.04em; }
.submit-btn:hover { background: var(--navy-light); transform: translateY(-1px); }
.submit-btn:active { transform: scale(0.98); }

/* ===== COST CALCULATOR ===== */
.calculator-section { background: var(--navy); padding: 64px 20px; margin-top: 48px; }
.calc-inner { max-width: 600px; margin: 0 auto; }
.calculator-section .section-label { color: rgba(255,107,0,0.9); }
.calculator-section .section-title { color: var(--white); }
.calculator-section p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.calc-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 28px 20px; }
.calc-form .form-group label { color: rgba(255,255,255,0.8); }
.calc-form input, .calc-form select { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
.calc-form input::placeholder { color: rgba(255,255,255,0.35); }
.calc-form input:focus, .calc-form select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,107,0,0.15); }
.calc-form select option { background: var(--navy); color: var(--white); }
.calc-submit { background: var(--accent); color: var(--white); border: none; width: 100%; padding: 15px; border-radius: 8px; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: var(--transition); min-height: 50px; }
.calc-submit:hover { background: var(--accent-light); }
.calc-submit:active { transform: scale(0.98); }
.calc-live { margin-top: 20px; background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.35); border-radius: 12px; padding: 18px 20px; color: var(--white); display: none; }
.calc-live.show { display: block; animation: fadeIn 0.3s ease; }
.calc-live .calc-amount { font-family: var(--serif); font-size: 1.9rem; color: var(--white); font-weight: 700; }
.calc-live .calc-meta { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===== FLOATING WHATSAPP ===== */
.fab-wa { position: fixed; bottom: 90px; right: 20px; z-index: 200; width: 54px; height: 54px; border-radius: 50%; background: #25D366; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,0.45); transition: var(--transition); text-decoration: none; animation: bounce 3s ease-in-out infinite; }
.fab-wa:hover { background: #1fba59; transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); animation: none; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.fab-wa svg { width: 28px; height: 28px; fill: white; }

/* ===== FOOTER ===== */
.footer { background: #06132b; padding: 48px 20px 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; }
.footer-brand .nav-logo { display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-family: var(--serif); color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.45); text-decoration: none; cursor: pointer; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-heart { color: var(--accent); }

/* ===== THANK YOU ===== */
.thanks-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 120px 20px 60px; }
.thanks-box { max-width: 520px; text-align: center; }
.thanks-check { width: 76px; height: 76px; border-radius: 50%; background: rgba(255,107,0,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.thanks-check svg { width: 40px; height: 40px; stroke: var(--accent); fill: none; stroke-width: 2; }
.thanks-box h1 { color: var(--navy); margin-bottom: 14px; }
.estimate-box { background: var(--navy); border-radius: 16px; padding: 28px 24px; margin: 28px 0; color: var(--white); }
.estimate-box .est-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.estimate-box .est-amount { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--white); margin: 8px 0; }
.estimate-box .est-range { color: var(--accent); font-weight: 600; }
.estimate-box .est-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== DESKTOP ===== */
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-cards { grid-template-columns: repeat(3, 1fr); }
  .projects-all { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .about-values { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .nav-desktop-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-all { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
