/* ============================================================
   TF PACKERS AND MOVERS — v2.0 (Cache-Busting Architecture)
   ============================================================ */

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

:root {
  /* Colors */
  --primary: #FF6B00;
  --primary-dark: #E55A00;
  --secondary: #1B2A4A;
  --secondary-light: #2A3F6A;
  --light: #F4F7F6;
  --white: #FFFFFF;
  --text: #333333;
  --text-light: #666666;
  --success: #28A745;
  --border: #E5E7EB;

  /* Typography */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container: 1200px;
  --header-height: 80px;
}

/* Base Reset (Bulletproof) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* Absolute lockdown on horizontal scrolling */
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--secondary);
  line-height: 1.2;
}
a { text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* The Container (Rock Solid) */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  background: var(--primary);
  color: var(--white);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-phone {
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-phone i {
  color: var(--primary);
}
.hamburger {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: var(--secondary);
  color: var(--white);
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Quick Form */
.quick-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.quick-form-card h3 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: center;
}
.form-group {
  margin-bottom: 16px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
}
.btn-submit {
  width: 100%;
}

/* About Section */
.about {
  background: var(--light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature i {
  color: var(--primary);
  font-size: 1.5rem;
}
.about-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-img {
  height: 200px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-body {
  padding: 24px;
}
.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-body p {
  color: var(--text-light);
  margin-bottom: 20px;
}
.service-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Stats */
.stats {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 5px;
}

/* Why Choose */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list {
  margin-top: 30px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.why-item i {
  color: var(--success);
  font-size: 1.2rem;
}
.why-item h4 {
  margin: 0;
}

/* Process */
.process {
  background: var(--light);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
}
.process-step {
  position: relative;
  z-index: 2;
}
.process-icon {
  width: 80px; height: 80px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 4px solid var(--primary);
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testi-card {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
}
.stars {
  color: #FFC107;
  margin-bottom: 15px;
}
.testi-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-light);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}
.faq-question {
  padding: 20px;
  background: var(--light);
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 20px;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta h2 {
  color: var(--white);
}

/* Contact Info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.contact-info-card {
  background: var(--secondary);
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 5px;
}
.contact-item a {
  color: var(--white);
}
.contact-form {
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo .logo-text { color: var(--white); }
.footer h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.2rem;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

/* Page Specific Overrides */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--secondary), var(--dark));
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}

/* Success Alert */
.alert-success {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content, .about-grid, .why-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid, .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-actions .btn {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .services-grid, .testi-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
