/* =============================================================================
   CUT TRIM TREE SERVICE   Main Stylesheet
   Child theme of Twenty Twenty-Four
   ============================================================================= */

/* â”€â”€â”€ Custom Fonts â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Playfair Display - Local Hosting */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/Playfair Display Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/Playfair Display Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* â”€â”€â”€ CSS Variables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

:root {
  /* â”€â”€ Cut Trim Tree Service â€“ Brand Palette â”€â”€ */
  /* #1c1c1c  Almost Black â€“ text, headings                  */
  /* #c19b6a  Burnt Orange â€“ accent: buttons, icons, badges  */
  /* #666b6e  Steel Gray   â€“ secondary text, borders         */
  /* #ffffff  White        â€“ base background                  */

  /* Main brand colors */
  --ctts-primary: #c19b6a; /* Orange â€“ CTAs, links, badges */
  --ctts-secondary: #666b6e; /* Steel Gray â€“ hover, borders */
  --ctts-dark-brand: #1c1c1c; /* Almost Black â€“ headings, nav text */
  --ctts-darkest: #1c1c1c; /* Darkest â€“ overlays */
  --ctts-light-bg: #ffffff; /* White â€“ page background */
  --ctts-cream: #fdf8f6; /* Warm off-white â€“ cards, subtle bg */

  /* Button colors */
  --ctts-button: #c19b6a; /* Orange â€“ buttons */
  --ctts-button-hover: #1a365d; /* Dark Blue â€“ button hover */

  /* Legacy color aliases (mapped to new palette) */
  --ctts-green: #c19b6a; /* â†’ Orange accent */
  --ctts-green-dark: #1a365d; /* â†’ Dark Blue */
  --ctts-green-mid: #666b6e; /* â†’ Steel Gray */
  --ctts-green-light: #c19b6a; /* â†’ Orange accent */
  --ctts-green-pale: #fdf0eb; /* â†’ Very light orange tint (backgrounds) */
  --ctts-green-faint: #fdf8f6; /* â†’ Warm near-white */
  --ctts-brown: #c19b6a; /* â†’ Orange */
  --ctts-gold: #c19b6a;
  --ctts-star: #ff9d00; /* â†’ Orange */

  /* Neutrals */
  --ctts-dark: #1c1c1c;
  --ctts-gray-800: #1c1c1c;
  --ctts-gray-600: #666b6e;
  --ctts-gray-400: #9a9fa2;
  --ctts-gray-200: #e1e5e9;
  --ctts-gray-100: #f5f5f5;
  --ctts-white: #ffffff;
  --ctts-bg: #ffffff; /* White page background */

  /* Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --section-py: 100px;
  --section-py-sm: 64px;
  --container-max: 1280px;
  --container-px: 24px;

  /* Shadows â€“ warm neutral */
  --shadow-xs: 0 1px 3px rgba(28, 28, 28, 0.07);
  --shadow-sm: 0 2px 10px rgba(28, 28, 28, 0.08);
  --shadow-md: 0 4px 24px rgba(28, 28, 28, 0.1);
  --shadow-lg: 0 8px 40px rgba(28, 28, 28, 0.13);
  --shadow-xl: 0 16px 60px rgba(28, 28, 28, 0.17);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transition */
  --ease: all 0.3s ease;
  --ease-fast: all 0.18s ease;

  /* Premium Accents */
  --glass-bg: rgba(169, 79, 42, 0.08);
  --glass-border: rgba(169, 79, 42, 0.15);
  --glass-blur: blur(12px);
}

/* â”€â”€â”€ Reset / Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ctts-gray-800);
  background-color: var(--ctts-bg);
  overflow-x: hidden;
}

body.admin-bar {
  scroll-padding-top: 92px;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--ctts-green);
  text-decoration: none;
  transition: var(--ease-fast);
}
a:hover {
  color: var(--ctts-green-dark);
}
a:focus-visible {
  outline: 3px solid var(--ctts-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

ul,
ol {
  list-style: none;
}
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* WordPress alignment */
.alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}
.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}
.aligncenter {
  margin: 0 auto 1rem;
  display: block;
}

/* â”€â”€â”€ Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* â”€â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  transition: var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}

/* Header Free Quote button - add 10px gap for icon */
.header-actions .btn {
  gap: 10px;
}

.btn:focus-visible {
  outline: 3px solid var(--ctts-button);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--ctts-green);
  color: var(--ctts-white);
  border-color: var(--ctts-green);
}
.btn-primary:hover {
  background: var(--ctts-green-dark);
  border-color: var(--ctts-green-dark);
  color: var(--ctts-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #1a365d;
  border-color: #1a365d;
}
.btn-outline:hover {
  background: #1a365d;
  color: var(--ctts-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ctts-gray-600);
  border: none;
  padding: 0;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--ctts-primary);
  text-underline-offset: 4px;
  box-shadow: none;
}
.btn-ghost:hover {
  background: transparent;
  color: var(--ctts-primary);
  transform: none;
  text-decoration-color: var(--ctts-primary);
}

/* About section outline button - dark blue */
.about-section .btn-outline {
  color: #1a365d !important;
  border-color: #1a365d !important;
}
.about-section .btn-outline:hover {
  background: #1a365d !important;
  color: #ffffff !important;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ctts-white);
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--ctts-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--ctts-white);
  color: var(--ctts-green-dark);
  border-color: var(--ctts-white);
}
.btn-white:hover {
  background: var(--ctts-green-pale);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.875rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* â”€â”€â”€ Typography & Base Reversion â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body {
  font-family: var(--font-body);
  color: var(--ctts-gray-800);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--ctts-dark);
  font-weight: 700;
}
p,
li {
  font-family: var(--font-body);
}

