/* ==========================================================================
   ED HANDYMAN SERVICES LTD - OFFICIAL STYLESHEET
   Domain: edhandyman.co.uk
   Contact: Efraim Doğan | 07596830808
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #F59E0B;
  --primary-hover: #D97706;
  --primary-light: #FEF3C7;
  --primary-dark: #B45309;
  
  --secondary: #0F172A;
  --secondary-light: #1E293B;
  --secondary-card: #182234;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-alt: #F1F5F9;
  
  --border-light: #E2E8F0;
  --border-focus: #F59E0B;
  
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5D;
  --success: #10B981;
  --danger: #EF4444;
  
  /* Radii & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-primary: 0 10px 20px -5px rgba(245, 158, 11, 0.35);
  
  /* Layout */
  --container-max: 1240px;
  --header-height: 80px;
  --topbar-height: 40px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px; /* Space for mobile sticky CTA bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  background-color: var(--primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   TOP NOTIFICATION BAR
   ========================================================================== */
.top-bar {
  background-color: var(--secondary);
  color: var(--text-white);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.top-bar-badge {
  background: rgba(245, 158, 11, 0.2);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
}

.top-bar-text-mobile {
  display: none;
}

/* Mobile Compact Top Bar: Clean single line without wrapping */
@media (max-width: 767px) {
  .top-bar {
    padding: 6px 0;
    font-size: 0.76rem;
  }

  .top-bar-inner {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .top-bar-right {
    display: none !important;
  }

  .top-bar-left {
    justify-content: center;
    white-space: nowrap;
  }

  .top-bar-text-desktop {
    display: none !important;
  }

  .top-bar-text-mobile {
    display: inline !important;
  }

  .top-bar-badge {
    font-size: 0.68rem;
    padding: 2px 7px;
    white-space: nowrap;
  }
}

/* ==========================================================================
   MAIN NAVIGATION HEADER
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.main-header .container {
  max-width: 1360px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo-link img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--secondary);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-title span {
  color: var(--primary);
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-links {
  display: none;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--secondary);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ==========================================================================
   SUBPAGE HERO & BREADCRUMBS
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 50px 0;
  position: relative;
  border-bottom: 3px solid var(--primary);
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 2.4rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: #94A3B8;
  font-size: 1.1rem;
  max-width: 650px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 14px;
}

.breadcrumb-nav a {
  color: #CBD5E1;
}

.breadcrumb-nav a:hover {
  color: var(--primary);
}

.breadcrumb-nav .separator {
  color: var(--primary);
}

.breadcrumb-nav .current {
  color: var(--primary);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Call Button in Header */
.btn-header-call {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn-header-call {
    display: inline-flex;
  }
}

.btn-header-call:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn-header-call svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background-color: var(--whatsapp);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
  padding: 24px 20px;
  z-index: 999;
}

.mobile-nav-drawer.active {
  display: block;
}

.mobile-nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.mobile-nav-drawer ul a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  display: block;
  padding: 6px 0;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
}

.hero-content h1 .highlight {
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.hero-content h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(245, 158, 11, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-craftsman-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
  max-width: 540px;
}

.craftsman-thumb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--primary);
  flex-shrink: 0;
}

.craftsman-details {
  display: flex;
  flex-direction: column;
}

.craftsman-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.verified-tick {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.craftsman-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-large {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseAnim 1.8s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

@media (min-width: 576px) {
  .hero-trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
}

.trust-badge-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-dark);
  flex-shrink: 0;
}

/* HERO QUICK ESTIMATE FORM CARD */
.hero-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.hero-form-header {
  margin-bottom: 20px;
}

.hero-form-header h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.hero-form-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background-color: var(--bg-alt);
  color: var(--secondary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 6px;
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.form-security-note svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* ==========================================================================
   STAT COUNTER STRIP
   ========================================================================== */
.stats-strip {
  background-color: var(--secondary);
  color: #FFFFFF;
  padding: 36px 0;
  border-top: 4px solid var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-box {
  padding: 10px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: #94A3B8;
  font-weight: 500;
}

/* ==========================================================================
   SERVICES SECTION (10 Core Services)
   ========================================================================== */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -6px rgba(15, 23, 42, 0.12), 0 6px 16px -4px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.5);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  border-top-left-radius: var(--radius-md);
  transition: height 0.3s ease;
  z-index: 15;
}

.service-card:hover::after {
  height: 100%;
}

.service-card-thumb {
  position: relative;
  width: 100%;
  height: 190px;
  background-color: var(--bg-alt);
  border-top-left-radius: calc(var(--radius-md) - 1px);
  border-top-right-radius: calc(var(--radius-md) - 1px);
}

.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: calc(var(--radius-md) - 1px);
  border-top-right-radius: calc(var(--radius-md) - 1px);
  transition: transform 0.4s ease;
  clip-path: inset(0 0 0 0 round var(--radius-md) var(--radius-md) 0 0);
}

.service-card:hover .service-card-thumb img {
  transform: scale(1.06);
}

.service-thumb-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.service-thumb-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  z-index: 10;
  border: 3px solid #FFFFFF;
  transition: all 0.25s ease;
}

