/* SMD PACKERS & MOVERS - NEW STYLESHEET
  All styles are in this one file. No external CDNs are used.
*/

/* ----- 1. Global Reset & Variables ----- */
:root {
  --primary-color: #6aaef7; /* A strong, trustworthy blue */
  --primary-dark: #004085;
  --secondary-color: #f0ad4e; /* A warm, attention-grabbing orange/yellow */
  --dark-text: #222;
  --body-text: #555;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --border-color: #ddd;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background-color: var(--white);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4 {
  color: var(--dark-text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--body-text);
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.25rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--body-text);
}

.bg-light {
  background-color: var(--light-bg);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ----- 2. Buttons ----- */
.btn {
  display: inline-flex;     /* <-- CHANGED */
  align-items: center;     /* <-- ADDED */
  justify-content: center; /* <-- ADDED */
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  /* line-height: 1.4; */  /* <-- REMOVED */
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-dark);
}

/* ----- 3. Header & Navigation ----- */
.topbar {
  background-color: var(--light-bg);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-contacts a {
  margin-left: 1rem;
  color: var(--body-text);
  font-weight: 500;
}
.topbar-contacts a:hover {
  color: var(--primary-color);
}

.header {
  background-color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--dark-text);
}
.brand:hover {
  color: var(--primary-color);
}
.brand img {
  width: 40px; /* Or your logo's width */
  height: 40px; /* Or your logo's height */
  margin-right: 0.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
}
.main-nav a {
  margin-left: 1rem; 
  font-size: 0.95rem; 
  font-weight: 500;
  color: var(--dark-text);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  vertical-align: middle; /* <-- ADD THIS LINE */
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}
.main-nav .btn {
  margin-left: 1.5rem;
}

.burger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}
.mobile-menu a {
  display: block;
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  color: var(--dark-text);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background-color: var(--light-bg);
  color: var(--primary-color);
}
.mobile-menu.active {
  display: flex;
}

/* ----- 4. Hero Section ----- */
.hero {
  background-color: var(--light-bg);
  padding: 4rem 0;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-actions .btn {
  margin: 0.5rem;
}
.hero-features {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-features span {
  font-weight: 500;
  color: var(--dark-text);
}

/* ----- 5. Service Cards ----- */
.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.card-img {
  width: 100%;
  height: auto; /* <-- CHANGED (was 200px) */
  /* object-fit: cover; */ /* <-- REMOVED */
  border-bottom: 1px solid var(--border-color);
}
.card-body {
  padding: 1.5rem;
}
.card-body h3 {
  color: var(--primary-dark);
}
.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
}

/* ----- 6. Why Choose Us Section ----- */
.why-us-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.checklist {
  list-style: none;
  margin-top: 1.5rem;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ----- 7. Testimonials ----- */
.testimonial-card {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-author .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.75rem;
}
.testimonial-author div {
  line-height: 1.4;
}
.testimonial-author span {
  font-size: 0.9rem;
  color: var(--body-text);
}

/* ----- 8. Final CTA ----- */
.cta-section {
  background-color: var(--primary-dark);
  color: var(--white);
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  font-size: 2.25rem;
}
.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.cta-actions .btn {
  margin: 0.5rem;
}

/* ----- 9. Footer ----- */
.footer {
  background-color: var(--dark-text);
  color: #ccc;
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
.footer-col {
  font-size: 0.95rem;
}
.footer-col .brand {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-col .brand img {
  filter: brightness(0) invert(1); /* Makes logo white */
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-col p {
  margin-bottom: 0.5rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #ccc;
}
.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-contacts a {
  color: #ccc;
  font-weight: bold;
}
.footer-contacts a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* ----- 10. Floating Action Buttons (FAB) ----- */
.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  z-index: 101;
}
.fab-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: bold;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.fab-container a.fab-wa {
  background-color: #25D366; /* WhatsApp Green */
}
.fab-container a:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: scale(1.05);
}
.fab-container a.fab-wa:hover {
  background-color: #128C7E;
}

/* ----- 11. Responsive (Mobile) ----- */
@media (max-width: 900px) {
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .why-us-image {
    order: -1; /* Puts image on top on mobile */
    margin-bottom: 2rem;
  }
  .footer-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.5rem; }
  h2, .section-header h2, .cta-section h2 { font-size: 1.8rem; }
  
  .topbar {
    text-align: center;
  }
  .topbar .container {
    flex-direction: column;
    gap: 0.25rem;
  }

  .main-nav {
    display: none;
  }
  .burger {
    display: block;
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Make FABs take full width */
  .fab-container {
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: row;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
  .fab-container a {
    flex: 1;
    margin-top: 0;
    border-radius: 0;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem;
  }
  .fab-container a:hover {
    transform: none;
  }
}
/* ----- 12. About Page Features (Add this) ----- */
.feature-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.feature-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.feature-box h3 {
  color: var(--primary-dark);
  font-size: 1.2rem;
}
/* ----- 13. Notice Box (Add this) ----- */
.notice {
  background-color: #fdfaf4; /* A light yellow/cream */
  border-left: 5px solid var(--secondary-color);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1.5rem;
}
.notice strong {
  color: var(--primary-dark);
}
/* ----- 14. Contact Page & Form (Add this) ----- */
.grid-contact {
  display: grid;
  grid-template-columns: 1fr 2fr; /* 1/3 for details, 2/3 for form */
  gap: 3rem;
}

.contact-details {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
}
.contact-details h3 {
  color: var(--primary-dark);
  margin-top: 0;
}
.contact-item {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.5;
}
.contact-item strong {
  display: block;
  color: var(--dark-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-item a {
  font-weight: 500;
}
.contact-item span {
  font-weight: 500;
  color: var(--dark-text);
}

.contact-form h3 {
  margin-top: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: bold;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: #fcfcfc;
  transition: all 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
  background-color: var(--white);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

/* Responsive adjustment for contact page */
@media (max-width: 900px) {
  .grid-contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .form-group-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-details {
    padding: 1.5rem;
  }
}
/* ----- 16. Burger Button Text (Add this) ----- */
.burger {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--light-bg);
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
.burger:hover {
  background-color: #eee;
}

/* Fix for checkmarks that were replaced with '*' */
.checklist li::before {
  content: '*' !important; /* Use asterisk instead of check */
  color: var(--primary-color) !important;
  font-weight: bold;
}
/* ----- 17. FAQ Page List (Add this) ----- */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-item h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-top: 0;
}

.faq-item p {
  margin-bottom: 1rem;
}
/* ----- 18. Policy Page (Add this) ----- */
.policy-section {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.policy-section h2 {
  color: var(--primary-dark);
  font-size: 1.5rem;
}

.policy-section h3 {
  color: var(--dark-text);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
}