* {
box-sizing: border-box;
}

:root {
--black: #05080d;
--dark: #09111c;
--panel: #101a28;
--blue: #2f8cff;
--light-blue: #58b6ff;
--white: #f5f8fc;
--gray: #a9b7c8;
--border: rgba(255, 255, 255, 0.10);
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: #05080d;
color: var(--white);
line-height: 1.6;
}

a {
color: inherit;
}

.header {
position: sticky;
top: 0;
z-index: 100;
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 6%;
background: rgba(5, 8, 13, 0.94);
border-bottom: 1px solid var(--border);
}

.brand {
display: flex;
flex-direction: column;
line-height: 1;
}

.brand-main {
font-size: 2rem;
font-weight: 900;
letter-spacing: -2px;
background: linear-gradient(
to bottom,
#ffffff,
#91cfff,
#2878df
);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

.brand-sub {
margin-top: 5px;
font-size: 0.62rem;
font-weight: bold;
letter-spacing: 1px;
color: #d9e5f2;
}

nav {
display: flex;
align-items: center;
gap: 25px;
}

nav a {
text-decoration: none;
font-size: 0.9rem;
font-weight: bold;
color: #d7e1eb;
}

nav a:hover {
color: var(--light-blue);
}

.nav-button {
padding: 10px 17px;
border-radius: 30px;
background: linear-gradient(
135deg,
var(--blue),
var(--light-blue)
);
color: #04101e !important;
}

.hero {
  min-height: 760px;
display: flex;
align-items: center;
  justify-content: center;
  text-align: center;
position: relative;
overflow: hidden;
padding: 90px 7%;
background:
radial-gradient(
circle at 15% 25%,
rgba(47, 140, 255, 0.25),
transparent 32%
),
linear-gradient(
135deg,
#07101b,
#030609 70%
);
}

.hero::after {
content: "";
position: absolute;
width: 600px;
height: 600px;
right: -250px;
top: 80px;
border-radius: 50%;
background: rgba(47, 140, 255, 0.12);
filter: blur(90px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  transform: translateY(-60px);
  text-align:center;
}


.eyebrow {
margin-bottom: 14px;
color: var(--light-blue);
font-size: 0.8rem;
font-weight: 900;
letter-spacing: 3px;
}

h1 {
margin: 0 auto 25px;
max-width: 850px;
font-size: clamp(4rem, 9vw, 8rem);
line-height: 0.84;
letter-spacing: -6px;
}

h1 span {
display: block;
background: linear-gradient(
to bottom,
#ffffff,
#9bd3ff 40%,
#2678e0
);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

.hero-text {
max-width: 700px;
margin: 0 auto 30px;
color: var(--gray);
font-size: 1.2rem;
}

.hero-buttons {
display: flex;
  justify-content: center;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 30px;
}

.primary-button,
.secondary-button {
display: inline-flex;
justify-content: center;
align-items: center;
min-height: 52px;
padding: 0 23px;
border-radius: 10px;
text-decoration: none;
font-weight: 900;
font-size: 0.9rem;
}

.primary-button {
border: none;
background: linear-gradient(
135deg,
var(--blue),
var(--light-blue)
);
color: #04101e;
cursor: pointer;
box-shadow: 0 12px 35px rgba(47, 140, 255, 0.22);
}

.secondary-button {
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.04);
color: white;
}
.facebook-button {
  background: #1877F2
    border-color: #1877F2;
  color:white;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.25);
}

.service-tags {
display: flex;
  justify-content: center;
flex-wrap: wrap;
gap: 10px;
}

.service-tags span {
padding: 7px 11px;
border: 1px solid var(--border);
border-radius: 30px;
background: rgba(255, 255, 255, 0.03);
color: #d6e4f2;
font-size: 0.72rem;
font-weight: bold;
letter-spacing: 1px;
}

.services,
.work,
.about,
.reviews {
padding: 110px 7%;
}
.services {
  padding-top: 30px;
}
.section-heading {
max-width: 850px;
margin-bottom: 50px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

h2 {
margin: 0 0 20px;
max-width: 900px;
font-size: clamp(2.4rem, 5vw, 4.5rem);
line-height: 1;
letter-spacing: -3px;
}

.section-heading > p:last-child,
.about-text {
color: var(--gray);
font-size: 1.05rem;
}

.service-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 17px;
}

.service-card {
min-height: 285px;
display: flex;
flex-direction: column;
padding: 27px;
border: 1px solid var(--border);
border-radius: 20px;
background: linear-gradient(
to bottom,
rgba(255, 255, 255, 0.04),
rgba(255, 255, 255, 0.015)
);
}

.service-card.featured {
border-color: rgba(88, 182, 255, 0.35);
background:
radial-gradient(
circle at 80% 10%,
rgba(88, 182, 255, 0.22),
transparent 35%
),
#0b1726;
}

.number {
margin-bottom: 25px;
color: var(--light-blue);
font-size: 0.8rem;
font-weight: 900;
letter-spacing: 2px;
}

.service-card h3 {
margin: 25px 0 10px;
font-size: 1.55rem;
}

.service-card p {
color: var(--gray);
}

.service-card a {
margin-top: 15px;
text-decoration: none;
color: var(--light-blue);
font-weight: bold;
}

.work,
.reviews {
background: #080e16;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}

.gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 230px;
gap: 15px;
}

.gallery-item {
display: flex;
align-items: flex-end;
position: relative;
overflow: hidden;
padding: 20px;
border: 1px solid var(--border);
border-radius: 20px;
background:
radial-gradient(
circle at 80% 20%,
rgba(88, 182, 255, 0.25),
transparent 30%
),
linear-gradient(
135deg,
#15253a,
#080e16
);
}

.gallery-item.large {
background-size:cover;
  background-position: center 65%;
  background-repeat:no-repeat;
   grid-column: span 2;
grid-row: span 2;
}

.gallery-item span {
position: relative;
z-index: 2;
color: #e6f2ff;
font-size: 0.75rem;
font-weight: 900;
letter-spacing: 2px;
}

.about {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 80px;
  margin-top: 0;
  clear: both;
}
.about {
  padding-top:70px;
  padding-bottom:70px;
}
.about-text p {
margin-bottom: 22px;
}

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

.review {
min-height: 180px;
padding: 28px;
border: 1px solid var(--border);
border-radius: 20px;
background: #0b131e;
}

.stars {
margin-bottom: 18px;
color: #8dc8ff;
letter-spacing: 4px;
}

.review p {
color: #dce6ef;
}
.reviews-button {
  margin-top: 25px;
  text-align: center;
}
.reviews-button .button {
  display: inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--light-blue));
  color: #04101e;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba (47, 140, 255, 0.22);
}
.quote {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 70px;
padding: 120px 7% 50px;
background:
radial-gradient(
circle at 10% 20%,
rgba(47, 140, 255, 0.20),
transparent 28%
),
#07101b;
}

