:root {
  --primary: #1a3a5c;
  --accent: #c0392b;
  --gold: #b8962e;
  --light: #f4f1ec;
  --white: #ffffff;
  --gray: #6b7280;
  --dark: #0d1f30;
  --card-bg: #ffffff;
  --transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--light); color: var(--primary); overflow-x: hidden; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: -20px; right: 0; z-index: 9999;
  background: #fff;
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  transition: var(--transition);
}
.navbar.scrolled { height: 75px; background: #fff; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo {
  width: 46px; height: 46px; background: var(--white); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 900;
  color: var(--primary); font-size: 18px; letter-spacing: -2px;
}
.nav-title { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.2rem; font-weight: 700; line-height: 1.1; }
.nav-title span { display: block; font-size: 0.6rem; font-family: 'Jost', sans-serif; font-weight: 300; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: #19395b; text-decoration: none; font-size: 0.88rem;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent); color: var(--white) !important;
  padding: 8px 20px; border-radius: 4px;
  font-size: 0.82rem !important; letter-spacing: 1px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #a93226 !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: #0d1f30; border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--dark); z-index: 9998; padding: 1.5rem;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 500; transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }

/* ─── PAGES ─── */
.page { display: none; min-height: 100vh; padding-top: 72px; }
.page.active { display: block; }

/* ─── HERO SLIDER ─── */
.hero { position: relative; height: 100vh; overflow: hidden; }
.slides { display: flex; height: 100%; transition: transform 0.9s cubic-bezier(0.77,0,0.18,1); }
.slide {
  min-width: 100%; height: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08); transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,48,0.82) 0%, rgba(26,58,92,0.55) 60%, rgba(0,0,0,0.3) 100%); }
.slide-content {
  position: relative; z-index: 2; text-align: center;
  padding: 2rem; max-width: 820px; margin: 0 auto;
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.slide-tag { display: inline-block; background: var(--gold); color: var(--white); padding: 5px 18px; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.2rem; border-radius: 2px; }
.slide-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem,6vw,4.5rem); color: var(--white); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.slide-content h1 span { color: var(--gold); }
.slide-content p { color: rgba(255,255,255,0.82); font-size: 1.05rem; font-weight: 300; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.slide-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary-custom {
  background: var(--accent); color: var(--white); padding: 14px 36px;
  border: none; font-family: 'Jost', sans-serif; font-size: 0.88rem;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  border-radius: 3px; transition: var(--transition); text-decoration: none;
  display: inline-block;
}
.btn-primary-custom:hover { background: #a93226; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.4); }
.btn-outline-custom {
  background: transparent; color: var(--white); padding: 13px 36px;
  border: 2px solid rgba(255,255,255,0.6); font-family: 'Jost', sans-serif;
  font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; border-radius: 3px; transition: var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-outline-custom:hover { border-color: var(--gold); color: var(--gold); }
.slider-nav {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); color: var(--white); border: 2px solid rgba(255,255,255,0.3);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.3rem;
  cursor: pointer; transition: var(--transition); z-index: 10;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

/* ─── SECTION COMMON ─── */
.section { padding: 6rem 0; }
.section-light { background: var(--light); }
.section-white { background: var(--white); }
.section-dark { background: var(--primary); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section-label { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.2rem; }
.section-title.light { color: var(--white); }
.section-sub { color: var(--gray); font-size: 1rem; font-weight: 300; line-height: 1.8; max-width: 560px; margin-bottom: 3rem; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--gold)); margin-bottom: 1.5rem; border-radius: 2px; }

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--dark); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 1rem 2rem; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.4rem; }

