/* ============================================
   RONBO GLASS — PREMIUM GLAZING CANBERRA
   Design: Dark industrial + glass-blue accent
   ============================================ */

:root {
  --primary:    #0D1117;       /* near-black */
  --surface:    #141B26;       /* card/nav bg */
  --surface2:   #1C2535;       /* lighter card */
  --accent:     #00AEEF;       /* sky/glass blue */
  --accent-dim: rgba(0,174,239,0.12);
  --text:       #E8EDF3;       /* main text */
  --text-muted: #7A8A9A;       /* secondary text */
  --border:     rgba(255,255,255,0.07);
  --white:      #FFFFFF;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --max-w: 1280px;
  --section-pad: 100px 24px;
  --radius: 3px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--primary);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-muted); }
.text-accent { color: var(--accent); }

/* ============ UTILITIES ============ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover {
  background: #33BEFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(13, 17, 23, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.78rem !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--surface);
  padding: 24px;
  z-index: 999;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--accent); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,174,239,0.08) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(13,17,23,0.5) 0%, rgba(13,17,23,0.85) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,17,23,0.7) 40%, transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--accent);
}
.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(232,237,243,0.75);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: var(--accent); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-item svg {
  width: 18px; height: 18px;
  stroke: var(--accent);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px; height: 24px;
  background: var(--border);
}

/* ============ SERVICES ============ */
.services {
  padding: var(--section-pad);
}
.services-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--surface);
  padding: 48px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  stroke: var(--accent);
}
.service-card h3 { color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; }
.service-number {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ============ PROJECTS ============ */
.projects {
  padding: var(--section-pad);
  background: var(--surface);
}
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  cursor: pointer;
}
.project-card:nth-child(1) { grid-column: span 7; }
.project-card:nth-child(2) { grid-column: span 5; }
.project-card:nth-child(3) { grid-column: span 5; }
.project-card:nth-child(4) { grid-column: span 7; }
.project-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.75);
}
.project-card:hover .project-img { transform: scale(1.06); filter: brightness(0.5); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.95) 0%, transparent 60%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s var(--ease);
}
.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(13,17,23,0.98) 0%, rgba(0,0,0,0.5) 100%);
}
.project-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.project-overlay h3 { color: var(--white); margin-bottom: 6px; font-size: 1.4rem; }
.project-meta { font-size: 0.82rem; color: rgba(232,237,243,0.55); }
.project-view {
  opacity: 0;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s var(--ease);
}
.project-card:hover .project-view { opacity: 1; }

/* ============ STATS ============ */
.stats {
  padding: var(--section-pad);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,174,239,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-item:hover::after { opacity: 1; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-suffix { font-size: 0.6em; color: var(--accent); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ ABOUT ============ */
.about {
  padding: var(--section-pad);
  background: var(--surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content h2 { color: var(--white); margin-bottom: 24px; }
.about-content p { margin-bottom: 20px; }
.about-differentiators {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diff-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,174,239,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.diff-text h4 { color: var(--white); margin-bottom: 4px; font-family: var(--font-body); font-size: 1rem; font-weight: 700; text-transform: none; letter-spacing: 0; }
.diff-text p { font-size: 0.88rem; margin: 0; }
.about-image {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-accent {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--surface);
}
.about-years {
  position: absolute;
  top: 32px;
  right: -24px;
  background: var(--accent);
  color: var(--primary);
  padding: 20px 24px;
  text-align: center;
  border-radius: var(--radius);
}
.about-years-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
.about-years-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: var(--section-pad);
  background: var(--primary);
}
.testimonials-header { max-width: 500px; margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(0,174,239,0.25); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: 24px;
  letter-spacing: 0;
}
.testimonial-card blockquote {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid rgba(0,174,239,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,174,239,0.07) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 1.05rem; margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============ FOOTER ============ */
.footer {
  background: #080C10;
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand img { width: 160px; height: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--accent); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }
.footer-abn { font-size: 0.78rem; color: var(--text-muted); }

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 160px 24px 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,174,239,0.05) 0%, transparent 70%);
}
.page-header-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.page-header h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(2.5rem, 6vw, 5rem); }
.page-header p { font-size: 1.05rem; max-width: 560px; }

/* ============ SERVICES PAGE ============ */
.services-full { padding: var(--section-pad); }
.service-full-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-full-item:last-child { border-bottom: none; }
.service-full-item:nth-child(even) .service-full-content { order: 2; }
.service-full-item:nth-child(even) .service-full-img { order: 1; }
.service-full-content h3 { color: var(--white); margin-bottom: 16px; }
.service-full-content p { margin-bottom: 16px; }
.service-full-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ PORTFOLIO PAGE ============ */
.portfolio-section { padding: var(--section-pad); }
.portfolio-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s;
  filter: brightness(0.7);
}
.portfolio-item:hover img { transform: scale(1.07); filter: brightness(0.45); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(13,17,23,0.95) 0%, transparent 50%);
}
.portfolio-item-overlay .project-tag { margin-bottom: 6px; }
.portfolio-item-overlay h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.portfolio-item-overlay .project-meta { font-size: 0.78rem; }

/* ============ ABOUT PAGE ============ */
.about-story { padding: var(--section-pad); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-values { padding: var(--section-pad); background: var(--surface); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.value-card {
  background: var(--primary);
  border: 1px solid var(--border);
  padding: 40px 32px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h3 { color: var(--white); margin-bottom: 12px; }
.team-section { padding: var(--section-pad); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: rgba(0,174,239,0.3); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid rgba(0,174,239,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
}
.team-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }

/* ============ CONTACT PAGE ============ */
.contact-section { padding: var(--section-pad); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info h3 { color: var(--white); margin-bottom: 20px; }
.contact-info p { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,174,239,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.contact-detail-text label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); display: block; margin-bottom: 2px; }
.contact-detail-text a, .contact-detail-text span { font-size: 0.95rem; color: var(--text); }
.contact-detail-text a:hover { color: var(--accent); }
.contact-form { background: var(--surface); border: 1px solid var(--border); padding: 48px; border-radius: var(--radius); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { width: 100%; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(0,174,239,0.08);
  border: 1px solid rgba(0,174,239,0.2);
  border-radius: var(--radius);
  margin-top: 16px;
  color: var(--accent);
  font-weight: 600;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .projects-grid { display: flex; flex-direction: column; }
  .project-card:nth-child(n) { grid-column: unset; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-full-item { grid-template-columns: 1fr; gap: 40px; }
  .service-full-item:nth-child(even) .service-full-content { order: 1; }
  .service-full-item:nth-child(even) .service-full-img { order: 2; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .projects-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  :root { --section-pad: 48px 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 80px; }
}