.quote-info > p {
color: var(--gray);
}

.contact-options {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-top: 30px;
}

.contact-options a {
display: flex;
flex-direction: column;
padding: 18px;
border: 1px solid var(--border);
border-radius: 15px;
background: rgba(255, 255, 255, 0.035);
text-decoration: none;
}

.contact-options small {
margin-bottom: 4px;
color: var(--gray);
font-weight: bold;
letter-spacing: 2px;
}

form {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 17px;
padding: 28px;
border: 1px solid var(--border);
border-radius: 24px;
background: rgba(255, 255, 255, 0.035);
}

form label {
display: flex;
flex-direction: column;
gap: 8px;
font-size: 0.9rem;
font-weight: bold;
}

input,
select,
textarea {
width: 100%;
padding: 13px;
border: 1px solid rgba(255, 255, 255, 0.14);
border-radius: 10px;
outline: none;
background: #07101a;
color: white;
font: inherit;
}

input:focus,
select:focus,
textarea:focus {
border-color: var(--light-blue);
box-shadow: 0 0 0 3px rgba(88, 182, 255, 0.10);
}

.full-width {
grid-column: 1 / -1;
}

form button {
width: 100%;
}

footer {
display: grid;
grid-template-columns: 1fr auto;
gap: 25px;
align-items: center;
padding: 25px 7%;
background: #030609;
border-top: 1px solid var(--border);
}

.footer-brand {
display: flex;
flex-direction: column;
}

.footer-brand span {
margin-top: 5px;
color: var(--gray);
font-size: 0.85rem;
}

footer > a {
text-decoration: none;
color: var(--light-blue);
font-weight: bold;
}

footer > p {
grid-column: 1 / -1;
margin: 0;
color: #77889b;
font-size: 0.8rem;
}