/* â”€â”€â”€ Container Fix â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: var(--container-max);
}

/* â”€â”€â”€ Section Shared Styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-label {
  display: inline-block !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--ctts-green-mid) !important;
  margin-bottom: 12px !important;
}

.section-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem) !important;
  margin-bottom: 16px !important;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--ctts-gray-600);
  max-width: 640px;
}

.section-header {
  margin-bottom: 64px;
}
.section-header--center {
  text-align: center;
}
.section-header--light .section-label,
.section-header--light .section-title,
.section-header--light .section-desc,
.section-header--light .rating-text {
  color: var(--ctts-white) !important;
}
.section-header--light .rating-stars svg {
  color: var(--ctts-gold) !important;
}
.section-header--center .section-desc {
  margin-inline: auto;
}

.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-header--light .section-title,
.section-header--light .section-label {
  color: var(--ctts-white);
}
.section-header--light .section-label {
  color: var(--ctts-green-light);
}

/* â”€â”€â”€ Reveal Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left animation */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-from-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Drop from top animation */
.reveal-from-top {
  opacity: 0;
  transform: translateY(-60px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-from-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from bottom animation */
.reveal-from-bottom {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-from-bottom.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ Hero-specific stagger delays â”€â”€ */
/* Left content: fires first */
.hero-left.reveal-from-left {
  transition-delay: 0.1s;
}
/* Form card: fires 0.25s after left content */
.hero-form-card.reveal-from-top {
  transition-delay: 0.35s;
}
/* Info bar: fires last, after both above */
.hero-info-bar-wrap.reveal-from-bottom {
  transition-delay: 0.6s;
}


.reveal-item:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-item:nth-child(3) {
  transition-delay: 0.2s;
}
.ctts-header {
  position: fixed;
  top: 0 !important; /* Flush to top - no top spacing */
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.header-top-bar {
  display: none; /* Removed for clean pill design */
}
.header-main {
  margin: 0; /* Full width - no side paddings */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0; /* No corner radius */
  transition:
    margin 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent; 
  pointer-events: auto;
  display: flex;
  justify-content: stretch;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Pushes items to corners */
  height: 60px; /* Same as scrolled height */
  padding: 0 32px; /* Adjusted padding for corner alignment */
  width: 100%;
  max-width: none; /* Removed max-width to allow full pill span */
  margin: 0;
}

/* Correct Flex Layout for Items */
.site-branding {
  flex: 0 0 auto; /* Natural width */
  display: flex;
  align-items: center;
  margin-left: 10px; /* Move logo slightly toward center */
}
.header-nav {
  position: absolute; /* Center nav independently of corners */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.header-actions {
  flex: 0 0 auto; /* Natural width */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-right: 10px; /* Move free quote button slightly toward center */
}

/* Initially white text for transparent state */
.ctts-header:not(.is-scrolled) .nav-menu > li > a {
  color: #1a365d !important;
  font-size: 14px !important;
}
.ctts-header:not(.is-scrolled) .site-name {
  color: #1a365d !important;
}
.ctts-header:not(.is-scrolled) .site-name-link {
  color: #1a365d !important;
}
.ctts-header:not(.is-scrolled) .site-tagline {
  color: #4a5568 !important;
}
.ctts-header:not(.is-scrolled) .btn-primary {
  background: var(--ctts-green);
  border: none;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 600;
}
.ctts-header:not(.is-scrolled) .hamburger-bar {
  background: #1a365d;
}

/* Navbar blur effect in hero section (not scrolled) */
.ctts-header:not(.is-scrolled) .header-main {
  background: #ffffff;
  border: none; /* Remove border */
}

/* Logo invert in hero (not scrolled) state - DESKTOP ONLY */
@media (min-width: 1025px) {
  .ctts-header:not(.is-scrolled) .site-branding img,
  .ctts-header:not(.is-scrolled) .site-branding .custom-logo,
  .ctts-header:not(.is-scrolled) .site-branding .site-logo {
    filter: none !important;
    transition: filter 0.4s ease !important;
  }
}

/* Remove logo invert effect when mobile nav is open */
.header-nav.is-open ~ .header-inner .site-branding img,
.header-nav.is-open ~ .header-inner .site-branding .custom-logo,
.header-nav.is-open ~ .header-inner .site-branding .site-logo,
.header-nav.is-open + .header-inner .site-branding img,
.header-nav.is-open + .header-inner .site-branding .custom-logo,
.header-nav.is-open + .header-inner .site-branding .site-logo {
  filter: none !important;
}

/* Also target when header has open nav class */
.ctts-header.nav-open .site-branding img,
.ctts-header.nav-open .site-branding .custom-logo,
.ctts-header.nav-open .site-branding .site-logo {
  filter: none !important;
}

/* â”€â”€â”€ MOBILE NAVIGATION OVERRIDE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .ctts-header {
    top: 0 !important;
    margin-top: 0 !important;
    position: fixed !important;
    pointer-events: auto;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    transform: none !important;
    transition: none !important;
    z-index: 999999 !important; /* Extra high */
  }
  /* Remove Admin Bar offset for now to see if it fixes the gap */
  .admin-bar .ctts-header {
    top: 0 !important;
    margin-top: 0 !important;
  }
  .header-main {
    margin: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
  }
  .header-inner {
    height: 72px !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: none !important;
  }
  .site-branding {
    position: relative !important;
    z-index: 100001 !important;
  }
  .header-actions {
    display: flex !important;
    margin-left: auto !important;
    position: relative !important;
    z-index: 100001 !important;
  }
  .header-actions .btn {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
  }
  .hamburger-bar {
    background: #1a365d !important;
    height: 2px !important;
  }

  /* Full Screen Overlay - Solid White */
  .header-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease !important;
    z-index: 100000 !important;
    transform: none !important;
    pointer-events: none !important;
  }
  .header-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .nav-menu {
    flex-direction: column !important;
    gap: 32px !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
    transform: none !important;
  }
}

/* â”€â”€â”€ Admin Bar Support â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.admin-bar .ctts-header {
  top: 32px !important; /* Admin Bar offset when not scrolled */
}
.admin-bar .ctts-header.is-scrolled {
  top: 32px !important; /* Keep admin bar offset when scrolled */
}

@media (max-width: 782px) {
  .admin-bar .ctts-header {
    top: 0 !important; /* Mobile: flush to top, no admin bar offset */
  }
}

/* Scrolled State - Scroll-based animation to top: 0 */
.ctts-header.is-scrolled {
  top: 0 !important; /* Moves to top on scroll */
}
.ctts-header.is-scrolled .header-main {
  margin-top: 0;
  margin: 0; /* Full width - no side paddings */
  background: #ffffff;
  border-radius: 0; /* No corner radius */
}
.ctts-header.is-scrolled .header-inner {
  height: 60px;
}

@media (max-width: 1024px) {
  .header-main {
    margin: 0 20px;
  }
}
.reveal-item:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal-item:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal-item:nth-child(6) {
  transition-delay: 0.5s;
}

/* â”€â”€â”€ Floating Call Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.floating-call-btn {
  display: none; /* Hidden - replaced by ctts-floating-actions */
}

/* Site Branding */
.site-branding {
  flex-shrink: 0;
}
.site-name-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-name-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.site-name-text {
  display: flex;
  flex-direction: column;
}
.site-name {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: #1a365d !important; /* Default color with !important */
  line-height: 1.1;
}
.site-tagline {
  font-size: 0.7rem;
  color: var(--ctts-gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-branding .custom-logo,
.site-branding .site-logo {
  max-height: 56px;
  width: auto;
  display: block;
}

/* Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px; /* Increased gap between links */
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li > a {
  display: block;
  padding: 8px 4px; /* Reduced side padding slightly for underline fit */
  margin: 0 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a365d;
  transition: var(--ease-fast);
  position: relative;
}
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a365d;
  transition: width 0.3s ease;
}
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after {
  width: 100%;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
  color: #1a365d;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  padding: 8px;
}
.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a365d;
  border-radius: 2px;
  transition: var(--ease-fast);
}
.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #1a365d;
}
.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #1a365d;
}

/* Mobile Nav Overlay */
@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    transform: scale(1.05);
    pointer-events: none;
  }
  .header-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
  }
  .nav-menu {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    width: 100%;
  }
  .nav-menu > li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: calc(var(--item-index, 0) * 0.1s);
  }
  .header-nav.is-open .nav-menu > li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-menu > li > a {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d !important;
    font-family: var(--font-heading);
    padding: 10px;
    margin: 0;
  }

  /* Ensure mobile nav links are always visible */
  .header-nav.is-open .nav-menu > li > a {
    color: #1a365d !important;
  }
  .nav-menu > li > a::after {
    display: none; /* Hide underline on mobile */
  }
  .mobile-toggle {
    display: flex;
    z-index: 1001; /* Above overlay */
    position: relative;
  }
  .hamburger-bar {
    background: #1a365d !important;
  }
}

/* Sticky header logic - Simplified for pill */
.ctts-header.is-scrolled .header-main {
  box-shadow: none;
}

/* Offset for floating header */
.site-content {
  padding-top: 0; /* Since it's floating, let the content sit under it or adjust if needed */
}
.ctts-header.is-scrolled {
  transform: translateY(0);
}

/* â”€â”€â”€ HERO SECTION (Split Layout) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€ Prevent Testimonials rating stacking bug â”€â”€ */
@media (max-width: 768px) {
  .testimonials-rating-summary {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .rating-stars {
    margin-bottom: 8px !important;
  }
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .about-content-col { order: 2 !important; }
  .about-image-col   { order: 1 !important; }
}

/* Section wrapper */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 88vh;   /* shorter than full viewport */
  min-height: 88svh;
  background: #111;
  overflow: hidden;
  padding-bottom: 48px;
}

/* â”€â”€ Background Image â”€â”€ */
.hero-bg {
  position: absolute;
  inset: 0;
  bottom: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

/* Responsive hero overlay - dark blue on mobile/tablet */
@media (max-width: 1024px) {
  .hero-bg-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 22, 38, 0.85) 0%,
      rgba(10, 22, 38, 0.65) 50%,
      rgba(10, 22, 38, 0.80) 100%
    );
  }
}

/* â”€â”€ Main content row â”€â”€ */
.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex: 1;
  padding-top: 120px;   /* moved content up */
  padding-bottom: 44px;
  max-width: 1440px;    /* wider than default container */
  margin-inline: auto;
  width: 100%;
  padding-inline: 32px; /* narrow sides = more content width */
}

/* â”€â”€ Left text column â”€â”€ */
.hero-left {
  flex: 0 1 56%;  /* takes 56% of row width */
  min-width: 0;
  margin-top: -20px;
}

.hero-eyebrow {
  font-size: 0.9375rem; /* slightly larger */
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ctts-primary);
  margin-bottom: 18px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #152b43;
  margin-bottom: 20px;
}
.hero-title-accent {
  color: var(--ctts-primary);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: #152b43;
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 460px;
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-btn-primary,
.hero-btn-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Arrow circle inside buttons */
.btn-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
  transition: var(--ease);
}
.hero-btn-primary:hover .btn-arrow-circle,
.hero-btn-dark-outline:hover .btn-arrow-circle {
  transform: translateX(2px);
}
.hqf-submit .btn-arrow-circle {
  border-color: rgba(255,255,255,0.7);
}
.hqf-submit:hover .btn-arrow-circle {
  transform: translateX(2px);
}
.hero-btn-primary {
  background: var(--ctts-primary);
  color: #ffffff;
  border-color: var(--ctts-primary);
}
.hero-btn-primary:hover {
  background: var(--ctts-button-hover);
  border-color: var(--ctts-button-hover);
  color: #ffffff;
  transform: translateY(-2px);
}
.hero-btn-dark-outline {
  background: transparent;
  color: #152b43;
  border-color: #152b43;
}
.hero-btn-dark-outline:hover {
  background: rgba(21, 43, 67, 0.1);
  border-color: #152b43;
  color: #152b43;
  transform: translateY(-2px);
}

/* Trust Badges */
.hero-trust {
  display: flex;
  flex-wrap: nowrap; /* Prevent vertical stacking as requested */
  gap: 14px 24px;
  overflow-x: auto; /* Allow scrolling if they don't fit on very small screens */
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  padding-bottom: 5px;
}
.hero-trust::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #152b43;
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(208, 89, 41, 0.15);
  border: 1px solid rgba(208, 89, 41, 0.3);
  color: var(--ctts-primary);
  flex-shrink: 0;
}

/* â”€â”€ Right Form Card â”€â”€ */
.hero-form-card {
  flex: 0 0 350px;  /* reduced width */
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 30px 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.hero-form-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #152b43;
  margin-bottom: 14px;
}

