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

:root {
  --navy: #0A1628;
  --navy-light: #132038;
  --orange: #FF6B35;
  --orange-dark: #E55A25;
  --orange-light: #FF8C5A;
  --gold: #F7C948;
  --light-bg: #F4F6F8;
  --white: #FFFFFF;
  --dark-text: #1A202C;
  --body-text: #4A5568;
  --muted: #718096;
  --border: #E2E8F0;
  --success: #38A169;
  --shadow: 0 4px 20px rgba(10,22,40,0.12);
  --shadow-lg: 0 10px 40px rgba(10,22,40,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--body-text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-text);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

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

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a { color: var(--gold); }
.top-bar a:hover { color: var(--orange); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-left span, .top-bar-right span { display: flex; align-items: center; gap: 6px; }

/* ===== HEADER / NAVBAR ===== */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 50px; width: auto; }
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--navy); line-height: 1.1; }
.logo-text small { display: block; font-size: 0.65rem; font-weight: 500; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 5px; list-style: none; }
.nav-menu li { position: relative; }
.nav-menu a {
  display: block; padding: 10px 14px; color: var(--dark-text);
  font-weight: 500; font-size: 0.9rem; border-radius: 8px; transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); background: rgba(255,107,53,0.08); }

/* Dropdown */
.nav-menu .dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; background: var(--white);
  min-width: 240px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); padding: 8px; z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { padding: 8px 14px; font-size: 0.85rem; border-radius: 6px; }
.dropdown-menu a:hover { background: var(--light-bg); }

/* Hamburger */
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,107,53,0.05)" d="M0,96L48,112C96,128,192,160,288,170.7C384,181,480,171,576,144C672,117,768,75,864,80C960,85,1056,139,1152,154.7C1248,171,1344,149,1392,138.7L1440,128V320H0Z"></path></svg>') bottom/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; max-width: 650px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,0.15); color: var(--orange-light); padding: 8px 18px;
  border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
  border: 1px solid rgba(255,107,53,0.3);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 50px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 { color: var(--orange); font-size: 2rem; }
.hero-stat p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); font-family: 'Outfit', sans-serif;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,53,0.4); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-secondary:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header .subtitle {
  display: inline-block; color: var(--orange); font-weight: 600;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--muted); }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg); padding: 35px;
  box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 65px; height: 65px; border-radius: 16px; display: flex;
  align-items: center; justify-content: center; font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,201,72,0.1));
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { color: var(--muted); font-size: 0.93rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 600; font-size: 0.9rem; margin-top: 16px; }
.card-link:hover { gap: 12px; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== FEATURES / WHY US ===== */
.feature-box {
  display: flex; gap: 20px; padding: 28px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border); transition: var(--transition);
}
.feature-box:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.feature-icon {
  min-width: 55px; height: 55px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
}
.feature-box h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature-box p { font-size: 0.88rem; color: var(--muted); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; padding: 30px; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px;
  border: 1px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-style: italic; color: var(--body-text); margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; color: var(--dark-text); }
.testimonial-loc { font-size: 0.82rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-weight: 600; color: var(--dark-text);
  background: var(--white); transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question .icon { transition: transform 0.3s; font-size: 1.2rem; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 20px; }

/* ===== ARTICLE / CONTENT ===== */
.article-section { padding: 60px 0; }
.article-content {
  max-width: 800px; margin: 0 auto; line-height: 1.8;
}
.article-content h2 { margin: 30px 0 15px; font-size: 1.5rem; }
.article-content h3 { margin: 25px 0 12px; font-size: 1.25rem; }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin: 16px 0; padding-left: 24px; }
.article-content li { margin-bottom: 8px; }

/* ===== BLOG ===== */
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 3rem; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--dark-text); }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p { font-size: 0.9rem; color: var(--muted); }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--dark-text); font-size: 0.9rem; }
.form-control {
  width: 100%; padding: 14px 18px; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; transition: var(--transition); background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,53,0.1); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 12px 0; font-size: 0.85rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--muted); margin: 0 8px; }
.breadcrumb .current { color: var(--orange); font-weight: 500; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0 60px; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ===== SERVICE REGIONS ===== */
.region-card {
  background: var(--white); padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--border); text-align: center; transition: var(--transition);
}
.region-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.region-card .icon { font-size: 2rem; margin-bottom: 10px; }
.region-card h3 { font-size: 1rem; margin-bottom: 6px; }
.region-card p { font-size: 0.82rem; color: var(--muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 60px 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn { background: var(--white); color: var(--orange); border-color: var(--white); }
.cta-section .btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--orange); border-radius: 2px; }
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 6px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; list-style: none; }
.footer-contact .icon { color: var(--orange); min-width: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem;
}
.footer-keywords { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.75rem; color: rgba(255,255,255,0.25); line-height: 1.8; }

/* ===== FLOATING BUTTONS ===== */
.float-whatsapp, .float-phone {
  position: fixed; bottom: 30px; z-index: 999; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white); box-shadow: var(--shadow-lg);
  transition: var(--transition); text-decoration: none; border: none; cursor: pointer;
}
.float-whatsapp { right: 30px; background: #25D366; }
.float-phone { right: 100px; background: var(--orange); }
.float-whatsapp:hover, .float-phone:hover { transform: scale(1.1); color: var(--white); }
.scroll-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  color: var(--white); border: none; cursor: pointer; font-size: 1.2rem;
  display: none; align-items: center; justify-content: center;
  transition: var(--transition); box-shadow: var(--shadow);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--orange); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.5s ease, transform 0.5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ===== PROCESS TIMELINE ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step-num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--orange);
  color: var(--white); font-family: 'Outfit'; font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hamburger { display: block; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white); flex-direction: column; padding: 80px 20px 20px;
    box-shadow: var(--shadow-lg); transition: right 0.3s ease;
    overflow-y: auto; align-items: stretch;
  }
  .nav-menu.active { right: 0; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 16px; display: none; }
  .dropdown.active .dropdown-menu { display: block; }
  .hero { min-height: 70vh; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar-right { display: none; }
  .hero-buttons { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-phone { right: 90px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 24px; }
  .hero { min-height: 60vh; padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr; }
}
