@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Bebas+Neue&display=swap');

/* ================================================
   FRONT PAGE STYLES — only loaded on front-page
   ================================================ */

/* Scoped box-sizing reset (no global * reset) */
.hero *, .stats-bar *, section *, .site-footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1628;
  --navy2: #112040;
  --gold: #c9892a;
  --gold2: #e6a23c;
  --offwhite: #f5f2ec;
  --light: #ffffff;
  --text: #1a1a1a;
  --muted: #5a6272;
  --border: #d8d0c0;
  --section-pad: 90px 0;
  --r: 6px;
}

html {
  scroll-behavior: smooth
}

body.home {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden
}

/* HEADER */
body.home header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 137, 42, 0.25)
}

.header-top {
  background: var(--gold);
  padding: 7px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--navy)
}

.header-top a {
  color: var(--navy);
  text-decoration: none;
  margin: 0 18px
}

.header-top a:hover {
  text-decoration: underline
}

body.home nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px
}

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

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: .05em;
  flex-shrink: 0
}

.logo-text {
  color: var(--light);
  line-height: 1.2
}

.logo-text strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .08em;
  display: block;
  color: var(--gold)
}

.logo-text span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55)
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--gold)
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 26px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .15s
}

.nav-cta:hover {
  background: var(--gold2);
  transform: translateY(-1px)
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 60%, #1a2e50 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5% 80px;
  gap: 60px;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9892a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .6
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 137, 42, .15);
  border: 1px solid rgba(201, 137, 42, .3);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite
}

@keyframes pulse {
  0%, 100% { opacity: 1 }
  50% { opacity: .4 }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 84px);
  color: var(--light);
  line-height: .95;
  letter-spacing: .02em;
  margin-bottom: 24px
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
  display: block
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 34px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 137, 42, .35)
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--light);
  padding: 14px 34px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.trust-strip {
  display: flex;
  gap: 24px;
  margin-top: 44px;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 500
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(201, 137, 42, .15);
  border: 1px solid rgba(201, 137, 42, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0
}

/* HERO FORM */
.hero-form-card {
  position: relative;
  z-index: 1;
  background: var(--light);
  border-radius: 12px;
  padding: 38px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45)
}

.hero-form-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: .06em;
  margin-bottom: 6px
}

.hero-form-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--offwhite);
  transition: border .2s, box-shadow .2s;
  outline: none
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 137, 42, .12)
}

.form-group input::placeholder {
  color: #9a9a9a
}

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

.submit-btn {
  width: 100%;
  background: var(--navy);
  color: var(--light);
  padding: 15px;
  border: none;
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  margin-top: 4px
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px)
}

.form-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap
}

.form-trust span {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px
}

.form-trust span::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700
}

/* STATS BAR */
.stats-bar {
  background: var(--gold);
  padding: 28px 5%
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--navy);
  letter-spacing: .04em;
  line-height: 1
}

.stat-label {
  font-size: 13px;
  color: rgba(10, 22, 40, .7);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px
}

.stat-divider {
  border-left: 1px solid rgba(10, 22, 40, .2)
}

/* ABOUT */
.about {
  padding: var(--section-pad);
  background: var(--offwhite)
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5%
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--navy);
  letter-spacing: .04em;
  line-height: 1.05;
  margin-bottom: 20px
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 50px
}

.about-img {
  position: relative
}

.about-img-main {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy2) 0%, #1e3560 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 22px 26px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(201, 137, 42, .3)
}

.about-badge .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  line-height: 1;
  letter-spacing: .04em
}

.about-badge .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 2px
}

.about-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px
}

.about-points {
  list-style: none;
  margin-top: 28px
}

.about-points li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text)
}

.about-points li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201, 137, 42, .15);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700
}

/* SERVICES */
.services {
  padding: var(--section-pad);
  background: var(--navy)
}

.services .section-title {
  color: var(--light)
}

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

.service-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 137, 42, .15);
  border-radius: 10px;
  padding: 32px;
  transition: all .25s;
  cursor: default;
  position: relative;
  overflow: hidden
}

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