@media (max-width: 1000px) {
.service-grid {
grid-template-columns: repeat(2, 1fr);
}

.about,
.quote {
grid-template-columns: 1fr;
}
}

@media (max-width: 760px) {
.header {
position: relative;
flex-direction: column;
align-items: flex-start;
gap: 18px;
}

nav {
width: 100%;
flex-wrap: wrap;
gap: 13px;
}

nav a {
font-size: 0.78rem;
}

.hero {
min-height: 650px;
padding-top: 70px;
padding-bottom: 70px;
}

h1 {
font-size: clamp(3.8rem, 18vw, 6rem);
letter-spacing: -4px;
}

.services,
.work,
.about,
.reviews,
.quote {
padding: 80px 6%;
}

.service-grid,
.review-grid,
.gallery,
.contact-options,
form {
grid-template-columns: 1fr;
}

.gallery-item.large {
grid-column: span 1;
grid-row: span 1;
}

.full-width {
grid-column: 1;
}

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

.gallery-item:nth-child(2) {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer > p {
grid-column: 1;
}
}
/* HERO TRUST / 5-STAR SECTION */

.hero-trust {

  margin-bottom: 28px;

  padding-left: 0;

  border-left: none;

  max-width: 700px;
  margin-left: auto;
  margin-right:auto;

}

.hero-stars {

  font-size: 32px;

  line-height: 1;

  letter-spacing: 6px;

  color: #ffc107;

  margin-bottom: 10px;

}

.hero-trust-title {

  font-size: 20px;

  font-weight: 800;

  letter-spacing: 2px;

  color: var(--white);

  margin-bottom: 7px;

}

.hero-trust-sub {

  font-size: 15px;

  color: var(--gray);

  letter-spacing: 0.5px;

}

/* Keep trust section clean on phones */

@media (max-width: 600px) {

  .hero-trust {

    margin-bottom: 20px;

    padding-left: 12px;

  }

  .hero-stars {

    font-size: 25px;

    letter-spacing: 4px;

  }

  .hero-trust-title {

    font-size: 15px;

    letter-spacing: 1px;

  }

  .hero-trust-sub {

    font-size: 13px;

    line-height: 1.5;

     }

}

/* HERO TRUST / 5-STAR SECTION */

.hero-trust {

  margin-bottom: 28px;

  padding-left: 0;

  border-left: none;

  max-width: 700px;
  margin-left:auto;
  margin-left:auto;

}

.hero-stars {

  font-size: 32px;

  line-height: 1;

  letter-spacing: 6px;

  color: #ffc107;

  margin-bottom: 10px;

}

.hero-trust-title {

  font-size: 20px;

  font-weight: 800;

  letter-spacing: 2px;

  color: var(--white);

  margin-bottom: 7px;

}

.hero-trust-sub {

  font-size: 15px;

  color: var(--gray);

  letter-spacing: 0.5px;

}

/* Keep trust section clean on phones */

@media (max-width: 600px) {

  .hero-trust {

    margin-bottom: 20px;

    padding-left: 12px;

  }

  .hero-stars {

    font-size: 25px;

    letter-spacing: 4px;

  }

  .hero-trust-title {

    font-size: 15px;

    letter-spacing: 1px;

  }

  .hero-trust-sub {

    font-size: 13px;

    line-height: 1.5;

     }

  /* HERO FEATURE PHOTO */

.hero {

  display: grid;

  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);

  align-items: center;

  gap: 48px;

}

.hero-feature {
  width: 200px;
  height: 100px;
  justify-self: end;
  align-self: center:
  overflow: hidden;
  border-radius: 18px;
}

.hero-feature-image {

  display: block;
  width:100px;
    height:100px;
    object-fit:cover;
  object-position: 65% center;
  border-radius: 18px;

  border: 1px solid rgba(88, 182, 255, 0.35);

  box-shadow:

    0 20px 50px rgba(0, 0, 0, 0.35),

    0 0 30px rgba(47, 140, 255, 0.12);

}

/* HERO PHOTO ON PHONES */

@media (max-width: 800px) {

  .hero {

    grid-template-columns: 1fr;

    gap: 30px;

  }

  .hero-feature {

    max-width: 600px;

    justify-self: center;

  }

  .hero-feature-image {

    aspect-ratio: 16 / 10;

    object-position: center;
max-width: 150px:
  }

}
}



