/* ============================================
   Smiley's Furniture Removals - Main Stylesheet
   Professional Colours: Deep Navy, Orange, White
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1a3557;       /* Deep Navy Blue */
  --primary-dark: #0f2238;
  --accent: #f5821f;        /* Warm Orange */
  --accent-hover: #d96e10;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light-grey: #e9ecef;
  --mid-grey: #6c757d;
  --text-dark: #1a1a2e;
  --text-body: #3a3a4a;
  --shadow-sm: 0 2px 8px rgba(26,53,87,0.10);
  --shadow-md: 0 6px 24px rgba(26,53,87,0.14);
  --shadow-lg: 0 12px 40px rgba(26,53,87,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* --- Utility --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-accent { color: var(--accent); }
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  letter-spacing: 0.03em;
}
.btn:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.section-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary-dark);
  color: var(--light-grey);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--accent); font-weight: 600; }
.top-bar a:hover { color: #fff; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  gap: 16px;
}
.logo-area {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-area .logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.logo-area .logo-tagline {
  font-size: 0.72rem;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
}
.nav-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}
.nav-phone:hover { color: var(--accent); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 520px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,34,56,0.92) 0%, rgba(26,53,87,0.60) 60%, rgba(26,53,87,0.10) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}
.hero-content .section-label {
  background: var(--accent);
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  margin-bottom: 28px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--primary);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.trust-icon {
  font-size: 1.4rem;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }
.section-header { margin-bottom: 40px; }
.section-header.centered { text-align: center; }
.divider {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 10px 0 16px;
}
.divider.centered { margin: 10px auto 16px; }

/* ============================================
   SECTION 1: ABOUT / SPECIALIST
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-features {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
}
.about-features li::before {
  content: "✓";
  color: var(--white);
  background: var(--accent);
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  margin-top: 2px;
}

/* ============================================
   SECTION 2: STORAGE
   ============================================ */
.storage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.storage-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
  order: 2;
}
.storage-text { order: 1; }
.storage-highlight {
  background: var(--primary);
  color: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 1.02rem;
  font-style: italic;
}

/* ============================================
   SECTION 3: SERVICE AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.areas-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 16px 0 28px;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
  color: var(--text-body);
}
.areas-list li::before {
  content: "📍";
  font-size: 0.9rem;
}
.areas-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  background: var(--primary);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,130,31,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.80); }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-detail-icon {
  background: var(--accent);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text { color: var(--white); font-size: 0.97rem; }
.contact-detail-text strong { display: block; font-family: var(--font-heading); }
.contact-detail-text a { color: rgba(255,255,255,0.85); }
.contact-detail-text a:hover { color: var(--accent); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 22px;
  color: var(--primary);
}
.form-group { margin-bottom: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  font-family: var(--font-heading);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,130,31,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { margin-top: 6px; }
.form-submit .btn { width: 100%; font-size: 1.05rem; padding: 14px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter var(--transition);
}
.gallery-item:hover img { filter: brightness(0.88) saturate(1.15); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,53,87,0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  font-size: 1.2rem;
}
.footer-brand .logo-tagline {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 16px; }
.footer-areas {
  columns: 2;
  column-gap: 20px;
}
.footer-areas li {
  list-style: none;
  font-size: 0.85rem;
  line-height: 2;
  break-inside: avoid;
}
.footer-areas li::before { content: "› "; color: var(--accent); font-weight: 700; }
.footer-contact li {
  list-style: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}
.footer-contact a { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-grid,
  .storage-grid,
  .areas-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .storage-img { order: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .hero { min-height: 400px; }
  .hero-content { padding: 40px 0; }
  .hero-buttons { flex-direction: column; }
  .hero-badge { display: none; }
  .trust-bar .container { gap: 16px; }
  .trust-item { font-size: 0.82rem; }
  .form-row { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .navbar .container { flex-wrap: wrap; }
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 2px; }
}
