/* ==========================================================================
   ZEE INTERIOR — OFFICIAL COMPLETE LUXURY DESIGN SYSTEM
   Brand: Red (#E41E26) | Dark (#111111) | White (#FFFFFF) | Slate (#F8F9FA)
   Domain: https://zeeinterior.in | Tagline: We Design, Create & Decor
   ========================================================================== */

/* --- 1. CSS VARIABLES --- */
:root {
  --red: #E41E26;
  --red-hover: #c4141b;
  --red-light: rgba(228, 30, 38, 0.08);
  --black: #111111;
  --dark: #181818;
  --dark-bg: #0e0e0e;
  --white: #FFFFFF;
  --bg-slate: #F8F9FA;
  --bg-card: #FFFFFF;
  --text-main: #111111;
  --text-muted: #555555;
  --text-light: #888888;
  --border: #E8E8E8;
  --border-dark: rgba(255, 255, 255, 0.12);
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 8px 24px rgba(228, 30, 38, 0.35);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- 2. BASE RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* --- 3. LAYOUT & UTILITIES --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 85px 0;
  position: relative;
}

.bg-slate {
  background-color: var(--bg-slate);
}

.bg-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

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

.text-red {
  color: var(--red);
}

/* Section Titles */
.section-header {
  margin-bottom: 45px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 8px;
  background: var(--red-light);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--text-main);
  line-height: 1.2;
}

.bg-dark .section-title {
  color: var(--white);
}

.section-title span {
  color: var(--red);
}

.section-line {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 14px auto 16px;
  border-radius: 2px;
}

.section-line.left {
  margin: 14px 0 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.bg-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* --- 4. BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-pill {
  border-radius: var(--radius-pill);
}

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

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

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

.btn-dark:hover {
  background-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

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

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* --- 5. HEADER & NAVIGATION --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Desktop Menu */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--red);
  border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item i {
  color: var(--red);
  width: 18px;
  text-align: center;
}

.dropdown-item:hover {
  background: var(--bg-slate);
  color: var(--red);
  padding-left: 22px;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* --- 6. HAMBURGER BUTTON & MOBILE DRAWER --- */
@media (min-width: 993px) {
  .hamburger-btn,
  .mobile-overlay,
  .mobile-drawer {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .nav-desktop { display: none !important; }
  .hamburger-btn { display: flex !important; }
}

.hamburger-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--bg-slate);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 1001;
}

.hamburger-btn:hover {
  background: var(--red-light);
  border-color: var(--red);
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2.2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active {
  background: var(--red);
  border-color: var(--red);
}

.hamburger-btn.active span {
  background: var(--white);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1060;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-drawer-header img {
  height: 38px;
}

.mobile-drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--black);
  cursor: pointer;
}

.mobile-drawer-close:hover {
  background: var(--red);
  color: var(--white);
}

.mobile-nav-list {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-sm);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--red-light);
  color: var(--red);
}

.mobile-dropdown-menu {
  display: none;
  padding: 4px 0 6px 14px;
  background: var(--bg-slate);
  border-radius: var(--radius-sm);
  margin: 4px 0 8px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-main);
}

.mobile-dropdown-item:hover {
  color: var(--red);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-drawer-footer .btn {
  width: 100%;
}

/* --- 7. PAGE HERO (FOR SUBPAGES) --- */
.page-hero {
  position: relative;
  padding: 80px 0 70px;
  background-color: var(--black);
  background-image: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.88)), url('../images/hero_luxury_living.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

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

.breadcrumb i {
  font-size: 10px;
  color: var(--red);
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* --- 8. HOMEPAGE HERO SECTION --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--black);
  background-image: linear-gradient(rgba(17, 17, 17, 0.70), rgba(17, 17, 17, 0.82)), url('../images/hero_luxury_living.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-content {
  max-width: 680px;
  padding: 80px 0;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero-red-word {
  color: var(--red);
  display: block;
  font-size: 1.25em;
  line-height: 1;
}

.hero-tagline {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- 9. SIDE FLOATING DOCK --- */
.side-dock {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 8px 0 0 8px;
  box-shadow: -3px 0 15px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.dock-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  font-size: 10px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  min-width: 66px;
  transition: var(--transition);
}

.dock-btn i {
  font-size: 20px;
  margin-bottom: 2px;
}

.dock-wa { background: #25D366; }
.dock-call { background: var(--red); }
.dock-mail { background: #555555; }
.dock-enquire { background: var(--black); }

.dock-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* --- 10. WHY CHOOSE ZEE INTERIOR --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 40px;
  align-items: center;
}

.why-left h2 {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text-main);
}

.why-left p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 16px 0 24px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 18px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-red);
}

.why-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.why-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- 11. OUR SERVICES --- */
.services-mockup-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-mockup-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 310px;
  background: var(--black);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.service-mockup-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.92);
}

.service-mockup-card:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.service-mockup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 17, 0.94) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 14px;
  text-align: center;
}

.service-icon-pill {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  margin: 0 auto 10px;
  transition: var(--transition);
}

.service-mockup-card:hover .service-icon-pill {
  background: var(--red);
}

.service-mockup-card h3 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

/* --- 12. OUR RECENT PROJECTS --- */
.projects-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.projects-mockup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.project-mockup-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 270px;
  background: #222;
}

.project-mockup-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-mockup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 17, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.project-mockup-card:hover .project-mockup-overlay {
  opacity: 1;
}

.project-mockup-overlay h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
}

.project-mockup-overlay p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* --- 13. HOW WE WORK (TIMELINE) --- */
.process-steps-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 45px;
}

.process-steps-wrap::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--red);
  z-index: 1;
}

.process-step-node {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--red);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.process-step-node:hover .process-step-circle {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-red);
}

.process-step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.process-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.process-step-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- 14. TRANSFORM BANNER --- */
.transform-banner-box {
  background-color: var(--black);
  border-radius: var(--radius-lg);
  padding: 0;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.transform-banner-content {
  padding: 45px 50px;
}

.transform-banner-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.transform-banner-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.transform-banner-img {
  height: 100%;
  min-height: 280px;
}

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

/* --- 15. TRUST BADGES STRIP --- */
.trust-badges-wrap {
  padding: 40px 0 50px;
  border-top: 1px solid var(--border);
}

.trust-badges-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge-single {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-badge-single i {
  font-size: 28px;
  color: var(--red);
}

.trust-badge-single strong {
  font-size: 13.5px;
  color: var(--black);
  display: block;
}

.trust-badge-single span {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- 16. LEAD FORM (WHATSAPP INTEGRATED) --- */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 45px;
  align-items: start;
}

.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--black);
}

.form-control {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
}

/* --- 17. FOOTER --- */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 75px 0 20px;
}

.footer-5col {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1.3fr;
  gap: 30px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

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

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-row i {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-social-bar {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-bar a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  transition: var(--transition);
}

.footer-social-bar a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-copyright {
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* --- 18. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1200px) {
  .services-mockup-grid { grid-template-columns: repeat(3, 1fr); }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-5col { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .projects-mockup-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline,
  .process-steps-wrap { grid-template-columns: 1fr; gap: 24px; }
  .process-steps-wrap::before { display: none; }
  .lead-grid { grid-template-columns: 1fr; }
  .transform-banner-box { grid-template-columns: 1fr; }
  .transform-banner-img { min-height: 220px; }
  .trust-badges-flex { justify-content: center; gap: 20px; }
}

@media (max-width: 768px) {
  .services-mockup-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-mockup-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-5col { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .side-dock { display: none; }
}

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