/* e:/my office work/New Volume F/mathiyalagan/Tampa Drains/Tampa Drains website/assets/css/main.css */
@import url('variables.css');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-1);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
  color: var(--color-text-light);
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-2);
}

::-webkit-scrollbar-thumb {
  background: var(--color-text-muted);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-bg-2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.section {
  padding: 8rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 30%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .text-gradient {
  background: linear-gradient(135deg, var(--color-text-light) 20%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

[data-theme="dark"] .btn-secondary {
  border-color: var(--color-text-light);
  color: var(--color-text-light);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

[data-theme="dark"] .btn-secondary:hover {
  background-color: var(--color-text-light);
  color: var(--color-bg-1);
}

.btn-icon {
  gap: 0.5rem;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

/* ==========================================================================
   Header & Navbar (Bootstrap Overrides Matching Mockup)
   ========================================================================== */
.navbar {
  transition: background-color var(--transition-normal), padding var(--transition-normal);
  background-color: #ffffff !important;
  border-bottom: 1px solid var(--border-color);
}

.navbar .nav-link {
  font-family: var(--font-heading);
  font-size: 1rem !important;
  color: var(--color-text-main) !important;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .nav-link:hover {
  color: var(--color-primary) !important;
}

.phone-link {
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.phone-link:hover {
  color: var(--color-accent-hover) !important;
  transform: translateY(-1px);
}

.header-right .btn {
  transition: all var(--transition-normal);
}

.header-right .btn:hover {
  background-color: var(--color-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--border-color-glow);
}

/* ==========================================================================
   Hero Section (Bootstrap Grid Matching Mockup)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/gallery/foundation-waterproofing.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-badge-custom {
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: white;
}

.text-highlight-orange {
  color: var(--color-accent);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.85);
}

.max-w-600 {
  max-width: 600px;
}

.hero-scroll-down {
  animation: bounce-arrow 2s infinite;
  transition: opacity 0.3s;
}

.hero-scroll-down:hover {
  opacity: 0.8;
  color: #ff6600;
}

@keyframes bounce-arrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
  background-color: var(--color-bg-1);
  /* White background matching design */
  padding: 6rem 0;
}

/* Service Photo Cards â€” premium style matching mockup */
.svc-photo-card {
  position: relative;
  min-height: 350px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  z-index: 1;
}

.svc-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc-photo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform var(--transition-slow);
}

.svc-photo-card:hover .svc-photo-bg {
  transform: scale(1.05);
}

.svc-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 45%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 2;
}

.svc-content {
  position: relative;
  z-index: 3;
  padding: 2.25rem !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
}

@media (max-width: 576px) {
  .svc-content {
    padding: 1.5rem !important;
  }
}

.svc-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.svc-icon-badge svg {
  width: 18px;
  height: 18px;
  fill: none !important;
  stroke: white !important;
  stroke-width: 2.2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-badge-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.svc-photo-card h3 {
  font-size: 1.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

.svc-photo-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.925rem;
  line-height: 1.6;
}

.svc-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: capitalize;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.svc-learn-more svg {
  transition: transform 0.25s ease;
  fill: none;
}

.svc-learn-more:hover svg {
  transform: translateX(5px);
}

.svc-cta-btn {
  background-color: #1e293b;
  /* Dark slate matching design */
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
  border: none;
  box-shadow: var(--shadow-sm);
}

.svc-cta-btn:hover {
  background-color: #0f172a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
}

.svc-cta-btn svg {
  transition: transform 0.25s ease;
}

.svc-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Before/After Slider Component
   ========================================================================== */
.showcase-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  user-select: none;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-before-img {
  z-index: 1;
}

.slider-after-img {
  z-index: 2;
  /* Width will be animated or changed dynamically via JS clip-path */
  width: 100%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-badge {
  position: absolute;
  top: 1rem;
  z-index: 10;
  background-color: rgba(15, 23, 42, 0.75);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.slider-badge-before {
  right: 1rem;
}

.slider-badge-after {
  left: 1rem;
}

/* Drag bar handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: white;
  z-index: 20;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  border: 3px solid white;
}

.slider-handle-button svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* ==========================================================================
   Interactive Cost Estimator Component
   ========================================================================== */
.calculator-section {
  background-color: var(--color-bg-2);
}

.calculator-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--color-bg-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 868px) {
  .calculator-wrapper {
    grid-template-columns: 1fr;
  }
}

.calculator-inputs {
  padding: 3rem;
}

@media (max-width: 480px) {
  .calculator-inputs {
    padding: 1.5rem;
  }
}

.calc-group {
  margin-bottom: 2.5rem;
}

.calc-group:last-child {
  margin-bottom: 0;
}

.calc-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Grid layout for type selection cards */
.drain-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 480px) {
  .drain-types-grid {
    grid-template-columns: 1fr;
  }
}

.drain-type-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: left;
}

.drain-type-card:hover {
  border-color: var(--color-accent-glow);
  transform: translateY(-2px);
}

.drain-type-card.active {
  border-color: var(--color-accent);
  background-color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.05);
}

.drain-type-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

/* Range input styled custom */
.range-slider-container {
  position: relative;
}

.range-value-display {
  float: right;
  font-weight: 700;
  color: var(--color-accent);
}

input[type="range"] {
  width: 100%;
  height: 8px;
  background: var(--color-bg-2);
  border-radius: var(--radius-full);
  outline: none;
  margin: 1rem 0;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  cursor: pointer;
  border: 3px solid var(--color-bg-1);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Addons section */
.calc-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.calc-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

/* Calculator Output/Summary Panel */
.calculator-results {
  background-color: var(--color-bg-3);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border-color);
  transition: background-color var(--transition-normal);
}

@media (max-width: 868px) {
  .calculator-results {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 3rem;
  }
}

@media (max-width: 480px) {
  .calculator-results {
    padding: 1.5rem;
  }
}

.results-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.summary-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.summary-details li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 0.5rem;
  font-size: 0.95rem;
}

.summary-details li span:last-child {
  font-weight: 600;
}

.estimated-price-box {
  background-color: var(--color-bg-1);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  margin-bottom: 2.5rem;
}

.price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  display: block;
}

.price-val {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.calc-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: var(--color-bg-1);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent-alt);
}

.review-content {
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--border-color);
}

