/* Xtreem-Kleen — Premium Website Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --navy: #060e1a;
  --navy-mid: #0d1f35;
  --navy-light: #142840;
  --blue: #1a6ede;
  --blue-bright: #2d8cf0;
  --blue-light: #e8f2ff;
  --blue-pale: #f4f8ff;
  --cyan: #00b4d8;
  --white: #ffffff;
  --text-dark: #06111f;
  --text-mid: #374962;
  --text-light: #7a93ad;
  --shadow-sm: 0 2px 8px rgba(26,110,222,0.08);
  --shadow-md: 0 8px 30px rgba(26,110,222,0.14);
  --shadow-lg: 0 20px 60px rgba(6,14,26,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-mid); }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-bright);
  display: block; margin-bottom: 0.5rem;
}

/* ===================== LAYOUT ===================== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 580px; margin: 0.75rem auto 0; font-size: 1rem; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 18px rgba(26,110,222,0.4);
}
.btn-primary:hover { background: #1560c4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,110,222,0.5); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--navy); box-shadow: 0 4px 18px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.35); color: white; }
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,14,26,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(6,14,26,0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1180px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-weight: 900; font-size: 1.2rem; color: white;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(26,110,222,0.4);
}
.nav-logo span { letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-weight: 600; font-size: 0.88rem; color: rgba(255,255,255,0.75);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue-bright);
  transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-weight: 700; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; cursor: pointer; }
.nav-hamburger span { display: block; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 1.5rem 1.5rem;
}
.nav-mobile a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-weight: 600; color: rgba(255,255,255,0.8); display: block; }
.nav-mobile.open { display: flex; }

/* ===================== PASSWORD GATE ===================== */
.password-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.gate-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 3rem; max-width: 420px; width: 90%;
  text-align: center; box-shadow: var(--shadow-lg);
}
.gate-box h2 { color: var(--navy); margin-bottom: 0.5rem; }
.gate-box p { margin-bottom: 2rem; font-size: 0.95rem; }
.gate-input {
  width: 100%; padding: 0.85rem 1.25rem; border: 2px solid var(--blue-light);
  border-radius: 6px; font-size: 1rem; outline: none;
  transition: var(--transition); text-align: center; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.gate-input:focus { border-color: var(--blue); }
.gate-error { color: #e53e3e; font-size: 0.85rem; margin-top: 0.5rem; display: none; }
.gate-badge { margin-top: 2rem; font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0f2744 100%);
  position: relative; overflow: hidden; padding: 7rem 0 4rem;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Floating shapes */
.float-shape {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,110,222,0.2), rgba(0,180,216,0.1));
  border: 1px solid rgba(26,110,222,0.2);
  pointer-events: none;
}
.shape-1 { width: 320px; height: 320px; top: -60px; right: -60px; animation: floatShape 8s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; bottom: 100px; right: 200px; animation: floatShape 6s ease-in-out infinite 2s; }
.shape-3 { width: 120px; height: 120px; top: 200px; left: 80px; animation: floatShape 7s ease-in-out infinite 1s; }
.shape-4 { width: 80px; height: 80px; bottom: 200px; left: 300px; border-radius: 12px; animation: floatShape 5s ease-in-out infinite 3s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(8px) rotate(-3deg); }
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem;
  position: relative; z-index: 1;
}
.hero-text .section-label { color: var(--cyan); }
.hero-text h1 { color: white; margin: 0.5rem 0 1.25rem; }
.hero-text h1 .accent { color: var(--blue-bright); }
.hero-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-badges {
  display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px; padding: 0.45rem 0.9rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 600;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2rem;
  animation: panelFloat 7s ease-in-out infinite;
}
@keyframes panelFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.panel-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.panel-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.panel-title { color: white; font-weight: 700; font-size: 1rem; }
.panel-sub { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.service-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.service-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.05); border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem; color: rgba(255,255,255,0.85);
  font-size: 0.875rem; font-weight: 500;
  transition: var(--transition); cursor: default;
}
.service-item:hover { background: rgba(26,110,222,0.25); }
.service-item .s-icon { font-size: 1rem; }
.panel-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: var(--radius-sm); padding: 0.85rem; text-align: center;
}
.panel-cta p { color: white; font-weight: 700; font-size: 0.9rem; margin: 0; }
.panel-cta span { color: rgba(255,255,255,0.75); font-size: 0.78rem; }

/* ===================== TRUST BAR ===================== */
.trust-bar { background: var(--blue-pale); border-bottom: 1px solid var(--blue-light); padding: 1.25rem 0; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 600; color: var(--text-mid); }
.trust-item .icon { color: var(--blue); font-size: 1rem; }

