/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #F5A623;
  --yellow-dark: #D4891A;
  --black: #0d0d0d;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #1f1f1f;
  --dark4: #252525;
  --white: #ffffff;
  --gray: #aaaaaa;
  --gray2: #888888;
  --font: 'Barlow', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: #fff; color: var(--dark); line-height: 1.6; font-size: 15px; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITIES ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); display: block; margin-bottom: 10px; }
.section-title { font-size: 2rem; font-weight: 800; line-height: 1.2; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; border: none; cursor: pointer; transition: all .2s; }
.btn-yellow { background: var(--yellow); color: #000; }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* ─── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a.active { border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }
.nav-cta { background: var(--yellow); color: #000; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 9px 16px; display: flex; align-items: center; gap: 7px; border: none; cursor: pointer; transition: background .2s; }
.nav-cta:hover { background: var(--yellow-dark); }
.nav-cta svg { width: 14px; height: 14px; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  background: linear-gradient(105deg, rgba(0,0,0,0.92) 40%, rgba(0,0,0,0.55) 100%),
              url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?w=1400&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 70px 24px 50px;
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hero-label::before { content: ''; display: block; width: 18px; height: 2px; background: var(--yellow); }
.hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; color: #fff; line-height: 1.15; max-width: 620px; margin-bottom: 18px; }
.hero h1 .highlight { color: var(--yellow); }
.hero-desc { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 460px; line-height: 1.7; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-features { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-feature { display: flex; align-items: flex-start; gap: 12px; }
.hero-feature-icon { width: 38px; height: 38px; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-feature-icon svg { width: 18px; height: 18px; color: var(--yellow); }
.hero-feature-text strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.hero-feature-text span { font-size: 11px; color: rgba(255,255,255,0.55); }

/* ─── SERVICES ─────────────────────────────────────────────── */
.services { padding: 80px 0; background: #fff; text-align: center; }
.services .section-title { margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid #e5e5e5; }
.service-card { border-right: 1px solid #e5e5e5; overflow: hidden; position: relative; text-align: left; }
.service-card:last-child { border-right: none; }
.service-card-img { height: 160px; overflow: hidden; position: relative; }
.service-card-img img { height: 100%; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-icon { position: absolute; bottom: -18px; left: 16px; width: 38px; height: 38px; background: var(--yellow); display: flex; align-items: center; justify-content: center; z-index: 2; }
.service-card-icon svg { width: 18px; height: 18px; color: #000; }
.service-card-body { padding: 32px 16px 20px; }
.service-card-body h3 { font-size: 13px; font-weight: 800; color: var(--dark); line-height: 1.3; margin-bottom: 8px; text-transform: uppercase; }
.service-card-body p { font-size: 12px; color: #666; line-height: 1.6; }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about { background: var(--black); padding: 80px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-left .section-label { margin-bottom: 8px; }
.about-left h2 { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.about-left p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 12px; }
.about-img { position: relative; height: 400px; overflow: hidden; }
.about-img img { height: 100%; object-position: center top; }
.why-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; display: block; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-item-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.why-icon { width: 38px; height: 38px; background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 18px; height: 18px; color: var(--yellow); }
.why-item h4 { font-size: 12px; font-weight: 800; color: #fff; text-transform: uppercase; line-height: 1.3; }
.why-item p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── PROJECTS ──────────────────────────────────────────────── */
.projects { padding: 80px 0; background: #fff; text-align: center; }
.projects .section-title { margin-bottom: 40px; }
.projects-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 32px; }
.project-thumb { height: 180px; overflow: hidden; position: relative; }
.project-thumb img { height: 100%; transition: transform .4s; }
.project-thumb:hover img { transform: scale(1.08); }
.project-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 60%); opacity: 0; transition: opacity .3s; }
.project-thumb:hover::after { opacity: 1; }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { background: var(--dark); padding: 80px 0; text-align: center; }
.testimonials .section-label { margin-bottom: 8px; }
.testimonials .section-title { color: #fff; margin-bottom: 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--dark3); padding: 28px; text-align: left; }
.testimonial-quote { font-size: 28px; color: var(--yellow); font-weight: 900; line-height: 1; margin-bottom: 10px; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars span { color: var(--yellow); font-size: 14px; }
.testimonial-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 16px; }
.testimonial-author strong { display: block; font-size: 13px; color: #fff; font-weight: 700; }
.testimonial-author span { font-size: 11px; color: var(--gray2); }

/* ─── BLOG ──────────────────────────────────────────────────── */
.blog { padding: 80px 0; background: #fff; text-align: center; }
.blog .section-label { margin-bottom: 8px; }
.blog .section-title { margin-bottom: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid #e5e5e5; margin-bottom: 32px; }
.blog-card { border-right: 1px solid #e5e5e5; text-align: left; }
.blog-card:last-child { border-right: none; }
.blog-card-img { height: 130px; overflow: hidden; }
.blog-card-img img { height: 100%; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 16px; }
.blog-date { font-size: 10px; color: var(--gray2); margin-bottom: 8px; display: block; }
.blog-card-body h3 { font-size: 12px; font-weight: 800; color: var(--dark); line-height: 1.4; margin-bottom: 12px; text-transform: uppercase; }
.blog-read { font-size: 11px; font-weight: 700; color: var(--yellow); display: flex; align-items: center; gap: 5px; }
.blog-read:hover { gap: 8px; }

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner { background: var(--yellow); padding: 28px 24px; }
.cta-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cta-banner-text { display: flex; align-items: center; gap: 14px; }
.cta-banner-text svg { width: 40px; height: 40px; color: #000; flex-shrink: 0; }
.cta-banner-text div strong { display: block; font-size: 15px; font-weight: 800; color: #000; }
.cta-banner-text div span { font-size: 12px; color: rgba(0,0,0,0.65); }
.btn-whatsapp { background: #000; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 13px 22px; display: inline-flex; align-items: center; gap: 8px; transition: background .2s; }
.btn-whatsapp:hover { background: #222; }
.btn-whatsapp svg { width: 18px; height: 18px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--black); padding: 50px 0 20px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 14px 0 18px; max-width: 220px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 30px; height: 30px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 12px; transition: background .2s; }
.footer-social a:hover { background: var(--yellow); color: #000; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-social-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-social-links { display: flex; flex-direction: column; gap: 8px; }
.footer-social-links a { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; transition: color .2s; }
.footer-social-links a:hover { color: var(--yellow); }
.footer-social-links a svg { width: 14px; height: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-bottom a { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--yellow); }

/* ─── WHATSAPP FLOAT ────────────────────────────────────────── */
.wa-float { position: fixed; right: 20px; bottom: 30px; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.45); z-index: 999; transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(3), .blog-card:nth-child(3) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid, .blog-grid, .projects-grid { grid-template-columns: 1fr; }
  .service-card, .blog-card { border-right: none; border-bottom: 1px solid #e5e5e5; }
  .hero h1 { font-size: 1.8rem; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}
