/* =========================
   1. VARIABLES & RESET
========================= */
:root {
  --orange: #ff5100;    
  --orange-glow: #ff7b3b;
  --black: #0a0a0a;     
  --navy: #0f172a;      
  --grey-light: #f8f9fa; 
  --text-main: #ffffff;
  --text-dark: #333333; 
  
  --radius: 6px;
  --font-main: 'Segoe UI', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--black);
  color: var(--text-main);
  line-height: 1.6;
}

a { text-decoration: none; transition: 0.3s; }
.container { width: 90%; max-width: 1200px; margin: auto; }

/* =========================
   2. HEADER & LOGO
========================= */
.header {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 20px 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.nav-container { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

/* LEFT: LOGO */
.brand { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 50px; width: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-weight: 800; font-size: 20px; letter-spacing: 1px; color: white; }
.brand-text .sub { font-size: 11px; color: var(--orange); font-weight: 600; letter-spacing: 2px; }

/* RIGHT: DESKTOP CONTACT (FIXED) */
.nav-contact { 
  display: flex; 
  align-items: center;
  /* This forces the box to never shrink or squash */
  flex-shrink: 0; 
  margin-left: auto;
}

.nav-phone { 
  display: flex; 
  flex-direction: row; /* FORCE row so it can't stack */
  align-items: center; 
  gap: 12px; 
  color: white; 
  font-weight: 700; 
  font-size: 18px; 
  /* This forces the text to stay on one line no matter what */
  white-space: nowrap; 
}

.nav-phone:hover { color: var(--orange); }

/* SVG Icon in Header */
.icon-svg { width: 20px; height: 20px; fill: var(--orange); }


/* =========================
   3. HERO SECTION
========================= */
.hero {
  position: relative;
  height: 85vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%); }
.hero-content { position: relative; max-width: 800px; margin: auto; }

.badge {
  background: rgba(255, 81, 0, 0.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  display: inline-block; padding: 5px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 25px;
}
.hero h1 { font-size: 52px; line-height: 1.1; font-weight: 900; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px; }
.hero p { font-size: 18px; color: #e5e5e5; margin-bottom: 40px; max-width: 700px; margin-inline: auto; }

.btn-group { display: flex; gap: 20px; justify-content: center; }
.btn { padding: 15px 40px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; border-radius: 4px; }
.btn-primary { background: var(--orange); color: white; border: 2px solid var(--orange); }
.btn-primary:hover { background: var(--orange-glow); border-color: var(--orange-glow); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: white; color: black; }


/* =========================
   4. WHY CHOOSE US
========================= */
.why-us { background: var(--navy); padding: 80px 0; text-align: center; border-bottom: 4px solid var(--orange); }
.why-content h2 { font-size: 36px; margin-bottom: 10px; }
.subtitle { color: #a0aec0; margin-bottom: 50px; max-width: 600px; margin-inline: auto; }

.why-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.why-item { max-width: 300px; }

/* SVG ICONS */
.why-icon-box { margin-bottom: 15px; color: var(--orange); }
.icon-svg-large { width: 50px; height: 50px; fill: currentColor; }

.why-item h3 { color: var(--orange); margin-bottom: 10px; font-size: 20px; }
.why-item p { color: #ccc; font-size: 15px; }


/* =========================
   5. SERVICES
========================= */
.light-bg { background: var(--grey-light); color: var(--text-dark); }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 36px; color: var(--black); margin-bottom: 10px; font-weight: 800; }
.section-header p { color: #666; font-size: 18px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.card {
  background: white; padding: 30px; border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative; border-bottom: 3px solid transparent; transition: 0.3s;
}
.card:hover { transform: translateY(-5px); border-bottom-color: var(--orange); }

.card-num { 
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; 
  color: white; background: var(--orange);
  width: 40px; height: 30px; 
  border-radius: 4px; margin-bottom: 15px;
}
.card h3 { font-size: 20px; margin-bottom: 10px; color: var(--black); font-weight: 700; }
.card p { color: #666; font-size: 15px; line-height: 1.6; }


/* =========================
   6. GET A QUOTE
========================= */
.quote-section { background: var(--navy); padding: 80px 0; }
.quote-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.quote-text h2 { font-size: 36px; margin-bottom: 20px; }
.quote-text p { color: #a0aec0; margin-bottom: 40px; font-size: 18px; }

.detail-row { display: flex; gap: 15px; margin-bottom: 25px; align-items: center; }

.icon-circle { 
  background: rgba(255,255,255,0.1); 
  width: 50px; height: 50px; 
  border-radius: 50%; 
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.icon-svg-med { width: 24px; height: 24px; fill: currentColor; }

.detail-row a { color: white; font-weight: bold; font-size: 18px; }

/* FORM */
.form-box { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.form-box h3 { color: var(--black); margin-bottom: 20px; font-size: 24px; text-align: center; }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; font-size: 15px;
}
.form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--orange); border-color: transparent; }
.btn-submit { width: 100%; background: var(--navy); color: white; padding: 15px; border: none; font-weight: bold; cursor: pointer; border-radius: 5px; font-size: 16px; transition: 0.3s; }
.btn-submit:hover { background: var(--orange); }

.footer { background: black; padding: 30px 0; text-align: center; border-top: 1px solid #222; }
.copyright { color: #888; font-size: 14px; }


/* =========================
   7. MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  /* HIDE HEADER CONTACT ON MOBILE */
  .nav-contact { display: none !important; }

  /* Hero & Text Adjustments */
  .hero h1 { font-size: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .quote-container { grid-template-columns: 1fr; }
  .why-grid { flex-direction: column; align-items: center; }
  
  /* --- THE BUTTON FIX --- */
  .btn-group { 
    flex-direction: row; 
    width: 100%; 
    gap: 10px; 
    padding: 0 10px; 
  }
  .btn { 
    width: 50%; 
    padding: 15px 5px; 
    font-size: 13px; 
    display: flex; align-items: center; justify-content: center;
  }
}