/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', 'Be Vietnam Pro', Arial, sans-serif; color: #222; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --navy: #0a2342;
  --navy2: #0d2d5e;
  --gold: #c8a84b;
  --gold-dark: #a8863c;
  --blue: #1565c0;
  --blue-light: #1e88e5;
  --red: #c62828;
  --white: #fff;
  --gray-light: #f5f7fa;
  --gray: #e0e4ef;
  --text: #333;
  --text-light: #666;
  --shadow: 0 4px 20px rgba(10,35,66,0.10);
  --shadow-lg: 0 8px 40px rgba(10,35,66,0.16);
  --radius: 8px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.8); }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar .icon { font-size: 14px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navy2);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 48px; height: 48px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: var(--navy); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: 1px; line-height: 1.1; }
.brand-sub { font-size: 11px; color: var(--gold); letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: rgba(200,168,75,0.18); color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700 !important; border-radius: 6px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: #fff !important; }
.nav-lang { display: flex; gap: 4px; align-items: center; margin-left: 8px; }
.lang-btn { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); font-size: 12px; cursor: pointer; padding: 4px 10px; border-radius: 4px; transition: 0.2s; }
.lang-btn.active, .lang-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0a2342 0%, #0d2d5e 40%, #1a4a8a 70%, #0a2342 100%);
  padding: 90px 0 80px;
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,168,75,0.15); border: 1px solid rgba(200,168,75,0.4); color: var(--gold); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; letter-spacing: 0.5px; }
.hero-title { font-size: 42px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.hero-title span { color: var(--gold); display: block; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 6px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(200,168,75,0.4);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,0.5); }
.btn-outline {
  background: transparent; color: #fff;
  font-weight: 600; font-size: 15px;
  padding: 13px 30px; border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: flex; gap: 40px; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.service-card-mini {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.service-card-mini:hover { background: rgba(255,255,255,0.14); }
.card-mini-icon { width: 42px; height: 42px; border-radius: 8px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.card-mini-text strong { display: block; color: #fff; font-size: 14px; font-weight: 600; }
.card-mini-text span { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge { display: inline-block; background: rgba(200,168,75,0.12); color: var(--gold-dark); font-size: 13px; font-weight: 600; padding: 5px 16px; border-radius: 20px; margin-bottom: 12px; letter-spacing: 0.5px; border: 1px solid rgba(200,168,75,0.25); }
.section-title { font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1.25; }
.section-title span { color: var(--blue); }
.section-desc { font-size: 16px; color: var(--text-light); margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--blue)); border-radius: 2px; margin: 16px auto 0; }

/* ===== ABOUT ===== */
.about { background: var(--gray-light); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-bg { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border-radius: 16px; height: 420px; display: flex; align-items: center; justify-content: center; font-size: 100px; position: relative; overflow: hidden; }
.about-img-bg::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 140px; height: 140px; background: var(--gold); border-radius: 50%; opacity: 0.15; }
.about-badge-float { position: absolute; bottom: -18px; left: 24px; background: #fff; border-radius: 10px; padding: 14px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
.about-badge-float .num { font-size: 28px; font-weight: 800; color: var(--navy); }
.about-badge-float span { font-size: 13px; color: var(--text-light); max-width: 100px; line-height: 1.3; }
.about-content { padding-left: 10px; }
.about-content h2 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 20px; line-height: 1.25; }
.about-content p { font-size: 15.5px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-features { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); }
.about-feat::before { content: '✓'; width: 22px; height: 22px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--navy); flex-shrink: 0; }

/* ===== SERVICES ===== */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: 12px;
  padding: 32px 28px; border: 1px solid var(--gray);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; border-radius: 14px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { background: var(--gray-light); color: var(--text-light); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 12px; }
.service-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 13px; font-weight: 600; }
.service-link:hover { color: var(--gold-dark); }

/* ===== WHY CHOOSE ===== */
.why { background: var(--gray-light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: #fff; border-radius: 12px; padding: 36px 24px; text-align: center; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { width: 72px; height: 72px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 16px rgba(200,168,75,0.35); }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* ===== PROCESS ===== */
.process { background: var(--navy); }
.process .section-title { color: #fff; }
.process .section-desc { color: rgba(255,255,255,0.65); }
.process .divider { background: linear-gradient(90deg, var(--gold), rgba(200,168,75,0.3)); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, rgba(200,168,75,0.2) 100%); z-index: 0; }
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 4px solid var(--navy); box-shadow: 0 0 0 3px var(--gold); }
.step h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--gray-light); border-radius: 12px; padding: 32px; border: 1px solid var(--gray); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 80px; color: var(--gold); opacity: 0.25; line-height: 1; font-family: Georgia, serif; }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14.5px; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; }
.reviewer-info strong { display: block; font-size: 14px; color: var(--navy); }
.reviewer-info span { font-size: 12px; color: var(--text-light); }