/* ===================== SERVICE CARDS ===================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.75rem; border: 1px solid var(--blue-light);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--blue-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.1rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 0.85rem; font-weight: 700; font-size: 0.82rem;
  color: var(--blue); transition: var(--transition);
}
.service-link:hover { gap: 0.65rem; color: var(--navy); }

/* ===================== FEATURES ===================== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card {
  padding: 1.75rem; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--blue-light);
  text-align: center; transition: var(--transition);
}
.feature-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { font-size: 2.2rem; margin-bottom: 0.85rem; display: block; }
.feature-card h4 { margin-bottom: 0.4rem; color: var(--navy); font-size: 0.98rem; }
.feature-card p { font-size: 0.85rem; }

/* ===================== ABOUT SPLIT ===================== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.about-visual-box::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,110,222,0.2) 0%, transparent 60%);
}
.about-stat-chip {
  position: absolute; bottom: -18px; right: -18px;
  background: white; border-radius: var(--radius-md);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); text-align: center;
}
.chip-num { font-size: 2.2rem; font-weight: 900; color: var(--blue); line-height: 1; }
.chip-label { font-size: 0.72rem; color: var(--text-light); font-weight: 600; margin-top: 0.2rem; }
.about-text { }
.check-list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; font-weight: 500; color: var(--text-mid); }
.check-dot { width: 20px; height: 20px; min-width: 20px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.6rem; font-weight: 900; }

/* ===================== DARK STATS BAND ===================== */
.stats-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 4rem 0;
}
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: white; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 600; margin-top: 0.35rem; }

/* ===================== TESTIMONIALS ===================== */
.testi-bg { background: var(--blue-pale); padding: 5rem 0; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.testi-card {
  background: white; border-radius: var(--radius-md); padding: 1.75rem;
  border: 1px solid var(--blue-light); transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-bright); }
.testi-stars { color: #f59e0b; margin-bottom: 0.85rem; font-size: 0.88rem; }
.testi-text { color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.7rem; }
.author-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.85rem; }
.author-name { font-weight: 700; color: var(--text-dark); font-size: 0.88rem; }
.author-loc { font-size: 0.76rem; color: var(--text-light); }

/* ===================== SERVICE AREAS ===================== */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.area-card {
  background: var(--blue-pale); border-radius: var(--radius-md); padding: 1.5rem;
  text-align: center; border: 2px solid transparent; transition: var(--transition);
}
.area-card:hover { border-color: var(--blue); background: var(--blue-light); transform: translateY(-4px); }
.area-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.area-card h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 0.2rem; }
.area-card p { font-size: 0.78rem; color: var(--text-light); }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius-lg); padding: 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 28px 28px;
}
.cta-banner h2 { color: white; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.8); margin: 1rem 0 2rem; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===================== SERVICES DETAIL PAGE ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 8rem 0 4rem; text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; font-size: 0.82rem; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--blue-light); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-visual {
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; border: 2px solid var(--blue-light);
}
.service-tag { display: inline-block; background: var(--blue-pale); color: var(--blue); padding: 0.3rem 0.9rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.85rem; }
.include-list { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.75rem; }
.include-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--text-mid); }
.include-item::before { content: '✓'; width: 18px; height: 18px; min-width: 18px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 900; }

/* ===================== CONTACT PAGE ===================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1.25rem; background: var(--blue-pale); border-radius: var(--radius-md);
  border: 1px solid var(--blue-light); transition: var(--transition);
}
.info-card:hover { border-color: var(--blue); transform: translateX(4px); }
.info-icon { width: 44px; height: 44px; min-width: 44px; background: var(--blue); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; }
.info-label { font-size: 0.72rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.15rem; }
.info-value { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }
.info-sub { font-size: 0.78rem; color: var(--text-light); margin-top: 0.15rem; }
.form-box { background: white; border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-md); border: 1px solid var(--blue-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.form-group label { font-weight: 600; font-size: 0.82rem; color: var(--text-mid); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 0.9rem; border: 2px solid var(--blue-light);
  border-radius: 6px; font-size: 0.9rem; outline: none; transition: var(--transition); width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,110,222,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===================== VALUES GRID ===================== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card {
  padding: 1.75rem; border-left: 4px solid var(--blue);
  background: var(--blue-pale); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: var(--transition);
}
.value-card:hover { transform: translateX(4px); background: var(--blue-light); }
.value-num { font-size: 2.2rem; font-weight: 900; color: var(--blue); opacity: 0.35; line-height: 1; margin-bottom: 0.4rem; }
.value-card h4 { margin-bottom: 0.4rem; color: var(--navy); }
.value-card p { font-size: 0.87rem; }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.65rem; font-weight: 900; font-size: 1.1rem; color: white; margin-bottom: 0.9rem; }
.footer-desc { font-size: 0.87rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; }
.soc-btn { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); }
.soc-btn:hover { background: var(--blue); color: white; }
.footer h4 { color: white; font-size: 0.88rem; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.fc-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.85rem; }
.fc-icon { color: var(--blue-bright); font-size: 0.95rem; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.78rem; }
.goulburn-tag { background: var(--blue); color: white; padding: 0.25rem 0.7rem; border-radius: 20px; font-weight: 700; font-size: 0.72rem; }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================== MICRO INTERACTIONS ===================== */
@keyframes pulse-ring { 0%{box-shadow:0 0 0 0 rgba(26,110,222,0.4)} 70%{box-shadow:0 0 0 10px rgba(26,110,222,0)} 100%{box-shadow:0 0 0 0 rgba(26,110,222,0)} }
.pulse { animation: pulse-ring 2s infinite; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-panel { display: none; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual-box { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; direction: ltr !important; }
  .service-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .section { padding: 3rem 0; } .hero { padding: 6rem 0 3rem; } }
