/* ==========================================================================
   K & M PAINTERS - MASTER STYLESHEET
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
  --color-primary: #0b60b7;
  --color-primary-dark: #07478b;
  --color-primary-light: #217ee6;
  --color-navy: #041a33;
  --color-navy-dark: #021020;
  --color-navy-card: #082344;
  --color-text-dark: #111827;
  --color-text-muted: #374151;
  --color-text-light: #9cb4cc;
  --color-white: #ffffff;
  --color-accent-blue: #1473e6;
  --color-border-divider: rgba(255, 255, 255, 0.15);
  
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Dancing Script', cursive, sans-serif;
  --font-signature: 'Alex Brush', 'Great Vibes', 'Dancing Script', cursive;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --header-height: 88px;
  --container-max-width: 1400px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(4, 26, 51, 0.1);
  --shadow-glow: 0 12px 30px rgba(11, 96, 183, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  display: flex;
  align-items: center;
  animation: navSlideDown 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  transition: transform var(--transition-smooth);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  transform: scale(1.7);
  transform-origin: left center;
  transition: transform var(--transition-smooth);
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1f2937;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 4px;
  animation: slideUnderline 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUnderline {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* Header Phone CTA */
.header-cta {
  display: flex;
  align-items: center;
}

.phone-cta-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0.6rem;
  border-radius: 50px;
  transition: transform var(--transition-fast);
}

.phone-cta-link:hover {
  transform: translateY(-2px);
}

.phone-icon-circle {
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(4, 26, 51, 0.25);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.phone-cta-link:hover .phone-icon-circle {
  background: var(--color-primary);
  transform: rotate(12deg) scale(1.05);
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.phone-subtext {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.2;
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 26px;
  background: transparent;
  z-index: 1100;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background-color 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.open .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
}

.mobile-nav-drawer.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--color-primary);
  padding-left: 0.5rem;
}

.mobile-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.btn-call-mobile {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.9rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-quote-mobile {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.9rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ebecee;
  overflow: hidden;
}

/* Hero Background Image */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  animation: heroImgZoom 5.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  will-change: transform;
}

.hero-overlay-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(244, 245, 247, 0.96) 0%,
    rgba(244, 245, 247, 0.88) 32%,
    rgba(244, 245, 247, 0.4) 55%,
    rgba(244, 245, 247, 0) 70%
  );
  pointer-events: none;
}

/* Hero Content Area */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 4rem 2.5rem 6rem;
  display: flex;
  align-items: center;
  flex: 1;
}

.hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Main Heading */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3.8vw, 3.65rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #111827;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.6rem;
  animation: heroSlideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-title span {
  display: block;
}

/* Script Cursive Accent */
.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(11, 96, 183, 0.15);
  animation: heroTaglineReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* Subtitle Description */
.hero-description {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.65;
  font-weight: 500;
  color: #374151;
  max-width: 480px;
  margin-bottom: 2.2rem;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

/* Hero CTA Button */
.hero-actions {
  display: flex;
  align-items: center;
  animation: heroBtnScaleIn 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.85s both;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, #0b5ea8 0%, #0d69bd 100%);
  color: var(--color-white);
  padding: 0.6rem 0.6rem 0.6rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(11, 94, 168, 0.35);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-quote::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-quote:hover::before {
  opacity: 1;
}

.btn-quote:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(11, 94, 168, 0.48);
  background: linear-gradient(135deg, #094e8c 0%, #0b5ea8 100%);
}

.btn-quote:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-icon-badge {
  width: 38px;
  height: 38px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.95rem;
  transition: transform var(--transition-fast);
}

.btn-quote:hover .btn-icon-badge {
  transform: translateX(3px);
}

/* ==========================================================================
   Bottom Feature Arch Bar
   ========================================================================== */
.bottom-feature-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: auto;
  animation: heroWaveReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) 1.05s both;
}