.hero-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ctts-dark);
  text-align: center;
  margin-bottom: 6px;
}

.hero-form-subtitle {
  font-size: 0.875rem;
  color: var(--ctts-gray-600);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 22px;
}

.hero-quote-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hqf-field { width: 100%; }

.hqf-input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--ctts-dark);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hqf-input::placeholder { color: var(--ctts-gray-400); }
.hqf-input:focus {
  border-color: var(--ctts-primary);
  box-shadow: 0 0 0 3px rgba(208, 89, 41, 0.12);
}

.hqf-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666b6e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.hqf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  margin-top: 4px;
  background: var(--ctts-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
}
.hqf-submit:hover {
  background: var(--ctts-button-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(208, 89, 41, 0.35);
}

.hero-form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--ctts-gray-400);
  margin-top: 14px;
}

/* â”€â”€ Floating Info Bar (between hero & next section) â”€â”€ */
.hero-info-bar-wrap {
  position: relative;
  z-index: 20;
  padding-inline: 40px;
}
.hero-info-bar {
  background: #152b43;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.06);
  margin: -50px auto 0;
  max-width: 1560px; /* Increased width */
  padding-inline: 24px;
}
.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 24px; /* Added gap for balance */
}
.hero-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 20px;
}

.hero-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ctts-primary);
  width: 42px;
  height: 42px;
}
.hero-info-icon--star { color: var(--ctts-primary); }

.hero-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-info-label {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 500;
}
.hero-info-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
a.hero-info-value:hover { color: var(--ctts-primary); }

.hero-info-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-avatar--1 {
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop&crop=face');
  margin-left: 0;
}
.hero-avatar--2 {
  background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=100&h=100&fit=crop&crop=face');
}
.hero-avatar--3 {
  background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=100&h=100&fit=crop&crop=face');
}
.hero-avatar--4 {
  background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=100&h=100&fit=crop&crop=face');
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1024px) {
  .hero-form-card { flex: 0 0 320px; }
  .hero-info-bar-wrap { padding-inline: 24px; }
}

@media (max-width: 860px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 40px;
    padding-inline: 28px;
    gap: 32px;
  }
  .hero-bg-img {
    object-position: 70% center; /* Focus more on the person */
  }
  .hero-btn-dark-outline {
    color: #ffffff !important;
    border-color: #ffffff !important;
  }
  .hero-left {
    width: 100%;
    flex: none;
    text-align: center;
  }
  .hero-subtitle { max-width: 100%; }
  .hero-title,
  .hero-subtitle,
  .hero-trust-item {
    color: #ffffff !important;
  }
  .hero-subtitle {
    opacity: 1;
  }
  .hero-form-card {
    flex: none;
    width: 100%;
    max-width: 520px;
  }
  .hero-info-bar-wrap { padding-inline: 16px; }
  .hero-info-bar { margin-top: -30px; border-radius: 12px; }
  .hero-info-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-info-item {
    border-right: none;
    border-bottom: 1px solid var(--ctts-gray-200);
  }
  .hero-info-item:nth-child(odd) { border-right: 1px solid var(--ctts-gray-200); }
  .hero-info-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 600px) {
  .hero-section { min-height: auto; }
  .hero-container {
    padding-top: 96px;
    padding-bottom: 32px;
    padding-inline: 20px;
  }
  .hero-eyebrow { font-size: 0.9375rem; }
  .hero-title { font-size: 3.75rem; color: #ffffff !important; }
  .hero-subtitle { font-size: 0.9375rem; color: #ffffff !important; opacity: 1; }
  .hero-trust-item { color: #ffffff !important; }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .hero-ctas a { width: 100%; justify-content: center; }
  .hero-btn-primary,
  .hero-btn-dark-outline {
    padding: 12px 18px;
    font-size: 0.875rem;
  }
  .hero-trust { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    justify-items: start; /* align items to start for cleaner text alignment in grid */
    margin-top: 32px;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  .hero-trust-item { font-size: 0.8125rem; }
  .hero-trust-icon { width: 28px; height: 28px; }
  .hero-form-card { padding: 28px 22px 22px; }
  .hero-info-bar-wrap { padding-inline: 12px; }
  .hero-info-bar { margin-top: -20px; border-radius: 10px; padding-inline: 0; }
  .hero-info-grid { grid-template-columns: 1fr; }
  .hero-info-item {
    border-right: none !important;
    border-bottom: 1px solid var(--ctts-gray-200) !important;
  }
  .hero-info-item:last-child { border-bottom: none !important; }
  .site-content { padding-top: 0 !important; }
}

/* â”€â”€â”€ SERVICES SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-section {
  background: #f5f5f5; /* warm cream â€” same family as About */
}

.services-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 72px 40px 64px;
}

/* â”€â”€ Section Header â”€â”€ */
.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-label-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.services-label-icon {
  color: var(--ctts-primary);
  display: flex;
  align-items: center;
}

.services-label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ctts-primary);
}

.services-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ctts-dark);
  line-height: 1.2;
}

.services-desc {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 1.0625rem;
  color: var(--ctts-gray-600);
  line-height: 1.7;
}

/* â”€â”€ 3-Card Grid â”€â”€ */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* â”€â”€ Individual Card â”€â”€ */
.svc-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 0; /* Removed overall padding to allow image to be flush */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  height: 100%;
  overflow: hidden;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--ctts-primary);
}

/* â”€â”€ Service Card Image â”€â”€ */
.svc-card-img-box {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.svc-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.svc-card:hover .svc-card-img-box img {
  transform: scale(1.1);
}

.svc-card-content {
  padding: 48px 32px 32px; /* Extra top padding for overlapping icon */
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* â”€â”€ Service Card Icon (Overlapping) â”€â”€ */
.svc-card-icon {
  position: absolute;
  top: -36px; /* Offset to overlap image */
  left: 32px;
  width: 64px; /* Slightly smaller for overlap balance */
  height: 64px;
  background: var(--ctts-primary);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(208, 89, 41, 0.3);
  transition: all 0.4s ease;
  z-index: 2;
}

.svc-card-icon svg {
  width: 32px;
  height: 32px;
}

.svc-card:hover .svc-card-icon {
  transform: translateY(-5px) scale(1.05);
  background: var(--ctts-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Title */
.svc-card-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ctts-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Description */
.svc-card-desc {
  font-size: 0.9375rem;
  color: var(--ctts-gray-600);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  margin-bottom: 24px;
}

/* Link at bottom */
.svc-card-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  text-decoration: none;
}

.svc-card-link-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ctts-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.svc-card-arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--ctts-dark);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.svc-card-link:hover .svc-card-link-text {
  color: var(--ctts-primary);
}

.svc-card-link:hover .svc-card-arrow-circle {
  transform: translateX(6px);
  background: var(--ctts-primary);
  color: #ffffff;
}


/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1200px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-inner {
    padding: 64px 24px 56px;
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px; /* More gap for overlapping icons in stack */
  }
  .svc-card-content {
    padding: 40px 24px 24px;
  }
}

@media (max-width: 480px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  .svc-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .svc-card-icon svg {
    width: 28px;
    height: 28px;
  }
  .svc-card-title {
    font-size: 1.25rem;
  }
}



/* â”€â”€â”€ CTA BANNER SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  clip-path: inset(0); /* Creates a "window" for the fixed image */
}

.cta-banner-img {
  position: fixed; /* Keep image still while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.3), rgba(17, 17, 17, 0.7));
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-banner-icon {
  display: inline-block;
  color: var(--ctts-primary);
  margin-bottom: 16px;
}

.cta-banner-sub {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  opacity: 0.95;
  color: #ffffff;
}

.cta-banner-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 36px;
  line-height: 1.1;
  color: #ffffff;
}

.cta-banner-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ctts-primary);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-banner-btn:hover {
  background: #1a365d;
  color: #ffffff;
  transform: translateY(-2px);
}

.cta-banner-btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: border-color 0.2s ease;
}

.cta-banner-btn:hover .cta-banner-btn-circle {
  border-color: #ffffff;
}

.cta-banner-btn--outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  box-shadow: none;
}

.cta-banner-btn--outline:hover {
  background: #1a365d;
  color: #ffffff;
  border-color: #1a365d;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.4);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 56px 0;
  }
  .cta-banner-sub {
    font-size: 1.125rem;
  }
  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cta-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

/* â”€â”€â”€ ABOUT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-section {
  padding: 120px 0 20px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.about-container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 40px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: center;
}

/* â”€â”€ Column 1: Photo Grid â”€â”€ */
.about-col--grid {
  position: relative;
}

/* â”€â”€ Column 2: Content â”€â”€ */
.about-col--content {
  position: relative;
}

.about-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.about-label-icon {
  color: var(--ctts-dark-brand);
  display: flex;
  align-items: center;
}

.about-label-text {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ctts-gray-600);
}

.about-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #1a365d;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-lead {
  font-size: 1.125rem;
  color: var(--ctts-gray-600);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 540px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a365d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 4px;
}