.author-info h4 {
  font-size: 1rem;
}

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

/* ==========================================================================
   Contact & Quote Form
   ========================================================================== */
.contact-section {
  position: relative;
  background-color: var(--color-bg-1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info-panel h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.contact-info-panel p {
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-box svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Social icons list */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-2);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-main);
  transition: fill var(--transition-normal);
}

.social-link:hover svg {
  fill: white;
}

/* Glassmorphic Contact Form */
.contact-form-container {
  background-color: var(--color-bg-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 1.75rem;
  }
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-1);
  color: var(--color-text-main);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Success notification message layout after form submission */
.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(45, 90, 39, 0.1);
  border: 1px solid rgba(45, 90, 39, 0.2);
  color: var(--color-secondary);
}

.form-status.error {
  display: block;
  background-color: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #dc2626;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.80fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-brand-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Utility Helpers (new pages)
   ========================================================================== */
.max-w-700 {
  max-width: 700px;
}

.max-w-800 {
  max-width: 800px;
}

.max-w-600 {
  max-width: 600px;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-40 {
  color: rgba(255, 255, 255, 0.4) !important;
}

.text-white-30 {
  color: rgba(255, 255, 255, 0.3) !important;
}

.text-white-20 {
  color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.10) !important;
}

.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.20) !important;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.10) !important;
}

.border-white-20 {
  border-color: rgba(255, 255, 255, 0.20) !important;
}

.tracking-wider {
  letter-spacing: 0.06em;
}

.font-xs {
  font-size: 0.78rem;
}

.font-heading {
  font-family: var(--font-heading), sans-serif !important;
}

