/* ============================================================
   ANIMAL INSTINCTS PET SITTING - MASTER STYLESHEET
   ============================================================ */

/* ======================================== */
/* ROOT VARIABLES */
/* ======================================== */
:root {
  --color-primary: #D0691B;
  --color-primary-dark: #713A0F;
  --color-accent-red: #AE290D;
  --color-dark: #211105;
  --color-text: #222222;
  --color-text-light: #5a4d44;
  --color-off-white: #FDF9F5;
  --color-white: #FFFFFF;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --container-max: 1300px;
  --header-height-desktop: 120px;
  --header-height-mobile: 74px;
  --topbar-height-desktop: 40px;
}

/* ======================================== */
/* RESET & BASE */
/* ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Text element selectors: font-size, font-weight, letter-spacing, line-height, color */
h1 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--color-white);
}

h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: var(--color-dark);
}

h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.4;
  color: var(--color-dark);
}

p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-text-light);
}

a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-primary);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--color-accent-red);
}

.btn {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  color: var(--color-white);
}

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow-pill {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  background: rgba(208, 105, 27, 0.14);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 14px;
}

cite {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  color: var(--color-primary-dark);
  font-style: normal;
  display: block;
  margin-top: 16px;
}

/* ======================================== */
/* SCROLL ANIMATIONS (FADE IN UP) */
/* ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================== */
/* BUTTONS */
/* ======================================== */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-red);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(174, 41, 13, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-outline-white {
  background: rgba(208, 105, 27, 0.45);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

/* ======================================== */
/* SECTION 0: TOP BAR */
/* ======================================== */
.top-bar {
  width: 100%;
  height: var(--topbar-height-desktop);
  background: var(--color-dark);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-info,
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-info li,
.top-bar-contact li {
  display: flex;
  align-items: center;
}

.top-bar-address span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.4;
  color: #e8d9cc;
}

.top-icon-svg {
  color: var(--color-primary);
  margin-right: 6px;
  flex-shrink: 0;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.4;
  color: #e8d9cc;
}

.top-bar-contact a:hover {
  color: var(--color-primary);
}

.top-bar-contact a.fb-icon {
  color: #e8d9cc;
}

.top-bar-contact a.fb-icon:hover {
  color: var(--color-primary);
}

/* ======================================== */
/* HEADER SECTION */
/* ======================================== */
.main-header {
  width: 100%;
  height: var(--header-height-desktop);
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease, height 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 6px 24px rgba(33, 17, 5, 0.15);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 72px;
  max-height: 72px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: var(--color-dark);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ======================================== */
/* HERO SECTION */
/* ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 870px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transition: opacity 2000ms ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 17, 5, 0.55), rgba(33, 17, 5, 0.65));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.4;
  color: var(--color-white);
  text-transform: uppercase;
  background: rgba(208, 105, 27, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 26px;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.22;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 34px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-btn {
  font-size: 18px;
}

/* ======================================== */
/* TITLE BAR SEPARATOR */
/* ======================================== */
.mini-title-bar {
  width: 100%;
  height: 40px;
  background-image: url('images/titlebar-background.jpg');
  background-size: cover;
  background-position: center;
}

/* ======================================== */
/* SUB-PAGE TITLE BAR */
/* ======================================== */
.page-titlebar {
  position: relative;
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-titlebar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 17, 5, 0.175), rgba(33, 17, 5, 0.275));
}

.page-titlebar-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-titlebar-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.page-titlebar-content h1 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 12px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.page-titlebar-content p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #f5e8dc;
}

/* ======================================== */
/* CALL TO ACTION BAR */
/* ======================================== */
.cta-bar {
  width: 100%;
  background: var(--color-off-white);
  padding: 50px 0;
  border-top: 1px solid #eee3d6;
  border-bottom: 1px solid #eee3d6;
}

.cta-bar-inner {
  text-align: center;
}

.cta-phone {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.cta-phone:hover {
  color: var(--color-accent-red);
}

.cta-bar-inner p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: var(--color-text-light);
}

/* ======================================== */
/* SECTION 1: WELCOME */
/* ======================================== */
.section-1 {
  width: 100%;
  background: var(--color-white);
  padding: 100px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.col-text h2 {
  margin-bottom: 24px;
}

.col-text p {
  margin-bottom: 20px;
}

.col-text .btn {
  margin-top: 10px;
}

.col-image img {
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(33, 17, 5, 0.18);
}

/* ======================================== */
/* RATES PAGE: RATE CARDS */
/* ======================================== */
.rate-group-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  margin-top: 36px;
  margin-bottom: 16px;
}

.rate-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.rate-card {
  background: var(--color-off-white);
  border: 1px solid #eee3d6;
  border-radius: 10px;
  padding: 22px;
}

.rate-card-featured {
  background: rgba(208, 105, 27, 0.08);
  border-color: rgba(208, 105, 27, 0.3);
}

.rate-card-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.rate-price {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1;
  color: var(--color-primary);
}

.rate-duration {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  color: var(--color-dark);
  text-transform: uppercase;
}

.rate-card p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.5;
  color: var(--color-text-light);
}

.rate-disclaimer {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.5;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 8px;
}

/* ======================================== */
/* SERVICES PAGE: TWO-COLUMN + CHECK LIST */
/* ======================================== */
.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.col-text p + h2 {
  margin-top: 40px;
}

.col-list h2 {
  margin-bottom: 10px;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: var(--color-text-light);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
}

.check-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

/* ======================================== */
/* FAQ ACCORDION */
/* ======================================== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--color-off-white);
  border: 1px solid #eee3d6;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  text-align: left;
}

.accordion-trigger span:first-child {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.4;
  color: var(--color-dark);
}

.accordion-icon {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary);
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-white);
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.accordion-trigger[aria-expanded="true"] span:first-child {
  color: var(--color-primary);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-panel p {
  padding: 0 22px 20px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* ======================================== */
