/* assets/css/style.css */
:root {
  --primary: #0a1e3d;
  --secondary: #e47911;
  --bg-light: #f8f9fc;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: #fff;
  padding-top: 76px;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* HEADER */
#mainHeader {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  padding: 12px 0;
  width: 100%;
}
#mainHeader.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 8px 0;
}
.navbar-brand .brand-name {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
}
.navbar-brand .brand-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0.3px;
}
.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
}
.nav-link.active {
  color: var(--secondary);
}
.btn-cta {
  background: var(--secondary);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: 0.25s;
}
.btn-cta:hover {
  background: #c9680e;
  color: #fff;
  transform: translateY(-2px);
}

/* BUTTONS */
.btn-primary {
  background: var(--secondary);
  border: none;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  transition: 0.25s;
}
.btn-primary:hover {
  background: #c9680e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(228, 121, 17, 0.25);
}
.btn-outline-secondary {
  border: 1.5px solid #d0d5dd;
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.7rem 2rem;
}
.btn-outline-secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* HERO */
.hero-section {
  padding: 60px 0 40px;
  background: linear-gradient(170deg, #fafcff 0%, #f2f6fe 100%);
  overflow: hidden;
}
.hero-badge .badge-soft {
  background: rgba(228, 121, 17, 0.12);
  color: var(--secondary);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-stats .stat-number {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  display: block;
}
.hero-stats .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Hero Real Image Styles */
.hero-image-placeholder {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1/1.1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10,30,61,0.15);
  position: relative;
}

.hero-real-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-real-image:hover {
  transform: scale(1.03);
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,30,61,0.7) 0%, transparent 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.work-badge {
  background: rgba(228, 121, 17, 0.95);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(228, 121, 17, 0.3);
}

.work-badge i {
  color: #fff;
  font-size: 1.1rem;
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.2);
}

.card-1 { 
  top: 8%; 
  left: -5%; 
  animation: float 4s ease-in-out infinite;
}

.card-2 { 
  bottom: 12%; 
  right: -5%; 
  animation: float 4s ease-in-out infinite 1s;
}

.floating-card i { 
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* STATS */
.stats-section {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.stat-item .h2 {
  font-weight: 700;
  color: var(--primary);
  font-size: 2rem;
}
.stat-item p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ABOUT */
.about-section {
  padding: 70px 0;
  background: var(--bg-light);
}
.about-image-wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(10,30,61,0.08);
  aspect-ratio: 4/3;
}

.about-real-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-real-image:hover {
  transform: scale(1.03);
}

.section-title {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.about-list li {
  font-weight: 500;
}

/* SERVICES */
.services-section {
  padding: 70px 0;
  background: #fff;
}
.service-card {
  background: #fafcff;
  padding: 2rem 1.5rem;
  border-radius: 24px;
  border: 1px solid #eef2f8;
  transition: 0.3s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  border-color: var(--secondary);
}
.service-card .icon {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.service-card h5 { font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* WHY */
.why-section {
  padding: 70px 0;
  background: var(--bg-light);
}
.why-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 1px solid #eef2f8;
  transition: 0.25s;
  height: 100%;
}
.why-card .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
}
.why-card h5 { font-weight: 700; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; }

/* PROCESS */
.process-section {
  padding: 70px 0;
  background: #fff;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.process-step .step-num {
  display: inline-block;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--secondary);
  opacity: 0.2;
  margin-bottom: 0.5rem;
}
.process-step h5 { font-weight: 700; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }

/* TESTIMONIALS */
.testimonials-section {
  padding: 70px 0;
  background: var(--bg-light);
}
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid #eef2f8;
  height: 100%;
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}
.testimonial-card .client {
  margin-top: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* FINAL CTA */
.final-cta-section {
  padding: 80px 0;
  background: var(--primary);
  color: #fff;
}
.final-cta-section .btn-primary {
  background: #fff;
  color: var(--primary);
}
.final-cta-section .btn-primary:hover {
  background: #f0f0f0;
  color: var(--primary);
}

/* CONTACT */
.contact-hero {
  padding: 50px 0 30px;
  background: var(--bg-light);
  text-align: center;
}
.contact-hero h1 {
  font-weight: 800;
  color: var(--primary);
}
.contact-section {
  padding: 60px 0;
}
.contact-info h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-info li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.contact-info li i {
  color: var(--secondary);
  width: 28px;
  font-size: 1.2rem;
}
.contact-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.contact-info a:hover { color: var(--secondary); }

/* FOOTER */
.footer {
  background: var(--primary);
  color: #dce5f0;
  padding: 50px 0 20px;
}
.footer h5, .footer h6 {
  color: #fff;
  font-weight: 700;
}
.footer a {
  color: #b0c4de;
  text-decoration: none;
}
.footer a:hover { color: #fff; }
.footer ul li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: #8aa0c0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-image-wrapper { 
    margin-top: 2rem; 
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .floating-card { 
    display: flex; 
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  .card-1 { left: 0; }
  .card-2 { right: 0; }
  .navbar-brand .brand-tagline { display: none; }
  .btn-cta { padding: 0.4rem 1.2rem; font-size: 0.9rem; }
  .about-image-wrapper { max-width: 100%; }
}
@media (max-width: 768px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .contact-hero h1 { font-size: 2rem; }
}
@media (max-width: 576px) {
  .hero-image-placeholder { 
    max-width: 100%; 
    aspect-ratio: 1/1.2;
  }
  .floating-card { 
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
  .card-1 { top: 5%; left: 5%; }
  .card-2 { bottom: 8%; right: 5%; }
  .work-badge { font-size: 0.75rem; padding: 0.4rem 1.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .service-card { padding: 1.5rem 1rem; }
  .testimonial-card { padding: 1.5rem; }
  .footer .row > div { margin-bottom: 1.5rem; }
}