.about-feature-text strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: 0.9375rem;
  color: var(--ctts-gray-600);
  line-height: 1.55;
  margin: 0;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-btn-quote {
  background: var(--ctts-primary) !important;
  border-color: var(--ctts-primary) !important;
  color: #ffffff !important;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.about-btn-quote:hover {
  background: #1a365d !important;
  border-color: #1a365d !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
}

.about-btn-phone {
  background: transparent !important;
  border: 2px solid #1a365d !important;
  color: #1a365d !important;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.about-btn-phone:hover {
  background: #1a365d !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

.about-btn-quote svg,
.about-btn-phone svg {
  transition: transform 0.3s ease;
}

.about-btn-quote:hover svg {
  transform: translateX(6px);
}

/* â”€â”€ Column 2: Photo Grid â”€â”€ */
.about-grid-container {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 28px;
  position: relative;
}

.about-grid-main {
  position: relative;
}

.about-grid-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow-sm);
}

.about-grid-main .about-grid-img {
  height: 560px;
}

.about-grid-item {
  height: 266px;
}

/* Circular Experience Badge */
.about-exp-badge-circular {
  position: absolute;
  bottom: 40px;
  right: -70px;
  width: 170px;
  height: 170px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  z-index: 10;
  padding: 24px;
}

.about-exp-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.about-exp-number {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a365d;
  display: block;
  margin-bottom: 2px;
}

.about-exp-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ctts-gray-600);
  text-transform: capitalize;
  margin-bottom: 8px;
}

.about-exp-deco {
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1200px) {
  .about-inner {
    gap: 50px;
  }
  .about-exp-badge-circular {
    right: -30px;
    width: 140px;
    height: 140px;
  }
  .about-exp-number {
    font-size: 2.1rem;
  }
}

@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-col--grid {
    order: 2;
  }
  .about-col--content {
    order: 1;
    margin: 0;
  }
  .about-grid-main .about-grid-img {
    height: 500px;
  }
  .about-grid-item {
    height: 238px;
  }
  .about-exp-badge-circular {
    right: -20px;
    bottom: 30px;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 80px 0;
  }
  .about-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-grid-side {
    flex-direction: column;
    gap: 16px;
  }
  .about-grid-item {
    height: 180px;
  }
  .about-grid-main .about-grid-img {
    height: 350px;
  }
  .about-exp-badge-circular {
    width: 110px;
    height: 110px;
    right: 20px;
    bottom: -30px;
    padding: 15px;
  }
  .about-exp-number {
    font-size: 1.5rem;
  }
  .about-exp-text {
    font-size: 0.7rem;
  }
  .about-heading {
    font-size: 2.125rem;
  }
}

/* â”€â”€â”€ PROCESS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-section {
  padding: 100px 0;
  background: #fdf8f6; /* Warm off-white background */
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-number-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.step-number {
  width: 54px;
  height: 54px;
  background: #1a365d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: var(--ctts-primary);
  transform: scale(1.1);
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: rgba(26, 54, 93, 0.1);
  margin-left: 20px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--ctts-gray-600);
  line-height: 1.6;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1024px) {
  .process-section {
    padding: 80px 0;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 30px;
  }
  .process-step .step-line {
    display: none;
  }
}

@media (max-width: 767px) {
  .process-section {
    padding: 64px 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
    margin-inline: auto;
  }
  .process-step {
    text-align: center;
  }
  .step-number-wrap {
    justify-content: center;
    margin-bottom: 20px;
  }
  .step-title {
    font-size: 1.125rem;
  }
  .step-desc {
    max-width: 320px;
    margin-inline: auto;
  }
}

/* â”€â”€â”€ STATS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-bar-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background: #ffffff; /* Light cream background */
}

.stats-bar-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.stats-bar-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stats-bar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1); /* Very subtle overlay */
}

.stats-bar-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 40px;
}

.stats-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  color: #1a365d; /* Dark blue from image */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a365d;
}

.stat-suffix {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #4a5568; /* Gray for labels */
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-bar-inner {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .stat-item {
    flex: 0 0 calc(33.333% - 20px);
  }
  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .stats-bar-section {
    padding: 40px 0;
  }
  .stat-item {
    flex: 0 0 calc(50% - 20px);
    text-align: center;
  }
}

@media (max-width: 580px) {
  .stat-item {
    flex: 0 0 100%;
    flex-direction: column;
    gap: 10px;
  }
  .stat-number-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-bar-inner {
    gap: 40px;
  }
  .stat-number {
    font-size: 2rem;
  }
}


/* â”€â”€â”€ GALLERY SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-section {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.gallery-container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 48px;
}

/* â”€â”€ Header Row â”€â”€ */
.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.gallery-label-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.gallery-label-icon {
  color: var(--ctts-primary);
  display: flex;
}

.gallery-label-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ctts-primary);
}

.gallery-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ctts-dark);
  margin: 0;
  line-height: 1.1;
}

.gallery-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ctts-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery-view-all-btn:hover {
  background: var(--ctts-dark);
  color: #ffffff;
  border-color: var(--ctts-dark);
}

.gallery-view-all-btn .btn-arrow-circle {
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.gallery-view-all-btn:hover .btn-arrow-circle {
  transform: translateX(3px);
}

/* â”€â”€ Slider Wrapper â”€â”€ */
.gallery-slider-wrapper {
  position: relative;
  margin-inline: -15px; /* Offset slide gap */
}

.gallery-slider-viewport {
  overflow: hidden;
  padding: 10px 15px;
}

.gallery-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-slide {
  flex: 0 0 33.333%;
  padding: 0 15px;
}

.gallery-slide-inner {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ctts-gray-100);
  cursor: pointer;
}

.gallery-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-slide-inner:hover img {
  transform: scale(1.08);
}

/* Overlay */
.gallery-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-slide-inner:hover .gallery-slide-overlay {
  opacity: 1;
}

.gallery-slide-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ctts-primary);
  margin-bottom: 4px;
}

.gallery-slide-title {
  color: #ffffff;
  font-size: 1.125rem;
  margin: 0;
  font-family: var(--font-heading);
}

/* Navigation Buttons */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--ctts-gray-200);
  color: var(--ctts-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
  background: var(--ctts-primary);
  color: #ffffff;
  border-color: var(--ctts-primary);
  box-shadow: 0 6px 20px rgba(208, 89, 41, 0.25);
}

.gallery-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.gallery-prev {
  left: -27px;
}

.gallery-next {
  right: -27px;
}

/* Responsive */
@media (max-width: 1100px) {
  .gallery-slide { flex: 0 0 50%; }
}

@media (max-width: 768px) {
  .gallery-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .gallery-container { padding-inline: 24px; }
  .gallery-nav-btn { width: 44px; height: 44px; }
  .gallery-prev { left: -15px; }
  .gallery-next { right: -15px; }
}

@media (max-width: 600px) {
  .gallery-slide { flex: 0 0 100%; }
}


/* â”€â”€â”€ GALLERY HIGHLIGHTS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-highlights-section {
  padding-bottom: 100px; /* Space after gallery content */
  background: #ffffff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--ctts-cream);
  border-radius: 16px;
  border: 1px solid var(--ctts-gray-100);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: var(--ctts-primary);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: var(--ctts-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(208, 89, 41, 0.1);
}

.highlight-card:hover .highlight-icon {
  background: var(--ctts-primary);
  color: #ffffff;
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ctts-dark);
  margin: 0 0 8px 0;
}

