/* ================================================================
   ISG SOLUTIONS — MAIN STYLESHEET
   Professional Corporate Website
   ================================================================ */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --navy-dark:    #1f2128;
  --navy:         #2a2d38;
  --navy-mid:     #333640;
  --navy-light:   #3d4150;
  --accent:       #e07050;
  --accent-light: #f09070;
  --white:        #ffffff;
  --off-white:    #fff5f0;
  --silver-light: #e2e8f0;
  --silver:       #b8c0cc;
  --silver-dark:  #8896a8;
  --black:        #1f2128;
  --text-dark:    #1f2128;
  --text-body:    #475569;
  --text-light:   #94a3b8;

  --grad-hero:   linear-gradient(135deg, #1f2128 0%, #2a2d38 45%, #333640 100%);
  --grad-navy:   linear-gradient(135deg, #2a2d38 0%, #333640 100%);
  --grad-accent: linear-gradient(135deg, #c85030 0%, #f09070 100%);
  --grad-silver: linear-gradient(135deg, #c0c8d4 0%, #e8ecf0 50%, #b8c0cc 100%);
  --grad-card:   linear-gradient(145deg, #ffffff 0%, #fff5f0 100%);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --section-py: 96px;
  --container:  1280px;

  --shadow-xs: 0 1px 4px rgba(31, 33, 40, 0.06);
  --shadow-sm: 0 2px 12px rgba(31, 33, 40, 0.08);
  --shadow-md: 0 8px 32px rgba(31, 33, 40, 0.12);
  --shadow-lg: 0 16px 56px rgba(31, 33, 40, 0.16);
  --shadow-xl: 0 32px 80px rgba(31, 33, 40, 0.22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --transition: all 0.3s var(--ease);
  --transition-slow: all 0.6s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
}

.display-1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 800; }
.display-2 { font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-body); line-height: 1.75; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.8;
}

.section-title-center {
  text-align: center;
}
.section-title-center .section-label {
  justify-content: center;
  width: 100%;
}
.section-title-center .section-subtitle {
  margin: 0 auto;
}

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--grad-hero);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p   { color: rgba(255,255,255,0.75); }
.section-dark .section-label { color: #ffb098; }
.section-dark .section-label::before { background: #ffb098; }

.section-alt {
  background: var(--off-white);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(224, 112, 80, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224, 112, 80, 0.45);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

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

.btn-silver {
  background: var(--grad-silver);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(180, 190, 200, 0.4);
}
.btn-silver:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180, 190, 200, 0.5);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
/* Ensure whatsapp button inside a group matches btn-lg height exactly */
.btn-group .whatsapp-btn {
  margin-top: 0;
  padding: 18px 32px;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(31, 33, 40, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 32px rgba(31, 33, 40, 0.4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
}

.navbar-logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.navbar-logo-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

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

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 100vw);
  height: 100vh;
  background: var(--navy-dark);
  z-index: 999;
  padding: 100px 32px 32px;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.open { right: 0; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--white); padding-left: 8px; }

.mobile-nav-cta {
  margin-top: 32px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}

/* Grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Gradient overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(224, 112, 80, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: #e07050;
  top: -200px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: #333640;
  bottom: -100px;
  left: 10%;
  animation: float2 10s ease-in-out infinite;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: #f09070;
  top: 40%;
  left: 45%;
  animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -20px) scale(1.08); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-15px, 15px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: 100px;
  padding-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline span {
  background: linear-gradient(90deg, #ffb098, #f09070, #ffd1be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--silver-light);
  border-top: 1px solid var(--silver-light);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ================================================================
   ABOUT SECTION (HOMEPAGE PREVIEW)
   ================================================================ */
.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-mid);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.72rem;
  color: var(--text-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-text { }

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.value-item:hover {
  background: var(--silver-light);
  transform: translateX(4px);
}
.value-item i { color: var(--accent); font-size: 0.9rem; }

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--grad-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--silver-light);
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(224, 112, 80, 0.1), rgba(224, 112, 80, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
  border: 1px solid rgba(224, 112, 80, 0.15);
}

.service-card:hover .service-icon-wrap {
  background: var(--grad-accent);
  border-color: transparent;
}

.service-icon-wrap i {
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}

.service-card .btn {
  font-size: 0.82rem;
  padding: 9px 20px;
}

/* ================================================================
   STATS COUNTER SECTION
   ================================================================ */
.stats-section {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 48px 32px;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-card:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  background: linear-gradient(90deg, #f09070, #ffd1be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ================================================================
   PORTFOLIO GRID
   ================================================================ */
.portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 24px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-body);
  background: var(--off-white);
  border: 1.5px solid var(--silver-light);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 16, 30, 0.95) 0%, rgba(4, 16, 30, 0.4) 50%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition);
}

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

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  align-self: flex-start;
}

