/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B00;
  --orange-dark: #e05e00;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --dark3: #222;
  --gray: #888;
  --light-gray: #f5f5f5;
  --white: #fff;
  --text: #1a1a1a;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--orange-dark); }
.btn-lg { font-size: 1.05rem; padding: 14px 28px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid #2a2a2a;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.logo-icon { color: var(--orange); font-size: 1.3rem; }
.logo-inc { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 12px;
  border-top: 1px solid #2a2a2a;
}
.mobile-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.btn-mobile-cta {
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 80px 24px;
  width: 100%;
}
.hero-content {
  max-width: 600px;
}
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--orange);
  padding: 0;
  box-shadow: 0 8px 40px rgba(255, 107, 0, 0.25);
}
.badge {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  color: var(--orange-dark);
  border: 1px solid rgba(255,107,0,0.5);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.accent { color: var(--orange); }
.hero-sub {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid #999;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: transparent; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  padding-top: 32px;
}
.stat span {
  display: block;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 700;
}
.stat small { color: #666; font-size: 0.82rem; }

/* ===== SECTION BASE ===== */
.section { padding: 88px 0; }
.section-dark {
  background: var(--dark2);
  color: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p { color: var(--gray); font-size: 1.05rem; }
.section-dark .section-header p { color: #aaa; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card ul {
  list-style: none;
  padding: 0;
}
.service-card ul li {
  color: #555;
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: #242424;
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--orange); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.why-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { color: #999; font-size: 0.92rem; line-height: 1.65; }

/* ===== MAP ===== */
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-cta { text-align: center; margin-top: 20px; }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid #ccc;
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ===== CONTACT CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.contact-card {
  background: #242424;
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--orange); }
.contact-card-icon { font-size: 2.4rem; line-height: 1; }
.contact-card h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.contact-card p { color: #999; font-size: 0.92rem; line-height: 1.6; }
.contact-card-insta:hover { border-color: #e1306c; }
.btn-insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  font-size: 0.88rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 48px 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.footer-tagline { color: #777; font-size: 0.88rem; margin-bottom: 12px; }
.footer-phone {
  display: inline-block;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-phone:hover { color: var(--orange-dark); }
.footer-social { margin: 14px 0; }
.footer-insta-link {
  display: inline-flex;
  align-items: center;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-insta-link:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; color: #555; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    text-align: center;
  }
  .hero-logo-wrap { order: -1; }
  .hero-logo { width: 240px; height: 240px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }

  .services-grid,
  .why-grid { grid-template-columns: 1fr; }

  .contact-cards { grid-template-columns: 1fr; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-card { padding: 28px 20px; }
}