/* SECTION 2: SERVICES TIMELINE */
/* ======================================== */
.section-2 {
  width: 100%;
  background: var(--color-white);
  padding: 100px 0;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtext {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-top: 8px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 34px;
  padding: 0 0 55px 0;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 39px;
  width: 2px;
  height: 55px;
  background: repeating-linear-gradient(to bottom, var(--color-primary) 0, var(--color-primary) 8px, transparent 8px, transparent 16px);
}

.timeline-icon {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(208, 105, 27, 0.25);
}

.timeline-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.timeline-content h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ======================================== */
/* SECTION 3: TESTIMONIALS */
/* ======================================== */
.section-3 {
  width: 100%;
  background: var(--color-off-white);
  padding: 100px 0;
  box-shadow: inset 0 1px 0 rgba(33, 17, 5, 0.08);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.testimonial-slider {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.testimonial-slide p {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.6;
  color: var(--color-dark);
  font-style: italic;
}

.slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: var(--color-off-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-arrow:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e3d3c2;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.25s ease;
}

.slider-dots .dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 5px;
}

/* ======================================== */
/* SECTION 4: FEATURED IN */
/* ======================================== */
.section-4 {
  width: 100%;
  background: var(--color-white);
  padding: 90px 0 100px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(33, 17, 5, 0.08), inset 0 -1px 0 rgba(33, 17, 5, 0.08);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  animation: scroll-logos 26s linear infinite;
}

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-3px);
}

.logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ======================================== */
/* SECTION 5: PARALLAX */
/* ======================================== */
.parallax-section {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 17, 5, 0.7), rgba(174, 41, 13, 0.55));
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.parallax-content p {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.45;
  color: var(--color-white);
  margin-bottom: 36px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

/* ======================================== */
/* FAT FOOTER SECTION */
/* ======================================== */
.fat-footer {
  width: 100%;
  background: var(--color-dark);
  padding: 80px 0;
}

.fat-footer .container {
  max-width: 1500px;
}

.fat-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fat-footer-inner .footer-col {
  min-width: 0;
}

.footer-image-col img {
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.footer-map-col h3 {
  color: var(--color-white);
  margin-bottom: 18px;
  font-size: 20px;
}

.footer-map {
  width: 100%;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--color-primary-dark);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-contact-col {
  text-align: left;
}

.footer-logo-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

.footer-contact-col h3 {
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-contact-col p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.6;
  color: #c9b7a8;
  margin-bottom: 18px;
}

.footer-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.footer-phone:hover {
  color: var(--color-white);
}

.footer-email {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #e8d9cc;
  margin-bottom: 20px;
}

.footer-email:hover {
  color: var(--color-primary);
}

.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  color: var(--color-white);
  background: var(--color-primary-dark);
  padding: 12px 20px;
  border-radius: 6px;
  transition: background 0.25s ease;
}

.footer-fb:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR */
/* ======================================== */
.copyright-bar {
  width: 100%;
  background: #150b03;
  padding: 22px 0;
}

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

.copyright-inner p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #8a7565;
}

.copyright-inner a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #b5876a;
}

.copyright-inner a:hover {
  color: var(--color-primary);
}

/* ======================================== */
/* STICKY MOBILE CALL BAR */
/* ======================================== */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.2);
}

.sticky-call-bar svg {
  color: var(--color-white);
}

.sticky-call-bar span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1;
  color: var(--color-white);
}

/* ======================================== */
/* SCROLL TO TOP BUTTON */
/* ======================================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-primary);
}

/* ======================================== */
/* RESPONSIVE: TABLET & MOBILE */
/* ======================================== */
@media (max-width: 1080px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .col-image {
    order: -1;
  }

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

  .rate-cards {
    grid-template-columns: 1fr;
  }

  .fat-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-contact-col {
    text-align: center;
  }

  .footer-image-col img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-map {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .top-bar-info span {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .main-header {
    height: var(--header-height-mobile);
  }

  .logo img {
    height: 50px;
    max-height: 50px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    width: 100%;
    height: calc(100vh - 74px);
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-menu a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
  }

  .hero {
    height: 600px;
  }

  .page-titlebar {
    height: 190px;
  }

  .page-titlebar-icon {
    width: 50px;
    height: 50px;
  }

  .page-titlebar-content h1 {
    font-size: 30px;
  }

  .page-titlebar-content p {
    font-size: 15px;
  }

  .cta-phone {
    font-size: 24px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-eyebrow {
    font-size: 10px;
    padding: 8px 16px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(33, 17, 5, 0.55), rgba(33, 17, 5, 0.75));
  }

  .hero-btn {
    display: none;
  }

  .section-1,
  .section-2,
  .section-3 {
    padding: 70px 0;
  }

  .section-4 {
    padding: 60px 0 70px;
  }

  h2 {
    font-size: 27px;
  }

  .timeline-item:not(:last-child)::after {
    top: 60px;
    left: 29px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
  }

  .timeline-icon img {
    width: 30px;
    height: 30px;
  }

  .timeline-item {
    gap: 20px;
  }

  .testimonial-slider {
    padding: 0 46px;
  }

  .testimonial-slide p {
    font-size: 18px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .parallax-section {
    height: 460px;
    background-attachment: scroll;
  }

  .parallax-content p {
    font-size: 26px;
  }

  .sticky-call-bar {
    display: flex;
  }

  body {
    padding-bottom: 48px;
  }

  .scroll-top {
    bottom: 62px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 24px;
  }

  .footer-phone {
    font-size: 28px;
  }
}