.highlight-desc {
  font-size: 0.875rem;
  color: var(--ctts-gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Highlights */
@media (max-width: 1200px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-highlights-section { padding-bottom: 60px; }
}


/* â”€â”€â”€ TESTIMONIALS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-section {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--ctts-white);
  overflow: hidden;
}
.testimonials-section .container {
  position: relative;
  z-index: 1;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

/* Why Choose Us Block */
.why-choose-us-block {
  margin-bottom: 100px;
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.why-choose-item {
  flex: 0 1 calc(33.333% - 20px);
  display: flex;
  gap: 20px;
  background: #fdf8f6;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--ease);
}

.why-choose-item:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--ctts-primary);
}

.why-choose-icon {
  width: 50px;
  height: 50px;
  background: var(--ctts-primary);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 8px;
}

.why-choose-text {
  font-size: 0.9375rem;
  color: var(--ctts-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Service Area Block */
.service-area-block {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
  padding: 50px 40px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.service-area-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
}

.service-area-intro {
  font-size: 1.0625rem;
  color: var(--ctts-gray-600);
  margin-bottom: 32px;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 20px;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 32px;
}

.service-area-list span {
  padding: 10px 24px;
  background: #f0f7ff;
  color: #1a365d;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(26, 54, 93, 0.08);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-area-list span:hover {
  background: var(--ctts-primary);
  color: #ffffff;
  border-color: var(--ctts-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(208, 89, 41, 0.2);
}

.service-area-footer {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--ctts-gray-600);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 24px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

/* Testimonials Separator */
@media (max-width: 640px) {
  .service-area-block {
    padding: 35px 20px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .service-area-title {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  .service-area-intro {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }
  .service-area-list {
    gap: 12px 10px;
    margin-bottom: 24px;
  }
  .service-area-list span {
    flex: 0 1 calc(50% - 5px);
    padding: 8px 10px;
    font-size: 0.75rem;
    justify-content: center;
    text-align: center;
  }
  .service-area-footer {
    font-size: 0.8125rem;
    padding-top: 20px;
  }
}

.testimonials-separator {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.separator-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.separator-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
  text-transform: capitalize;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .why-choose-item {
    flex: 0 1 calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .why-choose-item {
    flex: 0 1 100%;
  }
  .testimonials-separator {
    gap: 15px;
  }
  .separator-text {
    font-size: 1.25rem;
  }
}

.testimonials-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.rating-stars {
  display: flex;
  gap: 3px;
  color: var(--ctts-star);
}
.rating-text {
  color: var(--ctts-gray-600);
  font-size: 0.9375rem;
}

/* Marquee Styles */
.testimonials-marquee {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  /* Premium side-fade gradients - wider visible area */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  width: max-content;
  animation: testimonialsMarquee 45s linear infinite;
  will-change: transform;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(400px, 85vw); /* Fluid width for small screens */
  flex-shrink: 0;
  background: #ffffff !important; /* Solid white card */
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote-icon {
  color: var(--ctts-green);
  opacity: 0.2;
  margin-bottom: 12px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--ctts-star) !important; /* Vibrant gold stars */
  margin-bottom: 20px !important;
}

.testimonial-text {
  color: var(--ctts-dark) !important; /* Dark text for white background */
  font-size: 1rem !important;
  line-height: 1.7 !important;
  margin-bottom: 28px !important;
  font-style: italic !important;
  flex: 1 !important;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ctts-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  display: block !important;
  font-weight: 700 !important;
  color: var(--ctts-dark) !important; /* Dark text for white background */
  font-size: 0.95rem !important;
  line-height: 1.2 !important;
}

.testimonial-author-role {
  display: block !important;
  color: var(--ctts-green) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  margin-top: 2px !important;
}

.testimonial-date {
  color: var(--ctts-gray-600) !important; /* Dark gray for white background */
  font-size: 0.75rem !important;
}

@keyframes testimonialsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 14px));
  }
}

/* CTA Buttons */
.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.testimonials-cta-buttons {
  display: flex;
  gap: 16px;
}

/* Rating summary inline button */
.rating-text-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.google-reviews-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--ctts-gray-200);
  border-radius: 50px;
  color: var(--ctts-dark);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.google-reviews-inline-btn:hover {
  background: var(--ctts-gray-100);
  border-color: var(--ctts-gray-300);
  transform: translateY(-1px);
}

/* Responsive CTA Buttons */
@media (max-width: 640px) {
  .testimonials-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .testimonials-cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .rating-text-wrapper {
    flex-direction: column;
    gap: 12px;
  }
}

/* â”€â”€â”€ BLOG LISTING & SINGLE POST â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Archive Hero */
.page-hero--blog,
.page-hero--contact {
  position: relative;
  padding: 140px 0 100px;
  background: #000000;
  overflow: hidden;
  color: #ffffff;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75; /* increased from 0.6 for better visibility */
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero-desc {
  font-size: 1.125rem;
  opacity: 0.85;
  max-width: 600px;
  margin-inline: auto;
}

/* Layout */
.blog-listing-section,
.post-content-section {
  padding: 100px 0;
  background: #ffffff;
}

.blog-layout,
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

/* Post Cards */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.posts-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.post-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--ctts-gray-100);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--ctts-primary);
}

.post-card-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.post-card:hover .post-card-img {
  transform: scale(1.08);
}

.post-card-cat-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--ctts-primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.post-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--ctts-gray-400);
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.post-card-title a {
  color: var(--ctts-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card-title a:hover {
  color: var(--ctts-primary);
}

.post-card-excerpt {
  font-size: 0.9375rem;
  color: var(--ctts-gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--ctts-cream);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid var(--ctts-gray-100);
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ctts-dark);
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--ctts-primary);
}

/* Sidebar Search */
.search-field-wrap {
  position: relative;
}

.search-field {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border-radius: 50px;
  border: 1px solid var(--ctts-gray-200);
  background: #ffffff;
  font-size: 0.9375rem;
  transition: border-color 0.3s ease;
}

.search-field:focus {
  border-color: var(--ctts-primary);
  outline: none;
}

.search-submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ctts-primary);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-submit svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
}

.search-submit:hover {
  background: var(--ctts-dark);
}

.search-submit:hover svg {
  stroke: #ffffff;
}

/* Side Post Links */
.side-post-link {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  text-decoration: none;
  align-items: center;
}

.side-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ctts-gray-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.side-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-post-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ctts-dark);
  line-height: 1.3;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.side-post-link:hover .side-post-title {
  color: var(--ctts-primary);
}

.side-post-date {
  font-size: 0.75rem;
  color: var(--ctts-gray-400);
  font-weight: 600;
}

/* Side Cats */
.side-cats-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-cats-list li {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-cats-list li a {
  color: var(--ctts-gray-600);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.side-cats-list li a:hover {
  color: var(--ctts-primary);
}

.side-cats-list .count {
  font-size: 0.75rem;
  background: #ffffff;
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--ctts-gray-400);
  font-weight: 700;
}

/* â”€â”€ Single Post Article â”€â”€ */
.post-hero {
  position: relative;
  padding: 180px 0 100px;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background: var(--ctts-dark);
}

.post-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.9) 0%, transparent 100%);
}

.post-cats {
  margin-bottom: 20px;
}

.post-cats a {
  background: var(--ctts-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.post-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 500;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Content Typography */
.entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--ctts-gray-800);
}

.entry-content h2, 
.entry-content h3 {
  font-family: var(--font-heading);
  color: var(--ctts-dark);
  margin: 40px 0 20px;
}

.entry-content p {
  margin-bottom: 28px;
}

.entry-content blockquote {
  padding: 40px;
  background: var(--ctts-cream);
  border-left: 4px solid var(--ctts-primary);
  border-radius: 0 20px 20px 0;
  font-style: italic;
  font-size: 1.25rem;
  margin: 40px 0;
  color: var(--ctts-dark);
}

/* Post Footer */
.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--ctts-gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-tags a {
  display: inline-block;
  padding: 4px 12px;
  background: var(--ctts-gray-100);
  color: var(--ctts-gray-600);
  font-size: 0.8125rem;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 6px;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: var(--ctts-primary);
  color: #ffffff;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-links {
  display: flex;
  gap: 8px;
}

.share-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.share-icon.fb { background: #3b5998; }
.share-icon.tw { background: #1da1f2; }

.share-icon:hover {
  transform: translateY(-3px);
}

/* Sidebar CTA Card */
.sidebar-cta-card {
  background: var(--ctts-dark);
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 30px;
  background-image: url('http://cuttrimtreeservice.com/wp-content/uploads/2026/04/Tree-img-copy.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.sidebar-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.85);
}

.sidebar-cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.sidebar-cta-card p {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin-bottom: 24px;
}

/* Responsive Blog */
@media (max-width: 1024px) {
  .blog-layout,
  .post-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .blog-sidebar,
  .post-sidebar {
    order: 2;
  }
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .page-hero--blog,
  .post-hero {
    padding: 120px 0 60px;
    text-align: center;
  }
  .post-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}

.post-card-title a {
  color: var(--ctts-dark);
}
.post-card-title a:hover {
  color: var(--ctts-green);
}
.post-card-excerpt {
  color: var(--ctts-gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
/* â”€â”€â”€ BLOG POST CARD PREMUM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.post-card {
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease !important;
}
.post-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: var(--shadow-xl) !important;
}

.post-card-read-more {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--ctts-green-pale) !important;
  color: var(--ctts-green-dark) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  margin-top: 20px !important;
  transition: var(--ease) !important;
}
.post-card-read-more:hover {
  background: var(--ctts-green) !important;
  color: var(--ctts-white) !important;
  gap: 14px !important;
}
.post-card-read-more svg {
  transition: transform 0.3s ease !important;
}
.post-card-read-more:hover svg {
  transform: translateX(4px) !important;
}

/* â”€â”€â”€ SECONDARY HERO (BLOG/CONTACT) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  background: var(--ctts-green-dark) !important;
  padding: 120px 0 80px !important;
  position: relative !important;
  overflow: hidden !important;
  text-align: center !important;
}

/* Page hero variants inherit from .page-hero */
.page-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  background-image: url("../images/hero-bg.png") !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0.2 !important;
  z-index: 0 !important;
}

.page-hero-inner {
  position: relative !important;
  z-index: 1 !important;
}

.page-hero-title {
  color: var(--ctts-white) !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  margin-bottom: 20px !important;
  font-weight: 800 !important;
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 700px !important;
  margin-inline: auto !important;
  font-size: 1.125rem !important;
}

/* â”€â”€â”€ REPLY / COMMENTS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.comments-area {
  margin-top: 80px !important;
  padding-top: 60px !important;
  border-top: 1px solid var(--ctts-gray-200) !important;
  background: var(--ctts-bg) !important;
}
.comments-title {
  font-family: var(--font-heading) !important;
  font-size: 2rem !important;
  margin-bottom: 40px !important;
  text-align: center !important;
}
.comment-list {
  max-width: 800px !important;
  margin-inline: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
}
.comment-body {
  background: var(--ctts-white) !important;
  padding: 32px !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  border: 1px solid var(--ctts-gray-200) !important;
}
.comment-meta {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
}
.comment-author img {
  border-radius: var(--radius-full) !important;
}
.comment-metadata a {
  color: var(--ctts-gray-400) !important;
  font-size: 0.85rem !important;
}
.comment-content {
  color: var(--ctts-gray-600) !important;
  line-height: 1.7 !important;
}
.reply {
  margin-top: 16px !important;
}
.comment-reply-link {
  font-weight: 700 !important;
  color: var(--ctts-green-mid) !important;
  font-size: 0.9rem !important;
}

/* Comment Form */
.comment-respond {
  max-width: 800px !important;
  margin: 60px auto 0 !important;
  background: var(--ctts-white) !important;
  padding: 48px !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-xl) !important;
  border: 1px solid var(--ctts-green-pale) !important;
}
.comment-reply-title {
  font-family: var(--font-heading) !important;
  font-size: 1.75rem !important;
  margin-bottom: 32px !important;
  display: block !important;
}
.comment-form p {
  margin-bottom: 24px !important;
}
.comment-form label {
  display: block !important;
  font-weight: 600 !important;
  color: var(--ctts-dark) !important;
  margin-bottom: 8px !important;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100% !important;
  padding: 14px 20px !important;
  border: 1.5px solid var(--ctts-gray-200) !important;
  border-radius: var(--radius-md) !important;
  background: var(--ctts-bg) !important;
  transition: var(--ease-fast) !important;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--ctts-green) !important;
  background: var(--ctts-white) !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(118, 89, 47, 0.1) !important;
}
.form-submit {
  margin-top: 32px !important;
}
.submit {
  background: var(--ctts-green) !important;
  color: var(--ctts-white) !important;
  padding: 16px 40px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border: none !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: var(--ease) !important;
}
.submit:hover {
  background: var(--ctts-green-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* =============================================================================
   CONTACT PAGE SECTION
   ============================================================================= */

/* â”€â”€ Main contact row wrapper â”€â”€ */
.contact-section {
  background: #ffffff;
  padding: 0;
}

.contact-main-row {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #ffffff;
}

/* â”€â”€ Two-column grid â”€â”€ */
.contact-row-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* â”€â”€ Left column: contact details â”€â”€ */
.contact-details-col {
  position: sticky;
  top: 130px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ctts-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--ctts-gray-600);
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(82, 121, 147, 0.1);
  border: 1px solid rgb(17, 74, 232);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ctts-primary);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ctts-gray-400);
}

.contact-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ctts-dark);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