/* ─── SERVICES GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.service-card {
  background: var(--white); border-radius: 8px; padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,58,92,0.07);
  transition: var(--transition); border-bottom: 3px solid transparent;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(26,58,92,0.14); border-bottom-color: var(--gold); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold)); opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.service-icon i { font-size: 1.6rem; color: var(--gold); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.8rem; color: var(--primary); }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-img-wrap { position: relative; border-radius: 12px; overflow: hidden; }
.why-img {
  width: 100%; height: 500px; object-fit: cover;
  background: linear-gradient(135deg, var(--primary) 0%, #2c5f8a 50%, var(--dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.18); font-size: 5rem;
}
.why-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: var(--white); padding: 1.5rem;
  border-radius: 12px; text-align: center; box-shadow: 0 8px 32px rgba(192,57,43,0.35);
}
.why-badge .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; display: block; }
.why-badge .text { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-feature-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(184,150,46,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.why-feature-icon i { color: var(--gold); font-size: 1.2rem; }
.why-feature h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.3rem; }
.why-feature p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

/* ─── PROJECTS ─── */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.project-card { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.project-card:first-child { grid-row: span 2; }
.project-img {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, #1a3a5c 0%, #2c5f8a 100%);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s ease;
}
.project-card:first-child .project-img { height: 100%; min-height: 460px; }
.project-img i { font-size: 3.5rem; color: rgba(255,255,255,0.2); }
.project-card:hover .project-img { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,31,48,0.92) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  transition: var(--transition);
}
.project-info h4 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.1rem; font-weight: 700; }
.project-info span { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; }
.project-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent); color: var(--white); padding: 4px 12px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; border-radius: 2px;
}

/* ─── PLANS ─── */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.plan-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,58,92,0.08); transition: var(--transition);
  position: relative;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(26,58,92,0.15); }