.portfolio-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.portfolio-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  margin: 0;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s var(--ease);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--silver-light);
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--silver-light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-body);
  transition: var(--transition);
  background: var(--white);
}

.slider-btn:hover {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--silver-light);
  transition: var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--navy-mid);
  width: 24px;
  border-radius: 4px;
}

/* ================================================================
   MARKETING PAGE FEATURES
   ================================================================ */
.marketing-hero {
  background: linear-gradient(135deg, #1f2128 0%, #2a2d38 40%, #333640 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.marketing-feature-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver-light);
  transition: var(--transition);
}

.marketing-feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mf-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}

.mf-content h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.mf-content p {
  font-size: 0.88rem;
  margin: 0;
}

/* Marketing process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--grad-accent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  box-shadow: 0 0 0 6px rgba(224,112,80,0.08);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-card h2 { color: var(--white); margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 40px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Text column stretches to fill remaining width so space-between works */
.contact-item > div:not(.contact-icon) {
  flex: 1;
  min-width: 0;
}

.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.contact-detail-value {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-detail-value a {
  color: var(--white);
  transition: var(--transition);
}
.contact-detail-value a:hover { color: #ffd1be; }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
}
.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
/* Standalone WA button (outside btn-group) gets top spacing */
.contact-info-card .whatsapp-btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--silver-light);
}

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

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--silver-light);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(224, 112, 80, 0.08);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-submit-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--silver-light);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

/* Business hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  width: 100%;
}

.hours-day  { color: rgba(255,255,255,0.7); flex-shrink: 0; }
.hours-time { color: var(--white); font-weight: 600; text-align: right; flex-shrink: 0; }
.hours-closed { color: rgba(255,255,255,0.4); }

/* ================================================================
   PARTNERS / CLIENTS
   ================================================================ */
.partners-section {
  padding: 64px 0;
  border-top: 1px solid var(--silver-light);
  border-bottom: 1px solid var(--silver-light);
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1.5px solid var(--silver-light);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--silver-dark);
  background: var(--white);
  transition: var(--transition);
  min-width: 140px;
}

.partner-logo:hover {
  border-color: var(--navy-mid);
  color: var(--navy-mid);
  box-shadow: var(--shadow-sm);
}

/* ================================================================
   QUOTE CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--grad-navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(224,112,80,0.2), transparent);
}

.cta-content { position: relative; z-index: 1; }

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.72); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-link:hover { color: var(--white); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--accent-light); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item > span,
.footer-contact-item > a { flex: 1; min-width: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-copy a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-copy a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 10px;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(224, 112, 80, 0.4);
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(224, 112, 80, 0.5);
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--grad-hero);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.mission-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--silver-light);
  height: 100%;
  transition: var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent);
}

.mission-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver-light);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: var(--grad-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
}

.team-info { padding: 24px; }
.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; }

/* ================================================================
   ANIMATE ON SCROLL (AOS replacements)
   ================================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-32px);
}
[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(32px);
}
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.92);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-accent { color: var(--accent); }
.text-navy   { color: var(--navy-mid); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-light); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.divider {
  height: 1px;
  background: var(--silver-light);
  margin: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* --- TABLET (1024px) --- */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .container { padding: 0 24px; }
  .grid-2  { grid-template-columns: 1fr; gap: 48px; }
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-card::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