a.contact-value:hover {
  color: var(--ctts-primary);
}

/* â”€â”€ Right column: contact form â”€â”€ */
.contact-form-col {
  background: #f8f9fa;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--ctts-gray-200);
}

.contact-form-col .contact-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 6px;
}

.contact-form-col .contact-subtitle {
  margin-bottom: 28px;
}

/* â”€â”€ Form fields â”€â”€ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ctts-dark);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--ctts-gray-800);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--ctts-primary);
  box-shadow: 0 0 0 3px rgba(82, 121, 147, 0.12);
}

.form-input::placeholder {
  color: var(--ctts-gray-400);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* â”€â”€ Submit button â”€â”€ */
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  background: var(--ctts-primary);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid var(--ctts-primary);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(82, 121, 147, 0.2);
  letter-spacing: 0.04em;
}

.contact-submit-btn:hover {
  background: var(--ctts-button-hover);
  border-color: var(--ctts-button-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(82, 121, 147, 0.3);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* â”€â”€ Form response message â”€â”€ */
.form-response {
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-response.is-success {
  display: block;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.form-response.is-error {
  display: block;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
}

/* â”€â”€ Footer Mini Map Widget â”€â”€ */
.footer-mini-map {
  width: 100%;
  height: 160px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-mini-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* â”€â”€ Full-width map embed (Contact Page) â”€â”€ */
.contact-map-section {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-top: 1px solid var(--ctts-gray-200, #e5e7eb);
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* â”€â”€ Responsive: Tablet â”€â”€ */
@media (max-width: 1024px) {
  .contact-row-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-details-col {
    position: static;
  }
  .contact-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* â”€â”€ Responsive: Mobile â”€â”€ */
@media (max-width: 640px) {
  .contact-main-row {
    padding: 48px 0;
  }
  .contact-row-grid {
    gap: 36px;
  }
  .contact-info-list {
    grid-template-columns: 1fr;
  }
  .contact-form-col {
    padding: 24px;
    border-radius: 14px;
  }
  .contact-map-section {
    height: 300px;
  }
}
/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ctts-footer {
  position: relative;
  background: #08111d;
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 80px 0 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 48px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ctts-white);
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cert-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ctts-green-light);
  background: rgba(214, 110, 25, 0.225);
  border: 1px solid rgba(237, 117, 43, 0.458);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ctts-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: var(--ease-fast);
}
.footer-links li a:hover {
  color: var(--ctts-white);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.footer-contact-list svg {
  color: var(--ctts-green-light);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-list a:hover {
  color: var(--ctts-white);
}

.footer-cta {
  margin-top: 8px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-center {
  justify-content: center !important;
}

.footer-copyright,
.footer-credits {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.footer-copyright a,
.footer-credits a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-copyright a:hover,
.footer-credits a:hover {
  color: var(--ctts-white);
}

/* â”€â”€â”€ BLOG PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ctts-blog-main .site-content,
.ctts-single-main .site-content {
  padding-top: 0;
}

.page-hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
  background: var(--ctts-green-dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--ctts-green-dark) 0%,
    var(--ctts-green) 100%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ctts-white);
  margin-bottom: 16px;
}
.page-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
}
.page-hero .section-label {
  color: var(--ctts-green-light);
}

/* Blog Layout */
.blog-content-section {
  padding: 80px 0;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.posts-grid--blog {
  grid-template-columns: repeat(2, 1fr);
}
.posts-grid--featured {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
}

/* Horizontal Scroll Section */
.blog-horizontal-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--ctts-gray-200);
}
.blog-horizontal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ctts-dark);
  margin-bottom: 20px;
}
.blog-horizontal-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.blog-horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}
.blog-horizontal-scroll::-webkit-scrollbar-track {
  background: var(--ctts-gray-100);
  border-radius: 3px;
}
.blog-horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--ctts-green);
  border-radius: 3px;
}
.blog-horizontal-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--ctts-white);
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--ease);
}
.blog-horizontal-item:hover {
  border-color: var(--ctts-green);
  box-shadow: var(--shadow-md);
}
.blog-horizontal-thumb {
  display: block;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.blog-horizontal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-horizontal-item:hover .blog-horizontal-thumb img {
  transform: scale(1.05);
}
.blog-horizontal-content {
  padding: 16px;
}
.blog-horizontal-title-item {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
}
.blog-horizontal-title-item a {
  color: var(--ctts-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-horizontal-title-item a:hover {
  color: var(--ctts-green);
}
.blog-horizontal-date {
  font-size: 0.8125rem;
  color: var(--ctts-gray-500);
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sidebar-widget {
  background: var(--ctts-white);
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.widget-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ctts-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ctts-green-pale);
}
.search-input-wrap {
  position: relative;
}
.search-field {
  width: 100%;
  padding: 10px 44px 10px 14px;
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}
.search-field:focus {
  outline: none;
  border-color: var(--ctts-green);
}
.search-submit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ctts-green);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.search-submit svg {
  width: 18px;
  height: 18px;
  stroke: var(--ctts-green);
  fill: none;
  stroke-width: 2.5;
}

.search-submit:hover svg {
  stroke: var(--ctts-dark);
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.recent-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.recent-post-thumb {
  flex-shrink: 0;
}
.recent-post-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.recent-post-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ctts-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}
.recent-post-title:hover {
  color: var(--ctts-green);
}
.recent-post-date {
  font-size: 0.75rem;
  color: var(--ctts-gray-400);
}

.categories-list {
  list-style: none;
}
.categories-list li a {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--ctts-gray-600);
  border-bottom: 1px solid var(--ctts-gray-100);
}
.categories-list li a:hover {
  color: var(--ctts-green);
}

.sidebar-cta {
  background: var(--ctts-green-dark);
  border-color: transparent;
}
.sidebar-cta-inner {
  text-align: center;
}
.sidebar-cta-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}
.sidebar-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--ctts-white);
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.sidebar-cta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}
.sidebar-cta-features li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-cta-features li::before {
  content: "";
  display: none;
}
.sidebar-cta .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.sidebar-cta .btn-outline {
  width: 100%;
  justify-content: center;
  color: var(--ctts-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.sidebar-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--ctts-white);
}

/* No Posts */
.no-posts-message {
  text-align: center;
  padding: 80px 40px;
  background: var(--ctts-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--ctts-gray-200);
}
.no-posts-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.no-posts-message h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.no-posts-message p {
  color: var(--ctts-gray-600);
  margin-bottom: 24px;
}

