/* Andy Bull Services - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --mid: #2d2d2d;
  --gray: #888;
  --light-gray: #f5f4f0;
  --white: #ffffff;
  --accent: #c8a96e;
  --accent-dark: #a8874e;
  --text: #2d2d2d;
  --text-light: #666;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 10px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.tick-green { color: #3dba6e; font-weight: 700; }

/* ── Layout ──────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--light { background: var(--light-gray); }

/* ── Mobile sticky phone bar ────────────────── */
.phone-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}
.phone-bar a { color: var(--white); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
@media (max-width: 768px) { .phone-bar { display: block; } body { padding-bottom: 54px; } }

/* ── Header ──────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1140px; margin: 0 auto;
}
.header__logo img { height: 64px; width: auto; }
.header__contact {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.9rem; color: var(--text-light);
}
.header__contact a { display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.header__contact a:hover { color: var(--accent); }
.header__phone-cta {
  background: var(--dark); color: var(--white) !important;
  padding: 0.6rem 1.4rem; border-radius: 10px;
  font-weight: 500; font-size: 1.4rem !important;
  transition: background 0.2s !important;
}
.header__phone-cta:hover { background: var(--accent) !important; color: var(--white) !important; }
.header { border-radius: 0; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: 1.35rem; font-weight: 500; color: var(--text); transition: color 0.2s; position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transition: transform 0.2s; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover { color: var(--dark); }

.nav__dropdown { position: relative; }
.nav__dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; font-size: 1.35rem; font-weight: 500; color: var(--text); }
.nav__dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 0.5rem 0;
  margin-top: 0;
}
.nav__dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown:hover::after { display: block; }
.nav__dropdown-menu a { display: block; padding: 0.65rem 1.2rem; font-size: 1.275rem; color: var(--text); transition: background 0.15s, color 0.15s; }
.nav__dropdown-menu a:hover { background: var(--light-gray); color: var(--dark); }
.nav__dropdown-menu a::after { display: none; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: all 0.3s; }

@media (max-width: 900px) {
  .nav, .header__contact { display: none; }
  .hamburger { display: block; }
  .mobile-nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark); z-index: 300; padding: 2rem 1.5rem;
    flex-direction: column; gap: 0;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav__close { align-self: flex-end; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; margin-bottom: 2rem; }
  .mobile-nav a { color: var(--white); font-size: 1.3rem; font-family: var(--font-display); padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: block; }
  .mobile-nav__phone { margin-top: 2rem; background: var(--accent); color: var(--white) !important; padding: 1rem; border-radius: 10px; text-align: center; font-weight: 500; border-bottom: none !important; }
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1543503103-f94a0036ed9d?auto=format&fit=crop&w=2070&q=80');
  background-size: cover; background-position: center;
}
.hero__overlay { position: absolute; inset: 0; background: rgba(15,15,15,0.62); }
.hero__content { position: relative; z-index: 2; max-width: 860px; }
.hero__eyebrow {
  display: inline-block; color: var(--accent); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero__title { color: var(--white); margin-bottom: 1rem; }
.hero__subtitle { font-family: var(--font-display); font-style: italic; font-size: clamp(2.2rem, 4vw, 2.8rem); color: rgba(255,255,255,0.8); margin-bottom: 0.8rem; }
.hero__desc { font-size: 2rem; color: rgba(255,255,255,0.7); max-width: 740px; margin: 0 auto 2.5rem; line-height: 1.6; }
.hero__badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__badge { background: rgba(40,40,40,0.85); border: 1px solid rgba(80,80,80,0.6); color: var(--white); padding: 0.5rem 1.2rem; border-radius: 20px; font-size: 1.6rem; }
.hero__badge, .form-success { --tick-color: #3dba6e; }
.hero__badge::first-letter { color: #3dba6e; }
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  cursor: pointer; transition: all 0.2s; border: 2px solid transparent;
}
.btn--primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn--outline { background: rgba(40,40,40,0.85); color: var(--white); border-color: rgba(80,80,80,0.6); }
.btn--outline:hover { background: rgba(60,60,60,0.95); border-color: rgba(120,120,120,0.8); }
.btn--dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn--dark:hover { background: var(--mid); }

/* ── Trust bar ────────────────────────────────── */
.trust-bar { background: var(--light-gray); padding: 2rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: nowrap; overflow-x: auto; padding: 0 1rem; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 1.1rem; font-weight: 500; color: var(--text); white-space: nowrap; }
.trust-item svg { color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }

/* ── About ────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 1.5rem; text-align: center; }
.value-card__icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.value-card h3 { color: var(--white); font-size: 1rem; font-family: var(--font-body); font-weight: 500; margin-bottom: 0.4rem; }
.value-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ── Services grid ───────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
  display: flex; flex-direction: column; background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 2rem; transition: all 0.3s;
  text-decoration: none; color: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.service-card__icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.service-card h3 { color: var(--white); margin-bottom: 0.8rem; font-size: 1.3rem; font-family: var(--font-display); font-weight: 600; }
.service-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.7; flex-grow: 1; }
.service-card__features { display: flex; flex-direction: column; gap: 0.4rem; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1rem; margin-top: auto; }
.service-card__feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.service-card__feature::before { content: '✓'; color: #3dba6e; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

/* ── Portfolio ────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.portfolio-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1/1; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__overlay h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.portfolio-item__overlay p { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin: 0; }

/* ── Testimonials ─────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 14px; padding: 1.5rem; box-shadow: var(--shadow); }
.testimonial-stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.testimonial-text { font-style: italic; color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; }
.testimonial-author { font-weight: 500; font-size: 0.85rem; }
.testimonial-date { font-size: 0.78rem; color: var(--gray); }

/* ── Contact section ──────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-info { color: rgba(255,255,255,0.85); }
.contact-info h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info__item { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1.1rem; font-size: 1.05rem; }
.contact-info__item a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.contact-info__item a:hover { color: var(--accent); }
.contact-info__item span { color: rgba(255,255,255,0.85); }
.contact-info__icon { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* ── Quote form ───────────────────────────────── */
.quote-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 0.75rem 1rem;
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; background: rgba(72,199,140,0.15); border: 1px solid rgba(72,199,140,0.4); color: #48c78e; padding: 1rem; border-radius: var(--radius); font-size: 0.9rem; }
.form-error { display: none; background: rgba(241,70,104,0.15); border: 1px solid rgba(241,70,104,0.4); color: #f14668; padding: 1rem; border-radius: var(--radius); font-size: 0.9rem; }

/* ── Social proof ─────────────────────────────── */
.social-proof { background: var(--mid); padding: 3rem 0; text-align: center; }
.social-proof p { color: rgba(255,255,255,0.6); margin-top: 0.75rem; font-size: 0.9rem; }
.checkatrade-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #004080; color: var(--white);
  padding: 0.7rem 1.4rem; border-radius: 10px;
  margin-top: 1rem; font-weight: 500; transition: background 0.2s;
}
.checkatrade-btn:hover { background: #002d5a; }

/* ── Footer ───────────────────────────────────── */
.footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 2rem 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a:hover { color: var(--white); }
.footer__credit a { color: var(--accent); }

/* ── Page hero (inner pages) ─────────────────── */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  background: var(--dark);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 640px; margin: 0 auto; }

/* ── Inner page content ───────────────────────── */
.page-content { padding: 4rem 0; }
.page-content h2 { margin: 2.5rem 0 1rem; color: var(--dark); }
.page-content h3 { margin: 1.5rem 0 0.5rem; color: var(--dark); }
.page-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content ul li { margin-bottom: 0.4rem; color: var(--text-light); font-size: 1.05rem; }
.content-box { background: var(--light-gray); border-radius: 14px; padding: 2rem; margin: 2rem 0; }
.content-box h2, .content-box h3 { color: var(--dark); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; } }
.images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.images-grid img { border-radius: var(--radius); width: 100%; height: 260px; object-fit: cover; }
@media (max-width: 640px) { .images-grid { grid-template-columns: 1fr; } }

/* ── FAQ ──────────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--dark); }
.faq-answer { color: var(--text-light); font-size: 0.95rem; }
.faq-featured { background: var(--light-gray); border-left: 4px solid var(--accent); border-radius: 0 14px 14px 0; padding: 1.5rem; margin-bottom: 2.5rem; }
.faq-featured h3 { margin-bottom: 0.8rem; }

/* ── Location pages ───────────────────────────── */
.location-areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin: 2rem 0; }
.location-area { background: var(--light-gray); border-radius: 12px; padding: 1rem; text-align: center; font-size: 0.9rem; font-weight: 500; }

/* ── Section titles ───────────────────────────── */
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 { margin-bottom: 0.8rem; }
.section-title p { color: var(--text-light); max-width: 640px; margin: 0 auto; }
.section-title--light h2 { color: var(--white); }
.section-title--light p { color: rgba(255,255,255,0.6); }

/* ── Utilities ────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── Schema hidden ────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { padding-top: 6rem; }
  .header__inner { padding: 0.6rem 1rem; }
}