/* Top Curve SVG */
.arch-curve-svg-wrapper {
  position: absolute;
  top: -38px;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.arch-curve-svg-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bottom-bar-content {
  background: var(--color-navy);
  padding: 1.8rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

.feature-grid {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

/* Feature Card */
.feature-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0.6rem 1.5rem;
  position: relative;
  color: var(--color-white);
  transition: transform var(--transition-fast);
}

.feature-card:nth-child(1) { animation: heroCardStagger 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.15s both; }
.feature-card:nth-child(2) { animation: heroCardStagger 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.25s both; }
.feature-card:nth-child(3) { animation: heroCardStagger 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.35s both; }
.feature-card:nth-child(4) { animation: heroCardStagger 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.45s both; }

/* Subtle Vertical Dividers */
.feature-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--color-border-divider);
}

/* ==========================================================================
   Hero Keyframe Animations
   ========================================================================== */
@keyframes heroImgZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

@keyframes heroSlideUpFade {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTaglineReveal {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBtnScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(14px);
  }
  70% {
    transform: scale(1.03) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroWaveReveal {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCardStagger {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-link:hover {
  transform: translateY(-2px);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper .icon-circle {
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.feature-link:hover .icon-circle {
  background: var(--color-primary-light);
  color: var(--color-white);
  transform: scale(1.08);
}

.feature-icon {
  font-size: 2.1rem;
  color: var(--color-white);
  transition: transform var(--transition-fast);
}

.feature-link:hover .feature-icon {
  transform: scale(1.1);
  color: #60a5fa;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
}

.feature-email {
  font-size: 0.95rem;
  word-break: break-all;
}

.feature-subtitle {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.3;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  position: relative;
  background-color: #ffffff;
  padding: 6.5rem 2rem 6rem;
  overflow: hidden;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 5rem;
  align-items: center;
}

/* Left Column: House Image & Paint Brush Effect */
.about-visual-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
}

.about-house-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

/* Paint Roller & Stroke Graphic */
.paint-roller-container {
  position: absolute;
  bottom: -45px;
  left: -55px;
  width: 290px;
  z-index: 10;
  pointer-events: none;
}

.paint-roller-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
  transform: rotate(0deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .paint-roller-img {
  transform: translateY(-4px) rotate(2deg) scale(1.03);
}

/* Right Column: About Content */
.about-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-badge {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.about-text-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.about-text-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
  font-weight: 500;
}

/* Signature Styling */
.about-signature-wrapper {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
}

.about-signature-text {
  font-family: var(--font-signature);
  font-size: clamp(3rem, 4.5vw, 4rem);
  color: #475569;
  line-height: 1;
  display: inline-block;
  transform: rotate(-3deg);
  user-select: none;
  opacity: 0.92;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.about-signature-wrapper:hover .about-signature-text {
  color: var(--color-primary);
  transform: rotate(-1deg) scale(1.04);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  position: relative;
  background-color: #ffffff;
  padding: 4.5rem 2rem 6.5rem;
  overflow: hidden;
}

.services-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 3.8rem;
}

.services-badge {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

/* Services 3-Column Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 2rem;
  align-items: stretch;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 96, 183, 0.12);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.service-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(11, 96, 183, 0.28);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .service-icon-badge {
  transform: scale(1.08) rotate(6deg);
  background: var(--color-primary-dark);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
}

/* Feature Bullets List */
.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.service-features-list li {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #374151;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-features-list li:hover {
  transform: translateX(4px);
  color: var(--color-primary);
}

.service-features-list .bullet-dot {
  color: #111827;
  font-size: 1.2rem;
  line-height: 1;
}

/* Feature Graphic Column */
.services-graphic-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.services-graphic-wrapper {
  width: 100%;
  max-width: 440px;
  transition: transform 0.4s ease;
}

.services-graphic-wrapper:hover {
  transform: scale(1.02) translateY(-4px);
}

.services-paint-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-section {
  position: relative;
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 6rem 2rem;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Background Living Room & Brush Stroke Edge */
.why-choose-bg-room {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  z-index: 1;
}

.why-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  display: block;
}

.brush-stroke-overlay {
  position: absolute;
  top: 0;
  left: calc(56% - 40px);
  width: 90px;
  height: 100%;
  background-image: url('brush-divider.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.why-choose-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.why-choose-content-wrapper {
  max-width: 60%;
}

.why-choose-header {
  margin-bottom: 3.2rem;
}

.why-choose-badge {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #60a5fa;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.why-choose-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

/* 3x2 Features Grid */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.why-feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-feature-item:hover .why-feature-icon-circle {
  transform: scale(1.1) rotate(6deg);
  border-color: #60a5fa;
  background-color: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.why-feature-text {
  display: flex;
  flex-direction: column;
}

.why-feature-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.why-feature-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-light);
  font-weight: 400;
}

/* ==========================================================================
   Transform Space CTA Banner
   ========================================================================== */
.cta-banner-section {
  position: relative;
  background-color: #ffffff;
  padding: 4.5rem 2rem 2.5rem;
}

.cta-banner-container {
  max-width: 1320px;
  margin: 0 auto;
}

.cta-banner-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cta-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(11, 96, 183, 0.12);
}

.cta-banner-visual {
  width: 82px;
  height: 82px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-brush-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(11, 96, 183, 0.2));
  transition: transform 0.35s ease;
}

.cta-banner-card:hover .cta-brush-img {
  transform: rotate(-8deg) scale(1.08);
}

.cta-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.cta-banner-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #374151;
  font-weight: 500;
}

.cta-banner-action {
  flex-shrink: 0;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  position: relative;
  background-color: #ffffff;
  padding: 3rem 2rem 6.5rem;
  overflow: hidden;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-badge {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

/* Gallery Track & Grid */
.gallery-track-wrapper {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

.gallery-track-wrapper::-webkit-scrollbar {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 96, 183, 0.18);
}

.gallery-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 26, 51, 0) 30%, rgba(4, 26, 51, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.gallery-project-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.gallery-project-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.25;
}

/* Pagination Dots Indicator */
.gallery-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2.5rem;
}

.dot-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dot-btn:hover {
  background: #94a3b8;
  transform: scale(1.15);
}

.dot-btn.active {
  background: var(--color-primary);
  transform: scale(1.25);
}

/* ==========================================================================
   Contact Section (Get In Touch)
   ========================================================================== */
.contact-section {
  position: relative;
  background: #021226;
  background: radial-gradient(circle at 18% 45%, #082952 0%, #03152d 55%, #020c1a 100%);
  padding: 4.8rem 2.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-bg-glow {
  position: absolute;
  top: -30%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 116, 219, 0.12) 0%, rgba(14, 116, 219, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1.65fr;
  gap: 3.5rem;
  align-items: center;
}

/* 1. Left: Intro */
.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-tag {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #93c5fd;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 2.7vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #cbd5e1;
  font-weight: 400;
}

/* 2. Middle: Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #ffffff;
  transition: all var(--transition-fast);
}

a.contact-info-item:hover {
  transform: translateX(4px);
}

.contact-icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: #041a33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background-color 0.3s ease, color 0.3s ease;
}

.contact-info-item:hover .contact-icon-bubble {
  transform: scale(1.1) rotate(-6deg);
  background: #38bdf8;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
}

.contact-info-text {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
}

a.contact-info-item:hover .contact-info-text {
  color: #93c5fd;
}

/* 3. Right: Contact Form */
.contact-form-card {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-input-group {
  position: relative;
  width: 100%;
}

.contact-input-group-msg {
  height: 100%;
  display: flex;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: #ffffff;
  border: 1.5px solid transparent;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #0f172a;
  outline: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #475569;
  font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.35), 0 6px 18px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.contact-form textarea {
  height: 100%;
  min-height: 105px;
  resize: none;
}

/* Submit Action Button */
.contact-action-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.btn-send-message {
  background: linear-gradient(135deg, #0b60b7 0%, #0d6ed1 100%);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 6px 20px rgba(11, 96, 183, 0.4);
  transition: all var(--transition-smooth);
}

.btn-send-message .btn-icon-bubble {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  color: #0b60b7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease;
}

.btn-send-message:hover {
  background: linear-gradient(135deg, #0d6ed1 0%, #258bf5 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 96, 183, 0.55);
}

.btn-send-message:hover .btn-icon-bubble {
  transform: translateX(2px) translateY(-2px) rotate(10deg);
}

.btn-send-message:active {
  transform: translateY(0);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: #0f131a;
  color: #94a3b8;
  font-family: var(--font-body);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-main {
  padding: 4.5rem 2.5rem 3.5rem;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.05fr 1.35fr;
  gap: 3.2rem;
  align-items: start;
}

/* 1. Brand Column */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 1.2rem;
  transition: transform var(--transition-fast);
}

.footer-brand-logo:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transform: scale(1.5);
  transform-origin: left center;
  transition: transform var(--transition-smooth);
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 1.4rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a2230;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-icon-btn:hover {
  background: #0b60b7;
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(11, 96, 183, 0.45);
}

/* 2 & 3. Nav Columns */
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  position: relative;
}

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

.footer-link {
  font-size: 0.88rem;
  color: #94a3b8;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* 4. Contact Info Column */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

a.footer-contact-item:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0d3663;
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-icon-circle {
  background: #0b60b7;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(11, 96, 183, 0.5);
}

.footer-contact-text {
  line-height: 1.4;
}

/* Bottom Copyright Bar */
.footer-bottom {
  background: linear-gradient(90deg, #073160 0%, #0b4d91 50%, #073160 100%);
  padding: 0.95rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-copyright-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.animate-fade {
  opacity: 0;
  transform: translateY(15px);
  animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Triggered Animations */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-on-scroll[data-animation="fade-up"] {
  transform: translateY(35px);
}

.animate-on-scroll[data-animation="fade-right"] {
  transform: translateX(-40px);
}

.animate-on-scroll[data-animation="fade-left"] {
  transform: translateX(40px);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==========================================================================
   Quote Modal Popup
   ========================================================================== */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 26, 51, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.quote-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.quote-modal {
  background: var(--color-white);
  width: 100%;
  max-width: 580px;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.open .quote-modal {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 2rem;
  color: #94a3b8;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--color-text-dark);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e0f2fe;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.modal-header p {
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(11, 96, 183, 0.15);
}

.btn-submit-quote {
  background: linear-gradient(135deg, #0b5ea8 0%, #0d69bd 100%);
  color: var(--color-white);
  padding: 0.9rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
  box-shadow: 0 6px 20px rgba(11, 94, 168, 0.3);
  transition: all var(--transition-fast);
}

.btn-submit-quote:hover {
  background: linear-gradient(135deg, #084c8a 0%, #0b5ea8 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 94, 168, 0.4);
}

.modal-footer-note {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ==========================================================================
   Toast Feedback Notification
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0f172a;
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3000;
}

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

.toast-icon {
  color: #22c55e;
  font-size: 1.3rem;
}

.toast-message {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  .nav-list {
    gap: 1.5rem;
  }
  .about-grid {
    gap: 3.5rem;
  }
  .paint-roller-container {
    width: 250px;
    bottom: -35px;
    left: -45px;
  }
  .feature-card {
    padding: 0.6rem 0.8rem;
    gap: 0.8rem;
  }
  .feature-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-container {
    padding: 3rem 1.5rem 5rem;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }
  .feature-card:nth-child(2)::after {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-section {
    padding: 4.5rem 1.5rem 4rem;
  }
  .paint-roller-container {
    width: 220px;
    bottom: -30px;
    left: -35px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }
  .header-container {
    padding: 0 1.2rem;
  }
  .logo-img {
    height: 44px;
    transform: scale(2.04);
    transform-origin: left center;
  }
  .header-cta {
    display: none;
  }

  /* Mobile Hero Section - Matches Reference Design */
  .hero-section {
    min-height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-bg-container {
    position: relative;
    width: 100%;
    height: clamp(340px, 50vh, 420px);
    min-height: 330px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% top;
    display: block;
  }

  .hero-overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.35) 68%,
      rgba(255, 255, 255, 0.88) 88%,
      #ffffff 100%
    );
    pointer-events: none;
  }

  .hero-container {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 0.2rem 1.4rem 2.4rem 1.4rem;
    margin: 0;
    max-width: 100%;
    flex: none;
  }

  .hero-content {
    max-width: 100%;
    align-items: flex-start;
  }

  .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 6.8vw, 2.25rem);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -0.015em;
    color: #041a33;
    margin-bottom: 0.4rem;
  }

  .hero-tagline {
    font-family: 'Dancing Script', 'Caveat', cursive;
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    font-weight: 700;
    color: #0b60b7;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    letter-spacing: 0.01em;
  }

  .hero-description {
    font-family: var(--font-body);
    font-size: 0.94rem;
    line-height: 1.55;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1.6rem;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .btn-quote {
    padding: 0.55rem 0.55rem 0.55rem 1.6rem;
    font-size: 0.9rem;
    gap: 1.1rem;
    box-shadow: 0 6px 18px rgba(11, 94, 168, 0.35);
  }

  .btn-icon-badge {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  /* Bottom Feature Bar on Mobile */
  .bottom-feature-bar {
    position: relative;
    margin-top: 0;
    z-index: 10;
  }

  .arch-curve-svg-wrapper {
    top: -28px;
    height: 30px;
  }

  .bottom-bar-content {
    background: #041a33;
    padding: 0.5rem 1.4rem 2rem 1.4rem;
  }

  .feature-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .feature-card::after {
    display: none !important;
  }

  .feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0.9rem 0;
    gap: 1.25rem;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-card:last-child {
    border-bottom: none;
  }

  .feature-icon-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .feature-icon-wrapper .icon-circle {
    width: 42px;
    height: 42px;
    background: #ffffff;
    color: #041a33;
    font-size: 1.1rem;
  }

  .feature-icon {
    font-size: 1.7rem;
    color: #ffffff;
  }

  .feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }

  .feature-email {
    font-size: 0.95rem;
    word-break: break-all;
  }

  .feature-subtitle {
    font-size: 0.82rem;
    font-weight: 500;
    color: #9cb4cc;
    line-height: 1.2;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .quote-modal {
    padding: 1.8rem 1.2rem;
  }
  .about-heading {
    font-size: 2.1rem;
  }
  .about-signature-text {
    font-size: 2.8rem;
  }
  .paint-roller-container {
    width: 170px;
    bottom: -22px;
    left: -25px;
  }
  .services-section {
    padding: 3.5rem 1.2rem 4.5rem;
  }
  .services-header {
    margin-bottom: 2.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card {
    padding: 1.8rem 1.4rem;
  }
  .why-choose-section {
    padding: 4rem 1.2rem;
  }
  .why-choose-content-wrapper {
    max-width: 100%;
  }
  .why-features-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .cta-banner-card {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .cta-banner-text {
    align-items: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .gallery-section {
    padding: 2.5rem 1.2rem 4.5rem;
  }
  .contact-section {
    padding: 3.2rem 1.25rem 4rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .contact-form-card {
    grid-column: auto;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .contact-form textarea {
    min-height: 90px;
  }
  .contact-action-row {
    justify-content: stretch;
  }
  .btn-send-message {
    width: 100%;
    justify-content: center;
  }
  .contact-br {
    display: none;
  }
  .footer-main {
    padding: 3.2rem 1.25rem 2.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 1.5rem;
  }
  .why-choose-content-wrapper {
    max-width: 65%;
  }
  .why-features-grid {
    gap: 2rem 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-container {
    gap: 2rem;
  }
  .contact-title {
    font-size: 2.2rem;
  }
  .footer-container {
    gap: 2.2rem;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .services-graphic-col {
    grid-column: span 2;
    margin-top: 1rem;
  }
  .why-choose-content-wrapper {
    max-width: 100%;
  }
  .why-choose-bg-room,
  .brush-stroke-overlay {
    display: none;
  }
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner-card {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-text {
    align-items: center;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .contact-form-card {
    grid-column: span 2;
    margin-top: 0.5rem;
  }
  .footer-main {
    padding: 3.8rem 1.8rem 2.8rem;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.8rem 2rem;
  }
}