/* Pagination */
.ctts-pagination {
  margin-top: 48px;
}
.ctts-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.ctts-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ctts-gray-600);
  border: 1.5px solid var(--ctts-gray-200);
  background: var(--ctts-white);
  transition: var(--ease-fast);
}
.ctts-pagination .page-numbers:hover,
.ctts-pagination .page-numbers.current {
  background: var(--ctts-green);
  border-color: var(--ctts-green);
  color: var(--ctts-white);
}
.ctts-pagination .prev,
.ctts-pagination .next {
  width: auto;
  padding: 0 16px;
}

/* â”€â”€â”€ SINGLE POST PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.post-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.post-hero-image {
  position: absolute;
  inset: 0;
  background: var(--ctts-green-dark);
}
.post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-hero-image--no-thumb {
  background: linear-gradient(
    135deg,
    var(--ctts-green-dark),
    var(--ctts-green)
  );
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(71, 55, 32, 0.95) 0%,
    rgba(71, 55, 32, 0.5) 60%,
    transparent 100%
  );
}
.post-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 0 56px;
}

.post-breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.post-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}
.post-breadcrumb a:hover {
  color: var(--ctts-white);
}
.post-breadcrumb span[aria-current] {
  color: rgba(255, 255, 255, 0.5);
}

.post-cats {
  margin-bottom: 12px;
}
.post-cats a {
  display: inline-block;
  background: var(--ctts-green);
  color: var(--ctts-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-right: 6px;
}

.post-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 700;
  color: var(--ctts-white);
  line-height: 1.2;
  max-width: 840px;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.post-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.post-meta-item svg {
  color: var(--ctts-green-light);
}
.post-meta-item a {
  color: rgba(255, 255, 255, 0.65);
}
.post-meta-item a:hover {
  color: var(--ctts-white);
}

/* Post Body */
.post-body-wrapper {
  padding: 72px 0;
}
.post-body-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.post-content-col {
  min-width: 0;
}

/* Post Content Typography */
.post-content,
.entry-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ctts-gray-800);
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}
.post-content h2,
.entry-content h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--ctts-dark);
  margin: 40px 0 16px;
  padding-top: 12px;
  border-top: 2px solid var(--ctts-green-pale);
}
.post-content h3,
.entry-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ctts-dark);
  margin: 32px 0 12px;
}
.post-content p,
.entry-content p {
  margin-bottom: 20px;
}
.post-content ul,
.entry-content ul,
.post-content ol,
.entry-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.post-content li,
.entry-content li {
  margin-bottom: 8px;
}
.post-content ul li {
  list-style: disc;
}
.post-content ol li {
  list-style: decimal;
}
.post-content blockquote,
.entry-content blockquote {
  border-left: 4px solid var(--ctts-green);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--ctts-green-faint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ctts-gray-600);
}
.post-content img,
.entry-content img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}
.post-content a,
.entry-content a {
  color: var(--ctts-green);
  text-decoration: underline;
  text-decoration-color: var(--ctts-green-pale);
}
.post-content a:hover,
.entry-content a:hover {
  color: var(--ctts-green-dark);
}

/* Post Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ctts-gray-200);
}
.post-tags-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ctts-gray-600);
}
.post-tags a {
  font-size: 0.8125rem;
  padding: 4px 12px;
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: var(--radius-full);
  color: var(--ctts-gray-600);
  text-decoration: none;
  transition: var(--ease-fast);
}
.post-tags a:hover {
  background: var(--ctts-green);
  border-color: var(--ctts-green);
  color: var(--ctts-white);
}

/* Share */
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.post-share-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ctts-gray-600);
}
.post-share-buttons {
  display: flex;
  gap: 8px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: var(--ease-fast);
  text-decoration: none;
}
.share-btn--facebook {
  background: #1877f2;
  color: white;
}
.share-btn--facebook:hover {
  background: #0d65d8;
  color: white;
}
.share-btn--twitter {
  background: #000;
  color: white;
}
.share-btn--twitter:hover {
  background: #333;
  color: white;
}
.share-btn--linkedin {
  background: #0a66c2;
  color: white;
}
.share-btn--linkedin:hover {
  background: #084d9b;
  color: white;
}

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ctts-gray-200);
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--ctts-gray-200);
  transition: var(--ease-fast);
}
.post-nav-link:hover {
  border-color: var(--ctts-green);
  background: var(--ctts-green-faint);
}
.post-nav-link--next {
  text-align: right;
}
.post-nav-direction {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ctts-green);
  margin-bottom: 4px;
}
.post-nav-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ctts-dark);
  line-height: 1.3;
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--ctts-gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 40px;
}
.author-bio-avatar img {
  border-radius: var(--radius-full);
}
.author-bio-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ctts-green);
}
.author-bio-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ctts-dark);
  margin: 4px 0 8px;
}
.author-bio-desc {
  font-size: 0.9rem;
  color: var(--ctts-gray-600);
}

/* Post Sidebar Sticky CTA */
.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.post-sidebar-cta-inner {
  background: var(--ctts-green-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.post-sidebar-cta-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}
.post-sidebar-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--ctts-white);
  margin-bottom: 10px;
}
.post-sidebar-cta-inner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.post-sidebar-cta-inner .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.post-sidebar-cta-inner .btn-outline {
  width: 100%;
  justify-content: center;
  color: #1a365d;
  border-color: #1a365d;
}
.post-sidebar-cta-inner .btn-outline:hover {
  background: #1a365d;
  color: var(--ctts-white);
}

.post-sidebar-related {
  background: var(--ctts-white);
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.related-posts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.related-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.related-post-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.related-post-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ctts-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}
.related-post-title:hover {
  color: var(--ctts-green);
}
.related-post-date {
  font-size: 0.75rem;
  color: var(--ctts-gray-400);
}

/* More Posts Section */
.more-posts-section {
  padding: 80px 0;
  background: var(--ctts-bg);
  border-top: 1px solid var(--ctts-gray-200);
}
.more-posts-cta {
  text-align: center;
  margin-top: 48px;
}

/* â”€â”€â”€ PAGE TEMPLATE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero--has-thumb .page-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-content-section {
  padding: 72px 0;
}
.page-content-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* â”€â”€â”€ 404 PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ctts-404-main {
  background: var(--ctts-bg);
}
.error-404-section {
  padding: 120px 0;
}
.error-404-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.error-404-visual {
  font-size: 4rem;
  margin-bottom: 12px;
}
.error-404-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--ctts-green-pale);
  line-height: 1;
  margin-bottom: 4px;
}
.error-404-subtitle {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--ctts-dark);
  margin-bottom: 16px;
}
.error-404-desc {
  color: var(--ctts-gray-600);
  margin-bottom: 32px;
}
.error-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.error-404-search p {
  font-size: 0.9rem;
  color: var(--ctts-gray-400);
  margin-bottom: 12px;
}
.error-404-search .search-form {
  display: flex;
  gap: 10px;
}
.error-404-search input[type="search"] {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}
.error-404-search button {
  padding: 10px 20px;
  background: var(--ctts-green);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€â”€ TRUST BAR SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-bar {
  padding: 10px 0 32px;
  background: var(--ctts-white);
  border-bottom: 1px solid var(--ctts-gray-200);
}

/* Mobile: Hide trust bar top border */
@media (max-width: 768px) {
  .trust-bar {
    border-top: none !important;
  }
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ctts-gray-400);
  white-space: nowrap;
}
.trust-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* Premium side-fade gradients */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.trust-logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: trustMarquee 30s linear infinite;
  padding: 10px 0;
  will-change: transform;
}

.trust-logos-track:hover {
  animation-play-state: paused;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.trust-logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes trustMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 30px)); /* Half of the track + half gap */
  }
}
.trust-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ctts-primary);
  flex-shrink: 0;
}
.trust-logo-icon svg {
  width: 24px;
  height: 24px;
}
.trust-logo-tag {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ctts-dark);
}

/* â”€â”€â”€ FAQ SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--ctts-bg);
  position: relative;
  overflow: hidden;
}

/* Background decorative image (left side) */
.faq-bg-deco {
  position: absolute;
  left: -5%;
  top: 0;
  bottom: 0;
  width: 30%;
  z-index: 0;
}

.faq-bg-deco-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