.service-card:hover {
  background: rgba(201, 137, 42, .08);
  border-color: rgba(201, 137, 42, .4);
  transform: translateY(-4px)
}

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

.service-ico {
  width: 52px;
  height: 52px;
  background: rgba(201, 137, 42, .12);
  border: 1px solid rgba(201, 137, 42, .25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px
}

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--light);
  margin-bottom: 10px
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7
}

/* WHY CHOOSE */
.why {
  padding: var(--section-pad);
  background: var(--light)
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 50px
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.why-feat {
  background: var(--offwhite);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: all .2s
}

.why-feat:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 137, 42, .1)
}

.why-feat-icon {
  font-size: 28px;
  margin-bottom: 12px
}

.why-feat h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.why-feat p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6
}

.why-big-stat {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
  color: var(--light);
  text-align: center;
  margin-top: 24px
}

.why-big-stat .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: .04em
}

.why-big-stat p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-top: 8px
}

.why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 137, 42, .08);
  border: 1px solid rgba(201, 137, 42, .25);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

.badge::before {
  content: '✓';
  color: var(--gold)
}

/* PROJECTS */
.projects {
  padding: var(--section-pad);
  background: var(--offwhite)
}

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

.project-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--light);
  transition: all .25s
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .12)
}

.project-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy2) 0%, #2a4a70 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.project-info {
  padding: 22px
}

.project-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px
}

.project-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 6px
}

.project-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6
}

/* TESTIMONIALS */
.testimonials {
  padding: var(--section-pad);
  background: var(--navy)
}

.testimonials .section-title {
  color: var(--light)
}

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

.testi-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 28px;
  transition: all .2s
}

.testi-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(201, 137, 42, .3)
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px
}

.testi-card blockquote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 20px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--navy);
  flex-shrink: 0
}

.author-info strong {
  display: block;
  font-size: 13px;
  color: var(--light);
  font-weight: 600
}

.author-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, .45)
}

/* CTA BAND */
.cta-band {
  background: var(--gold);
  padding: 70px 5%;
  text-align: center
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--navy);
  letter-spacing: .05em;
  margin-bottom: 12px
}

.cta-band p {
  font-size: 17px;
  color: rgba(10, 22, 40, .7);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

.btn-dark {
  background: var(--navy);
  color: var(--light);
  padding: 15px 38px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s
}

.btn-dark:hover {
  background: #0d1e38;
  transform: translateY(-2px)
}

.btn-phone {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 15px 38px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s
}

.btn-phone:hover {
  background: rgba(10, 22, 40, .08)
}

/* CONTACT */
.contact {
  padding: var(--section-pad);
  background: var(--offwhite)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 50px
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: .06em;
  margin-bottom: 24px
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start
}

.contact-ico {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0
}

.contact-item .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px
}

.contact-item a,
.contact-item p {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500
}

.contact-item a:hover {
  color: var(--gold)
}

.hours {
  background: var(--navy);
  color: var(--light);
  border-radius: 10px;
  padding: 24px;
  margin-top: 28px
}

.hours h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 12px
}

.hours p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8
}

.contact-form {
  background: var(--light);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .06)
}

.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: .06em;
  margin-bottom: 6px
}

.contact-form p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--offwhite);
  transition: border .2s;
  outline: none;
  resize: vertical
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 137, 42, .12)
}

.contact-form textarea {
  min-height: 110px
}

/* FOOTER */
body.home footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .6);
  padding: 60px 5% 30px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-brand .logo-wrap {
  margin-bottom: 16px
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px
}

body.home footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
  color: var(--light);
  margin-bottom: 18px
}

.footer-links {
  list-style: none
}

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

.footer-links a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--gold)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  max-width: 1140px;
  margin: 0 auto;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none
}

.footer-bottom a:hover {
  color: var(--gold)
}

.social-links {
  display: flex;
  gap: 12px
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  text-decoration: none;
  transition: all .2s
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 5% 60px
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .services-grid,
  .projects-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .about-badge {
    right: 0;
    bottom: -20px
  }
}

@media(max-width:600px) {
  .nav-links {
    display: none
  }

  .services-grid,
  .projects-grid,
  .testi-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .why-features {
    grid-template-columns: 1fr
  }
}