.service-card:hover .service-thumb-icon {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.service-thumb-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.service-card-body {
  padding: 30px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--secondary);
  min-height: 3.3rem;
  display: flex;
  align-items: flex-start;
}

.service-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 16px;
  min-height: 4.1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-grow: 1;
}

.service-features li {
  font-size: 0.84rem;
  color: var(--secondary-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.service-features li svg {
  width: 15px;
  height: 15px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card-action {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-action a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-action a:hover {
  color: var(--primary-dark);
}

.service-card-action a svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.service-card-action a:hover svg {
  transform: translateX(4px);
}


/* ==========================================================================
   RECENT WORK / PROJECT GALLERY SHOWCASE
   ========================================================================== */
.gallery-section {
  padding: 85px 0;
  background: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(245, 158, 11, 0.4);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.06);
}

.gallery-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.gallery-card-body {
  padding: 18px 16px;
}

.gallery-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--secondary);
}

.gallery-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.gallery-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.gallery-location svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   FLYER & CREDENTIALS SHOWCASE
   ========================================================================== */
.credentials-section {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .credentials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.credentials-image-wrap {
  background: #FFFFFF;
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  text-align: center;
}

.credentials-image-wrap img {
  border-radius: var(--radius-md);
  margin: 0 auto;
}

.credentials-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.credentials-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

@media (min-width: 600px) {
  benefit-list {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
}

.benefit-content h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.benefit-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ==========================================================================
   COVERAGE AREAS SECTION (London Postcodes)
   ========================================================================== */
.coverage-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .coverage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.coverage-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 24px;
  border-top: 3px solid var(--primary);
  transition: var(--transition);
}

.coverage-card:hover {
  background: #FFFFFF;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.coverage-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coverage-card h3 svg {
  width: 18px;
  height: 18px;
  color: var(--primary-dark);
}

.postcode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.postcode-tag {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: var(--secondary);
}

.coverage-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   REVIEWS / TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #FFFFFF;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 14px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-text {
  font-size: 0.95rem;
  color: var(--secondary-light);
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-answer-inner {
  padding-bottom: 20px;
}

/* ==========================================================================
   CONTACT & BOOKING SECTION
   ========================================================================== */
.contact-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #0B1120 100%);
  color: #FFFFFF;
}

.contact-section .section-eyebrow {
  background: rgba(245, 158, 11, 0.2);
  color: var(--primary);
}

.contact-section .section-header h2 {
  color: #FFFFFF;
}

.contact-section .section-header p {
  color: #94A3B8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-direct-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.contact-direct-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateX(4px);
}

.direct-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.direct-icon.phone-bg {
  background: rgba(245, 158, 11, 0.2);
  color: var(--primary);
}

.direct-icon.whatsapp-bg {
  background: rgba(37, 211, 102, 0.2);
  color: var(--whatsapp);
}

.direct-icon svg {
  width: 24px;
  height: 24px;
}

.direct-details h4 {
  color: #CBD5E1;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.direct-details a, .direct-details span {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
}

.booking-form-box {
  background: #FFFFFF;
  color: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.booking-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.booking-form-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: #0B1120;
  color: #94A3B8;
  padding: 60px 0 24px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #64748B;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #64748B;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ==========================================================================
   STICKY MOBILE BOTTOM BAR (London Handyman High-Conversion Standard)
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  padding: 10px 16px;
  gap: 10px;
  z-index: 1050;
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}

.mobile-btn-call {
  background: var(--secondary);
  color: #FFFFFF;
}

.mobile-btn-whatsapp {
  background: var(--whatsapp);
  color: #FFFFFF;
}

.mobile-sticky-btn svg {
  width: 18px;
  height: 18px;
}

/* Modal Toast */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (Bottom-Right WhatsApp & Phone)
   ========================================================================== */
.floating-contact-wrap {
  position: fixed;
  bottom: 86px;
  right: 18px;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .floating-contact-wrap {
    bottom: 28px;
    right: 26px;
  }
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.floating-phone {
  background: var(--secondary);
  color: #FFFFFF;
  padding: 12px 18px;
  border: 2px solid rgba(245, 158, 11, 0.6);
}

.floating-phone svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.floating-whatsapp {
  background: var(--whatsapp);
  color: #FFFFFF;
  padding: 12px 18px;
  position: relative;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.floating-text {
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* Pulsing effect for WhatsApp floating button */
.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-full);
  border: 2px solid var(--whatsapp);
  animation: pulseWhatsapp 2s infinite;
  pointer-events: none;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ==========================================================================
   PROJECT SHOWCASE & CRAFTSMANSHIP GALLERY (TILING & FLOORING)
   ========================================================================== */
.showcase-section {
  padding: 80px 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.showcase-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.4);
}

.showcase-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #0F172A;
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.showcase-card:hover .showcase-img-wrap img {
  transform: scale(1.04);
}

.showcase-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 158, 11, 0.5);
  z-index: 2;
}

.showcase-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.showcase-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.showcase-meta-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-dark);
  font-weight: 600;
}

.showcase-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.35;
}

.showcase-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showcase-tag {
  background: var(--bg-alt);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