/* --- MOBILE (768px) --- */
@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .container { padding: 0 20px; }

  .navbar-nav  { display: none; }
  .navbar-cta  { display: none; }
  .hamburger   { display: flex; }

  .hero { min-height: 100svh; }
  .hero-content { padding-top: 96px; padding-bottom: 64px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; padding-top: 28px; margin-top: 36px; }
  .hero-stat-divider { display: none; }
  .hero-stat-value { font-size: 1.7rem; }

  .grid-3            { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .portfolio-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-wrap { overflow: hidden; }
  .testimonial-card  { flex: 0 0 100%; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-info-card { padding: 32px 22px; }
  .about-img-accent  { display: none; }
  .about-badge       { left: 0; }
  .process-steps     { grid-template-columns: 1fr 1fr; }
  .partner-logo      { min-width: 100px; }

  .page-hero          { padding: 120px 0 56px; }
  .page-hero h1       { font-size: 2rem; }
  .page-hero p        { font-size: 0.95rem; }

  .service-card       { padding: 28px 24px; }
  .mission-card       { padding: 28px 22px; }
  .testimonial-card   { padding: 28px 24px; }
  .stat-card          { padding: 36px 20px; }
  .stat-number        { font-size: 2.8rem; }

  .trust-strip-inner  { gap: 24px; justify-content: flex-start; }

  .footer             { padding-top: 56px; }
  .footer-bottom      { flex-direction: column; text-align: center; gap: 12px; }
}

/* --- SMALL MOBILE (480px) --- */
@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-headline     { font-size: 2.1rem; line-height: 1.1; }
  .hero-sub          { font-size: 0.92rem; }
  .hero-badge        { font-size: 0.68rem; padding: 6px 14px; }
  .hero-content      { padding-top: 88px; padding-bottom: 56px; }
  .hero-stats        { gap: 16px; margin-top: 28px; padding-top: 24px; }
  .hero-stat-value   { font-size: 1.5rem; }
  .hero-stat-label   { font-size: 0.7rem; }

  /* Page heroes */
  .page-hero         { padding: 105px 0 48px; }
  .page-hero h1      { font-size: 1.75rem; }
  .page-hero p       { font-size: 0.88rem; }

  /* Section titles */
  h2                 { font-size: 1.6rem; }
  .section-subtitle  { font-size: 0.9rem; }

  /* Stats */
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-number       { font-size: 2.2rem; }
  .stat-card         { padding: 28px 14px; }
  .stat-label        { font-size: 0.75rem; }

  /* Portfolio */
  .portfolio-grid    { grid-template-columns: 1fr; }

  /* Buttons — stack and stretch */
  .btn-group         { flex-direction: column; align-items: stretch; }
  .btn-group .btn,
  .btn-group .whatsapp-btn { text-align: center; justify-content: center; width: 100%; }

  /* Trust strip */
  .trust-strip-inner { gap: 16px; }
  .trust-item        { font-size: 0.82rem; }

  /* Process steps */
  .process-steps     { grid-template-columns: 1fr; }

  /* Service cards */
  .service-card      { padding: 24px 20px; }
  .service-icon-wrap { width: 56px; height: 56px; }
  .service-icon-wrap i { font-size: 1.3rem; }

  /* Contact */
  .contact-form-wrap { padding: 24px 16px; }
  .contact-info-card { padding: 28px 18px; }
  .contact-item      { gap: 14px; padding: 16px 0; }
  .contact-icon      { width: 38px; height: 38px; font-size: 0.9rem; }

  /* Testimonials */
  .testimonial-card  { padding: 24px 20px; }

  /* Footer */
  .footer            { padding-top: 48px; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .footer-desc       { font-size: 0.84rem; }

  /* Misc */
  .back-to-top       { bottom: 20px; right: 16px; width: 42px; height: 42px; }
  .scroll-indicator  { display: none; }
  .about-badge       { display: none; }
  .whatsapp-btn      { padding: 16px 24px; font-size: 0.88rem; }
}