.bg-primary-10 {
  background-color: rgba(21, 101, 192, 0.10) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-accent {
  color: var(--color-accent) !important;
}

.text-teal {
  color: var(--color-teal) !important;
}

.bg-teal {
  background-color: var(--color-teal) !important;
}

.bg-accent {
  background-color: var(--color-accent) !important;
}

.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

/* Accent CTA Button */
.btn-accent {
  background-color: var(--color-accent) !important;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent:hover {
  background-color: var(--color-accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 111, 0, 0.3);
  color: #fff !important;
}

/* Bootstrap btn-primary override for our theme */
.btn-primary {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
  border-radius: 10px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21, 101, 192, 0.25);
}

/* ==========================================================================
   Problem Cards Section
   ========================================================================== */
.bg-light-blue-tint {
  background-color: #F0F6FF;
}

.icon-box-orange,
.icon-box-teal,
.icon-box-blue,
.icon-box-dark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-svg {
  width: 28px;
  height: 28px;
}

.icon-box-orange {
  background-color: rgba(6, 182, 212, 0.12);
  color: var(--color-accent);
}

.icon-box-teal {
  background-color: rgba(14, 165, 233, 0.12);
  color: var(--color-secondary);
}

.icon-box-blue {
  background-color: rgba(59, 130, 246, 0.12);
  color: var(--color-accent-alt);
}

.icon-box-dark {
  background-color: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

/* ==========================================================================
   Services Image Cards (new card style)
   ========================================================================== */
.group-service {
  border-radius: 18px;
  overflow: hidden;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img.transition-scale {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.group-service:hover img.transition-scale {
  transform: scale(1.05);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  z-index: 1;
}

.content-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.icon-square {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Why Choose Us â€” Feature icons
   ========================================================================== */
.icon-square-feature {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.hover-bounce:hover {
  transform: translateY(-6px) scale(1.05);
}

/* Steps process */
.step-arrow {
  position: absolute;
  right: -16px;
  top: 32px;
  z-index: 2;
}

/* ==========================================================================
   Service Areas Decorative Circles (hero)
   ========================================================================== */
.absolute-circle-1,
.hero-circle-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.absolute-circle-2,
.hero-circle-2 {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.10);
  pointer-events: none;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-hero-section {
  position: relative;
  overflow: hidden;
}

/* Floating license badge on story image */
.absolute-story-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
}

@media (max-width: 576px) {
  .absolute-story-badge {
    bottom: 10px;
    left: 10px;
  }
}

/* ==========================================================================
   Gallery Page
   ========================================================================== */
.gallery-hero-section {
  position: relative;
}

/* Filter Buttons */
.gallery-filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--border-color);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: #fff;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Gallery Cards */
.gallery-card {
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item {
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   Service Areas Page â€” County Cards
   ========================================================================== */
.sa-county-card {
  border: 1px solid rgba(21, 101, 192, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sa-county-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(21, 101, 192, 0.12);
}

.sa-area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: #37474F;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sa-area-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.sa-area-item:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.sa-area-item:last-child {
  border-bottom: none;
}

/* Service area stats cards */
.sa-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.25rem 0.75rem;
  backdrop-filter: blur(4px);
  transition: background var(--transition-fast), transform var(--transition-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sa-stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

@media (max-width: 576px) {
  .sa-stat-card {
    padding: 0.75rem 0.25rem;
    min-height: 90px;
  }

  .sa-stat-card .h3 {
    font-size: 1.2rem !important;
  }

  .sa-stat-card .text-white-80 {
    font-size: 0.65rem !important;
    line-height: 1.2;
  }
}

/* ==========================================================================
   Contact Page â€” Icon square contact
   ========================================================================== */
.icon-square-contact {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-square-contact svg {
  width: 22px;
  height: 22px;
}

/* Social buttons (contact section) */
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F5F5F5;
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #424242;
}

.social-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

/* ==========================================================================
   Service Areas Summary on Home Page
   ========================================================================== */
.service-areas-summary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%) !important;
  /* Premium rich blue gradient matching mockup */
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.absolute-circle-1 {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.absolute-circle-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.sa-glass-container {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.18) !important;
}

/* Service Area CTA Button matching mockup */
.sa-cta-btn {
  background-color: #ebf3fc !important;
  /* Very light blue ice background */
  color: var(--color-primary) !important;
  /* Brand primary blue text */
  font-weight: 700 !important;
  font-family: var(--font-heading) !important;
  border-radius: 12px !important;
  /* Rounded corners (not pill) */
  padding: 1rem 2.25rem !important;
  /* Generous breathing padding */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  transition: all var(--transition-fast) !important;
  text-decoration: none;
  font-size: 1.05rem !important;
}

.sa-cta-btn:hover {
  background-color: #dbeafe !important;
  /* Slightly deeper blue-tint hover bg */
  color: var(--color-primary-dark) !important;
  /* Dark primary blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}

.sa-cta-btn svg {
  transition: transform var(--transition-fast) !important;
}

.sa-cta-btn:hover svg {
  transform: translateX(4px);
  /* Micro-interaction sliding the arrow */
}

/* ==========================================================================
   Why Choose Us & 3-Step Process Section
   ========================================================================== */
#why-choose-us {
  background-color: var(--color-bg-2) !important;
  /* Premium light sky blue background */
}

/* Badge Styling matching mockup exactly */
.wcu-badge {
  background-color: var(--color-primary) !important;
  /* Vibrant brand blue */
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  /* Extra bold */
  letter-spacing: 0.05em !important;
  padding: 0.55rem 1.85rem !important;
  /* Generous top-bottom and left-right padding */
  border-radius: 9999px !important;
  /* Pill shape */
  display: inline-block;
  text-transform: uppercase !important;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.15) !important;
}

/* Icon Container Boxes */
.wcu-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  color: #ffffff;
}

.wcu-icon-box:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Category Color Classes */
.wcu-blue {
  background-color: var(--color-primary) !important;
}

.wcu-orange {
  background-color: var(--color-accent) !important;
}

.wcu-teal {
  background-color: var(--color-secondary) !important;
}

.wcu-dark {
  background-color: #263238 !important;
}

/* Process Card & Steps */
.wcu-process-card {
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(15, 76, 129, 0.04) !important;
  background-color: #ffffff !important;
}

.step-number-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast);
}

.step-number-circle:hover {
  transform: scale(1.1);
}

/* Centered Gutter Arrow Indicators */
.wcu-arrow {
  position: absolute;
  top: 25px;
  /* Vertical center of 50px circle */
  right: -12px;
  transform: translateY(-50%);
  color: #CFD8DC;
  pointer-events: none;
}

/* ==========================================================================
   Navbar active link indicator
   ========================================================================== */
.navbar .nav-link.active {
  color: var(--color-primary) !important;
  font-weight: 700;
}

/* ==========================================================================
   Custom Utility Classes (Tailwind Overrides)
   ========================================================================== */
.inline-block {
  display: inline-block;
}

.bg-accent {
  background-color: var(--color-accent) !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.font-bold {
  font-weight: 700 !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.tracking-wider {
  letter-spacing: 0.08em !important;
}

/* ==========================================================================
   CTA Section â€“ "Stop Water Damage Before It Starts"
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, #1e2d3d 0%, #263238 50%, #1a2530 100%);
  padding: 3rem 0;
  position: relative;
}

/* Subtle radial glow overlay for depth */
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(21, 101, 192, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(255, 111, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Subtitle paragraph */
.cta-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
}

/* Primary CTA: solid orange button */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.05rem 2.5rem;
  /* Taller, wider for prominence */
  border-radius: 8px;
  /* Slightly less rounded matching mockup */
  border: none;
  text-decoration: none;
  box-shadow: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  min-height: 56px;
  /* Match Call Now height */
}

.cta-btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: none;
}

/* Secondary CTA: dark bordered "Call Now" button */
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.10);
  /* Darker glass tint */
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.05rem 2rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  min-height: 56px;
  /* Same height as orange button */
}