/* ===== CONTACT ===== */
.contact { background: var(--gray-light); }
.contact .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 3px; }
.contact-item span { font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-form-wrap { background: #fff; border-radius: 14px; padding: 36px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray); border-radius: 6px;
  font-size: 14px; color: var(--text); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}
.form-group textarea { height: 100px; resize: vertical; }
.form-submit { width: 100%; padding: 14px; background: var(--navy); color: #fff; font-size: 15px; font-weight: 700; border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.form-submit:hover { background: var(--blue); }
.success-msg { display: none; background: #e8f5e9; color: #2e7d32; border-radius: 6px; padding: 12px 16px; font-size: 14px; font-weight: 500; margin-top: 12px; text-align: center; }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 46px; height: 46px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: var(--navy); }
.footer-logo-text { font-size: 20px; font-weight: 800; color: #fff; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: var(--gold); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; align-items: flex-start; }
.footer-contact-item .icon { color: var(--gold); margin-top: 1px; flex-shrink: 0; font-size: 15px; }
.footer-contact-item span { color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 10px; }
.footer-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 6px 14px; font-size: 12px; color: rgba(255,255,255,0.55); }

/* ===== FLOATING BUTTONS ===== */
.float-btns { position: fixed; right: 20px; bottom: 30px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 16px rgba(0,0,0,0.2); cursor: pointer; text-decoration: none; transition: transform 0.2s; }
.float-btn:hover { transform: scale(1.1); }
.float-zalo { background: #0068ff; color: #fff; font-size: 13px; font-weight: 700; }
.float-phone { background: var(--gold); color: var(--navy); }
.float-top { background: var(--navy); color: #fff; font-size: 18px; opacity: 0; transition: opacity 0.3s; }
.float-top.show { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
[data-aos].aos-init { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-init.aos-animate { opacity: 1; transform: none; }
[data-aos="fade-left"].aos-init { transform: translateX(-28px); }
[data-aos="fade-right"].aos-init { transform: translateX(28px); }
[data-aos].aos-init.aos-animate { transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 34px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy2); flex-direction: column; padding: 16px 20px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; border-radius: 6px; }
  .nav-lang { margin: 8px 0 0; justify-content: flex-start; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 28px; }
  .hero-stats { gap: 24px; }
  .about .container { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}

/* ===== BUTTON SYSTEM ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
}
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }
.btn-gold {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(200,168,75,0.35);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,0.45); }
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.btn-navy:hover { background: var(--blue); border-color: var(--blue); }

/* ===== NAVBAR (new classes) ===== */
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px; background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: var(--navy); flex-shrink: 0;
}
.logo-img {
  width: 44px; height: 44px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  background: #fff;
}
.footer-logo-img {
  width: 48px; height: 48px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0; background: #fff;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.logo-sub { font-size: 10px; color: var(--gold); letter-spacing: 0.5px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { list-style: none; }
.nav-link {
  color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 4px; display: block;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active { background: rgba(200,168,75,0.18); color: var(--gold); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; display: block; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }

/* ===== HERO (new layout) ===== */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-content { }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 20px; text-align: center;
  backdrop-filter: blur(4px);
}
.stat-number { font-size: 30px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-number span { font-size: 20px; }
.stat-card .stat-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 6px; }
.hero-scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); }
.hero-scroll-hint span {
  display: block; width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px; position: relative; margin: 0 auto;
}
.hero-scroll-hint span::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint { 0%,100% { opacity: 1; top: 5px; } 50% { opacity: 0; top: 18px; } }

/* ===== TEXT UTILITY ===== */
.text-gold { color: var(--gold); }
.section { padding: 80px 0; }
.section-label {
  display: inline-block; background: rgba(200,168,75,0.12); color: var(--gold-dark);
  font-size: 13px; font-weight: 600; padding: 5px 16px; border-radius: 20px;
  margin-bottom: 12px; letter-spacing: 0.5px; border: 1px solid rgba(200,168,75,0.25);
}

/* ===== ABOUT (new layout) ===== */
.about-section { background: var(--gray-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { }
.about-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 16px; height: 400px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: visible;
}
.about-img-icon { width: 120px; height: 120px; }
.about-img-icon svg { width: 100%; height: 100%; }
.about-badge-float {
  position: absolute; bottom: -18px; left: 24px;
  background: #fff; border-radius: 10px; padding: 14px 20px;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
}
.about-badge-float strong { font-size: 15px; color: var(--navy); }
.about-badge-float span { font-size: 12px; color: var(--text-light); }
.about-content { }
.about-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-checklist { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.about-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
}
.about-checklist li::before {
  content: '✓'; width: 22px; height: 22px; min-width: 22px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--navy);
}

/* ===== SERVICES (class alias + new) ===== */
.services-section { background: #fff; }
.service-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.service-icon svg { width: 48px; height: 48px; }

/* ===== WHY SECTION ===== */
.why-section { background: var(--gray-light); }
.why-icon { width: 72px; height: 72px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 48px; height: 48px; }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* ===== PROCESS (new layout) ===== */
.process-section { background: var(--navy); }
.process-section .section-title { color: #fff; }
.process-section .section-label { color: var(--gold); }
.process-section .section-desc { color: rgba(255,255,255,0.65); }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; border: 4px solid var(--navy);
  box-shadow: 0 0 0 3px var(--gold);
  position: relative; z-index: 1;
}
.step-content h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-content p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.step-arrow {
  display: flex; align-items: flex-start; padding-top: 22px; color: var(--gold); font-size: 24px;
}
.step-arrow::after { content: '→'; color: var(--gold); font-size: 28px; opacity: 0.5; }
.process-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
}

/* ===== TESTIMONIALS (new class names) ===== */
.testimonials-section { background: #fff; }
.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }
.testimonial-text { font-size: 14.5px; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

/* ===== CONTACT (new layout) ===== */
.contact-section { background: var(--gray-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-card { display: flex; flex-direction: column; gap: 0; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item > div strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 4px; }
.contact-item > div a { display: block; font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-item > div a:hover { color: var(--blue); }
.contact-item > div span { display: block; font-size: 14px; color: var(--text-light); line-height: 1.5; }
.contact-form { }
.form-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ===== FOOTER (new class names) ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo .logo-main { font-size: 18px; font-weight: 800; color: #fff; }
.footer-logo .logo-sub { font-size: 11px; }
.footer-col .footer-heading {
  color: var(--gold); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 18px;
}
.footer-links { }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links li a:hover { color: var(--gold); }
.footer-contact-list { }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 12px; font-size: 13.5px;
}
.footer-contact-list li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li span, .footer-contact-list li a { color: rgba(255,255,255,0.65); }
.footer-contact-list li a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: 0.2s;
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-socials a svg { width: 16px; height: 16px; }

/* ===== FLOAT BUTTONS (alias) ===== */
.float-buttons { position: fixed; right: 20px; bottom: 30px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); cursor: pointer; text-decoration: none; transition: transform 0.2s; background: none; border: none; padding: 0; }
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 50px; height: 50px; }
.float-phone { background: var(--gold) !important; border-radius: 50%; }
.float-phone svg { width: 26px; height: 26px; }
.float-top { background: var(--navy) !important; border-radius: 50%; }
.float-top svg { width: 24px; height: 24px; }
.float-top[style*="flex"] { display: flex !important; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy2); flex-direction: column; padding: 16px 20px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .navbar-actions .btn { display: none; }
  .navbar-actions .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