.plan-card.featured { border: 2px solid var(--gold); }
.plan-card.featured .plan-header { background: linear-gradient(135deg, var(--primary), var(--dark)); }
.plan-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white); padding: 4px 20px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; border-radius: 0 0 8px 8px;
}
.plan-header { background: var(--primary); padding: 2.5rem 2rem; text-align: center; }
.plan-header h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.4rem; font-weight: 700; }
.plan-price { color: var(--gold); font-size: 2.5rem; font-family: 'Playfair Display', serif; font-weight: 900; margin: 0.5rem 0; }
.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-price span { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-family: 'Jost', sans-serif; font-weight: 300; }
.plan-subtitle { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.plan-body { padding: 2rem; }
.plan-features { list-style: none; margin-bottom: 2rem; }
.plan-features li { padding: 0.7rem 0; border-bottom: 1px solid rgba(26,58,92,0.07); font-size: 0.9rem; color: var(--gray); display: flex; align-items: center; gap: 0.8rem; }
.plan-features li i { color: var(--gold); font-size: 0.95rem; }
.plan-features li.disabled { opacity: 0.4; }
.plan-features li.disabled i { color: var(--gray); }
.btn-plan { width: 100%; padding: 13px; background: var(--primary); color: var(--white); border: none; border-radius: 6px; font-family: 'Jost', sans-serif; font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.btn-plan:hover { background: var(--accent); }
.plan-card.featured .btn-plan { background: var(--gold); }
.plan-card.featured .btn-plan:hover { background: #9a7c26; }

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem; }
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,0.2);
  border: 4px solid var(--gold);
}
.team-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.team-card span { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.value-item { background: rgba(26,58,92,0.05); border-radius: 8px; padding: 1.5rem; border-left: 3px solid var(--gold); }
.value-item i { color: var(--accent); font-size: 1.5rem; margin-bottom: 0.8rem; display: block; }
.value-item h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
.value-item p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { width: 48px; height: 48px; min-width: 48px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-icon i { color: var(--gold); font-size: 1.2rem; }
.contact-detail h5 { font-weight: 600; color: var(--primary); margin-bottom: 0.2rem; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; }
.contact-detail p, .contact-detail a { color: var(--gray); font-size: 0.95rem; text-decoration: none; }
.contact-detail a:hover { color: var(--accent); }
.contact-form { background: var(--white); border-radius: 12px; padding: 3rem; box-shadow: 0 8px 40px rgba(26,58,92,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(26,58,92,0.15);
  border-radius: 6px; font-family: 'Jost', sans-serif; font-size: 0.95rem;
  color: var(--primary); background: var(--light);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(184,150,46,0.1); }
.form-group textarea { height: 130px; resize: none; }
.map-wrap { border-radius: 12px; overflow: hidden; margin-top: 3rem; height: 380px; position: relative; }
.map-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #d4e1f0, #b8cfe0); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; }
.map-placeholder i { font-size: 3rem; color: var(--primary); }
.map-placeholder p { color: var(--primary); font-weight: 500; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ─── FLOATING BUTTONS ─── */
.floating-btns { position: fixed; bottom: 2rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 14px; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.4rem; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: var(--transition); position: relative;
}
.float-btn:hover { transform: scale(1.15); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.float-wa { background: #25d366; color: var(--white); }
.float-phone { background: var(--accent); color: var(--white); }
.float-top { background: var(--primary); color: var(--white); }
.float-pulse::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25d366; animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.4;transform:scale(1)} 50%{opacity:0;transform:scale(1.35)} }

/* ─── FOOTER ─── */
footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: var(--transition); text-decoration: none; }
.social-link:hover { background: var(--gold); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 0.5rem; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-col ul li a i { font-size: 0.7rem; color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.8rem; margin-bottom: 1rem; }
.footer-contact-item i { color: var(--gold); font-size: 1rem; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom span { color: var(--gold); }

/* ─── HERO (inner pages) ─── */
.page-hero {
  height: 340px; background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
}
.page-hero-content { position: relative; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3.5rem); color: var(--white); font-weight: 900; }
.page-hero p { color: rgba(255,255,255,0.6); margin-top: 0.8rem; font-size: 0.9rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 1rem; list-style: none; }
.breadcrumb li { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.breadcrumb li a { color: var(--gold); text-decoration: none; }
.breadcrumb li::after { content: '/'; margin-left: 0.6rem; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: rgba(255,255,255,0.7); }

/* ─── TESTIMONIAL ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testimonial-card { background: var(--white); border-radius: 10px; padding: 2rem; box-shadow: 0 4px 20px rgba(26,58,92,0.07); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 5rem; color: var(--gold); opacity: 0.2; position: absolute; top: -10px; left: 1.2rem; line-height: 1; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.t-author { display: flex; align-items: center; gap: 0.8rem; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 1.2rem; }
.t-name { font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.t-loc { color: var(--gray); font-size: 0.78rem; }

/* ─── PROCESS ─── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--accent)); z-index: 0; }
.process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--primary); box-shadow: 0 4px 16px rgba(184,150,46,0.2); }
.process-step h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.6rem; }
.process-step p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

/* ─── FREE SERVICE BANNER ─── */
.free-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); padding: 3.5rem; border-radius: 16px; text-align: center; position: relative; overflow: hidden; }
.free-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px; background: rgba(184,150,46,0.08); border-radius: 50%; }
.free-banner h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); font-weight: 800; margin-bottom: 0.8rem; }
.free-banner p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.free-banner .places { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.free-banner .place-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); padding: 6px 18px; border-radius: 30px; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; gap: 0.5rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-badge { bottom: 1rem; right: 1rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:first-child { grid-row: span 1; }
  .project-card:first-child .project-img { min-height: 220px; }
  .about-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* ─── MOBILE MENU - ULTRA SMOOTH LEFT SIDE DRAWER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
  position: relative;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #0d1f30;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Hamburger animation when open */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Drawer - Ultra Smooth Left Slide */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
  z-index: 10000;
  padding: 90px 2rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Menu links - smooth fade in */
.mobile-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Staggered animation for menu links */
.mobile-menu.open a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.3s; }

.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 12px;
  border-bottom-color: var(--gold);
}

/* Overlay when menu is open */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(3px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close button inside menu */
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-size: 1.2rem;
  color: var(--white);
  z-index: 10001;
}

.menu-close:hover {
  background: var(--accent);
  transform: rotate(90deg) scale(1.1);
}

.menu-close i {
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
/* Default desktop stays unchanged */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Tablet / iPad */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        height: 55vh; /* half-ish screen */
    }

    .slide,
    .slide-bg,
    .slide-bg img {
        height: 55vh;
    }

    .slide-bg img {
        width: 100%;
        object-fit: cover;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero {
        height: 50vh; /* exactly half screen */
    }

    .slide,
    .slide-bg,
    .slide-bg img {
        height: 50vh;
    }

    .slide-bg img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .slide-content {
        padding: 15px;
        text-align: center;
        top: 50%;
        transform: translateY(-50%);
    }

    .slide-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .slide-btns {
        flex-direction: column;
        gap: 10px;
    }

    .slide-btns a {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 10px 15px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
   .slide-content {
      max-width: 90%;
      left: 0%;
      transform: translate(-50%, -50%);
      top: 20px;
   }
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--white);
}