/* Responsive FAQ decorative image */
@media (max-width: 1024px) {
  .faq-bg-deco {
    width: 20%;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .faq-bg-deco {
    display: none; /* Hide deco on small tablets/mobile for clarity */
  }
}
.faq-grid {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}
.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px; /* Reduced vertical gap */
}
.faq-item {
  background: var(--ctts-white);
  border: 1.5px solid var(--ctts-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--ease);
}
.faq-item.is-active {
  border-color: var(--ctts-green-light);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ctts-dark);
  cursor: pointer;
}
.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--ctts-green-faint);
  color: var(--ctts-green);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.faq-item.is-active .faq-icon {
  transform: rotate(180deg);
  background: var(--ctts-green);
  color: var(--ctts-white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-active .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 32px 24px;
  color: var(--ctts-gray-600);
  line-height: 1.7;
}

/* â”€â”€â”€ PREMIUM OVERRIDES & HARDENING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}
.hero-quick-card {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.ctts-header.is-scrolled .header-main {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(8px) !important;
}
.section-title {
  color: var(--ctts-dark) !important;
}
.section-label {
  color: var(--ctts-green-mid) !important;
}

/* Responsive fixes */
@media (max-width: 900px) {
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .hero-quick-form--horizontal .form-row-horizontal {
    flex-direction: column;
  }

  .hero-quick-form--horizontal .form-group {
    width: 100%;
    min-width: auto;
  }

  .hero-quick-form--horizontal .form-group--submit {
    width: 100%;
  }

  .hero-quick-form--horizontal .form-group--submit .btn {
    width: 100%;
  }
}

/* Large tablets */
@media (max-width: 1100px) {
  .hero-container {
    max-width: 100%;
    padding: 0 20px;
  }
  .about-grid {
    gap: 48px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-card {
    position: static;
  }
  .posts-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-layout {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  :root {
    --section-py: 72px;
  }
  .header-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .header-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ctts-white);
    box-shadow: var(--shadow-md);
    padding: 16px;
    z-index: 100;
  }
  .header-nav.is-open .nav-menu {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 4px;
  }
  .header-nav.is-open .nav-menu > li > a {
    padding: 12px 16px;
  }
  .header-main {
    position: relative;
  }
}

/* â”€â”€â”€ HELPER CLASSES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.relative-z {
  position: relative !important;
  z-index: 5 !important;
}

/* â”€â”€â”€ SIDEBAR POLISH â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sidebar-widget {
  background: var(--ctts-white) !important;
  padding: 24px !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  margin-bottom: 24px !important;
  border: 1px solid var(--ctts-gray-200) !important;
}
.widget-title {
  font-size: 1.125rem !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid var(--ctts-green-pale) !important;
}
.categories-list li {
  display: flex !important;
  justify-content: space-between !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid var(--ctts-gray-100) !important;
}
.categories-list li:last-child {
  border-bottom: none !important;
}

/* â”€â”€â”€ UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-center {
  text-align: center !important;
}
.mt-12 {
  margin-top: 48px !important;
}
.mb-6 {
  margin-bottom: 24px !important;
}

/* â”€â”€â”€ FAQ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-footer {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.faq-footer-text {
  font-size: 1.125rem;
  color: var(--ctts-gray-600);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 640px) {
  .faq-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* â”€â”€â”€ PRE-FOOTER CTA SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pre-footer-cta {
  padding: 0;
  background: transparent;
  overflow: hidden;
  position: relative;
}

.cta-full-width-wrapper {
  width: 100%;
  line-height: 0;
  position: relative;
}

.cta-full-img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-pill-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end; /* Move down */
  justify-content: flex-end; /* Move right */
  padding-bottom: 40px; /* Precise distance from bottom */
  padding-right: 60px; /* Space from right edge */
  z-index: 2;
}

.cta-pill-card {
  background: #ffffff;
  border-radius: 100px;
  padding: 48px 60px; /* Increased height via vertical padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  width: auto; /* Shrink to content */
  max-width: 85%; /* Limit width */
}

.cta-pill-content {
  flex: 1;
}

.cta-pill-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.cta-pill-subtitle {
  font-size: 1.0625rem;
  color: #666b6e;
  margin: 12px 0 0;
  font-weight: 500;
}

.cta-pill-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-pill-btn {
  background: #c19b6a;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.cta-pill-btn:hover {
  background: #1a365d;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
}

.cta-pill-phone {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-pill-phone-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #1a365d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a365d;
  transition: all 0.3s ease;
}

.cta-pill-phone:hover .cta-pill-phone-icon {
  background: #1a365d;
  color: #ffffff;
}

.cta-pill-phone-link {
  font-weight: 700;
  color: #1a365d;
  text-decoration: none;
  font-size: 1.125rem;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .cta-pill-card {
    padding: 32px 40px;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .pre-footer-cta {
    background-image: url('http://cuttrimtreeservicesrochesterny.com/wp-content/uploads/2026/04/pre_footer4.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
  }
  .cta-full-img {
    display: none;
  }
  .cta-pill-overlay {
    position: static;
    padding: 0;
    display: block;
  }
  .cta-pill-card {
    flex-direction: column;
    text-align: center;
    border-radius: 24px; /* Less rounded for better mobile space */
    padding: 40px 24px;
    gap: 28px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .cta-pill-actions {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .cta-pill-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
  }
  .cta-pill-phone {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-pill-title {
    font-size: 1.75rem;
  }
  .cta-pill-card {
    padding: 40px 20px;
    border-radius: 30px;
  }
}

.reveal-section,
.reveal-item {
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  opacity: 1; /* Default to visible */
}

/* Specific reveal states - hidden until .is-visible is added by JS */
.reveal-item[data-reveal="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}
.reveal-item[data-reveal="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible {
  opacity: 1;
}

/* =============================================================================
   RESPONSIVE OVERHAUL
   ============================================================================= */

/* â”€â”€â”€ Global Fluid Adjustments â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
    --container-px: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --container-px: 20px;
  }
  .section-header {
    margin-bottom: 40px;
  }
}

/* â”€â”€â”€ Header & Premium Mobile Menu â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .ctts-header {
    top: 0 !important; /* Flush to top on mobile */
  }

  .header-main {
    margin: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Defined edge */
  }

  .header-inner {
    padding: 0 20px;
    justify-content: space-between !important;
  }
  .ctts-header {
    padding-top: 0 !important;
  }

  /* Normal Dropdown Menu */
  .header-nav {
    position: absolute;
    top: 100%; /* flush to bottom of header */
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 0; /* Match full-width header */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: block; /* Switch from flex for vertical stacking */
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
  }

  .header-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-menu > li > a {
    font-size: 1.25rem;
    color: var(--ctts-gray-800) !important;
    padding: 8px 0;
    width: 100%;
  }

  .nav-menu > li > a::after {
    display: none; /* Hide underline on mobile for cleaner look */
  }

  .mobile-toggle {
    display: flex !important;
    z-index: 10000;
  }

  /* Admin Bar Support for flush header */
  .admin-bar .ctts-header {
    top: 32px !important;
  }
  @media (max-width: 782px) {
    .admin-bar .ctts-header {
      top: 0 !important; /* Mobile: flush to top, no admin bar offset */
    }
  }

  .site-branding {
    flex: 0 0 auto;
  }
  .header-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .ctts-header {
    top: 0 !important;
  }
  .header-main {
    margin: 0 !important;
  }
  .header-inner {
    height: 76px;
  }
  .site-name {
    font-size: 1rem;
  }
}

/* â”€â”€â”€ Hero Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .hero-section {
    padding-top: 140px;
    text-align: center;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-subtitle {
    margin-inline: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-quick-card {
    max-width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 72px; /* Match navbar height to remove gap */
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-quick-card-inner {
    padding: 24px;
  }

  .hero-quick-form--horizontal .form-row-horizontal {
    flex-direction: column;
  }

  .hero-quick-form--horizontal .form-group {
    width: 100%;
    min-width: auto;
  }

  .hero-quick-form--horizontal .form-group--submit {
    width: 100%;
  }

  .hero-quick-form--horizontal .form-group--submit .btn {
    width: 100%;
  }
}

/* â”€â”€â”€ About Section (Who We Are) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-img-wrapper {
    max-width: 600px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .about-badge {
    padding: 10px 14px;
  }
  .about-badge--certified {
    top: 15px;
    left: 10px;
  }
  .about-badge--experience {
    position: relative !important; /* Change from absolute to relative */
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important; /* Full width */
    text-align: center !important;
    margin-top: 10px !important; /* Small gap below image */
    margin-left: 0 !important;
    margin-right: 0 !important;
    z-index: 10 !important;
  }
  .about-image img {
    height: 300px !important; /* Reduced height */
  }
  .about-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .about-cta-row .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* â”€â”€â”€ Services Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px;
  }
}

/* â”€â”€â”€ Stats Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€â”€ Gallery Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
}

/* â”€â”€â”€ FAQ Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-column {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  .faq-answer-inner {
    padding: 0 20px 20px;
  }
}

/* â”€â”€â”€ Blog Preview â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-preview-section {
  margin-bottom: 80px;
}

@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€â”€ Footer Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* â”€â”€â”€ FLOATING ACTION BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ctts-floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
  pointer-events: auto;
}

.ctts-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  cursor: pointer;
}

.ctts-fab:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.fab-phone {
  background: var(--ctts-green-dark);
  color: var(--ctts-white);
}

.fab-phone:hover svg {
  color: var(--ctts-primary) !important;
  stroke: var(--ctts-primary) !important;
}

.fab-contact {
  background: var(--ctts-white);
  color: var(--ctts-green-dark);
}

.ctts-fab svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.ctts-fab:hover svg {
  transform: scale(1.1);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .ctts-floating-actions {
    bottom: 24px;
    right: 24px;
    gap: 12px;
  }
  .ctts-fab {
    width: 52px;
    height: 52px;
  }
}

/* â”€â”€â”€ BLOG PAGE RESPONSIVENESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .blog-sidebar {
    order: 2; /* Move sidebar below posts on tablets and mobile */
  }
  .blog-posts-column {
    order: 1;
  }
}

@media (max-width: 768px) {
  .posts-grid--blog {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero--blog {
    padding: 80px 0 60px;
    min-height: auto;
  }
  .page-hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  .page-hero-desc {
    font-size: 1rem;
    max-width: 100%;
  }
}