.cta-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Footnote text */
.cta-footnote {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* Utility for lg vertical padding */
.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* ==========================================================================
   Footer â€” matching screenshot design
   ========================================================================== */
.site-footer {
  background-color: #1e1e1e;
  color: #ccc;
  padding: 3.5rem 0 0;
  font-family: var(--font-body);
}

/* === Top Grid: Brand col + 3 link cols === */
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.85rem;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-tampa {
  color: #ffffff;
}

.logo-drains { color: var(--color-secondary); }

.logo-dot {
  color: #999;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.88rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-link-inline {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-link-inline:hover {
  color: #ffa040;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 0.5rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #2e2e2e;
  border: 1px solid #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.footer-social-icon:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Nav Columns */
.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.footer-col-heading {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav-list li a {
  color: #aaa;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-nav-list li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-link-accent {
  color: var(--color-accent) !important;
}

.footer-link-accent:hover {
  color: #ffa040 !important;
}

/* Divider */
.footer-divider {
  border-top: 1px solid #2e2e2e;
  margin: 0.5rem 0 2rem;
}

/* === Contact Us Section === */
.footer-contact-section {
  padding-bottom: 2.5rem;
}

.footer-contact-heading {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

/* Single row layout */
.footer-contact-row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  align-items: center;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-icon-orange {
  background-color: rgba(6, 182, 212, 0.15);
  color: var(--color-accent);
}

.footer-contact-main {
  color: #ddd;
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-contact-sub {
  color: #888;
  font-size: 0.8rem;
}

/* Get Free Estimate CTA Button */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
  white-space: nowrap;
}

.footer-cta-btn:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid #2e2e2e;
  padding: 1.25rem 0;
  text-align: center;
}

.footer-copy {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
}


