:root {
  --bg: #2b0f1a;
  --bg2: #1a0f14;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.6);
  --accent: #ff8c00;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;

  /* NEW: logo-sky palette */
  --sky-top: #7b7a7f;     /* cool gray-blue */
  --sky-mid: #eac397;     /* warm sunset gold */
  --sky-light: #eee0c6;   /* bright cloud highlight */
  --sky-dusk: #23211f;    /* deep dusk / shadow */

  
  --sky-blue: #4da6ff;        /* main sky blue */
  --sky-blue-dark: #2f85e6;   /* darker for hover */
  --sky-blue-light: #6bb7ff;
  --sky-blue-glow: rgba(77,166,255,0.35);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }

html {
  background:
    /* subtle dark overlay so text/cards still read well */
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%),

    /* warm sun glow + bright cloud highlight */
    radial-gradient(900px 520px at 78% 18%, rgba(234,195,151,0.65), transparent 60%),
    radial-gradient(750px 480px at 18% 12%, rgba(238,224,198,0.55), transparent 65%),

    /* main sky gradient */
    linear-gradient(180deg,
      var(--sky-top) 0%,
      var(--sky-mid) 42%,
      #b2a39d 68%,
      var(--sky-dusk) 100%
    );
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: transparent;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 12, 16, 0.6);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

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

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.brand__name { font-weight: 700; }
.brand__tag { color: var(--muted2); font-size: 12px; }

.header__call {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--sky-blue-dark);
  background: linear-gradient(180deg, var(--sky-blue), var(--sky-blue-dark));
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 22px var(--sky-blue-glow);
  transition: all 0.2s ease;
}

.header__call:hover {
  background: linear-gradient(180deg, var(--sky-blue-light), var(--sky-blue));
  transform: translateY(-2px);
}

.header__call:hover {
  background: rgba(255,140,0,0.25);
}

/* ================= HERO ================= */

.hero {
  padding: 28px 0 24px;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.hero__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero__imageWrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.03);

  /* Set the height of the container */
  height: clamp(360px, 52vh, 520px);

  /* REMOVE the display:flex and padding:18px that was keeping it small */
  display: block; 
  padding: 0; 
}

.hero__image {
  /* This forces the image to fill the 100% of the box */
  width: 100%;
  height: 100%;
  
  /* 'cover' fills the square completely (some edges might crop) */
  /* 'fill' stretches it (might look distorted) */
  /* 'contain' keeps it all visible but may leave gaps if the logo isn't a perfect square */
  object-fit: cover; 
  
  display: block;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  display: inline-block;
}

h1 {
  font-size: clamp(26px, 3vw, 44px);
  margin: 14px 0 8px;
}

.lead {
  color: var(--muted);
  margin: 0;
}

/* --- NEW CLEAN HERO STRUCTURE --- */

.heroPhone {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  border-radius: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.heroPhone__label {
  color: var(--muted2);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.heroPhone__number {
  font-size: 26px;
  font-weight: 900;
  border-bottom: 2px solid rgba(77,166,255,0.7);
  padding-bottom: 2px;
}

.heroButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.heroButtons .btn--full {
  flex: 1;           /* Makes buttons equal width */
  min-width: 160px;  /* Prevents them from getting too skinny */
}

.btn {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--sky-blue-dark);
  background: linear-gradient(180deg, var(--sky-blue), var(--sky-blue-dark));
  color: white;
  font-weight: 700;
  cursor: pointer;

  /* ADD THESE */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  box-shadow: 0 8px 22px var(--sky-blue-glow);
  transition: all 0.2s ease;
}


.btn--primary:hover {
  background: linear-gradient(180deg, #6bb7ff, var(--sky-blue));
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  text-align: center;
}

.heroInfo {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.heroInfo__item {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 12px 12px;
}

.heroInfo__k {
  color: var(--muted2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.heroInfo__v {
  margin-top: 6px;
  font-weight: 750;
}

.heroLinks {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trustLink {
  color: rgba(255,255,255,0.86);
}

.dot {
  color: rgba(255,255,255,0.35);
}

/* ================= PHOTO CAROUSEL ================= */

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 44px;
}

.carousel__track::-webkit-scrollbar {
  height: 10px;
}
.carousel__track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
}

.carousel__slide {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 2 * 16px) / 3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.carousel__slide img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.92);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.carousel__btn:hover {
  background: rgba(0,0,0,0.55);
}

.carousel__btn--prev { left: 6px; }
.carousel__btn--next { right: 6px; }

/* Tablet */
@media (max-width: 900px) {
  .carousel__slide {
    flex: 0 0 calc((100% - 1 * 16px) / 2);
  }

  .carousel__slide img {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .carousel__track {
    padding: 6px 40px;
    gap: 12px;
  }

  .carousel__slide {
    flex: 0 0 100%;
  }

  .carousel__slide img {
    height: 220px;
  }
}

/* ================= SECTIONS ================= */

.section {
  padding: 28px 0;
}

.section--alt {
  background: transparent;
}

.sectionHead h2 {
  font-size: 28px;
}

.grid {
  display: grid;
  /* This tells the cards: "be at least 250px wide, otherwise stack" */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

/* ================= SECTION CTA ================= */
.sectionCTA {
  display: flex;
  flex-wrap: wrap; 
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 30px;        /* ✅ adds space below buttons */
  padding-top: 10px;          /* ✅ adds space above buttons */
  padding-bottom: 10px;       /* ✅ adds space below buttons */
  justify-content: center;
}

/* ================= REVIEWS ================= */

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

.review {
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
  border-radius: 16px;
  padding: 16px;
}

.review__stars {
  color: rgba(255,140,0,0.9);
}

/* ================= CONTACT ================= */

.contactCard {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
}

.contactCard__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

/* Fix overlap: contact CTA buttons */
.contactCard__cta {
  margin-top: 16px;          /* creates space from rows above */
  display: flex;             /* puts buttons in a row */
  gap: 12px;                 /* spacing between buttons */
  flex-wrap: wrap;           /* prevents overlap if they don’t fit */
  justify-content: center;   /* centers the buttons */
}

.contactCard__cta .btn {
  flex: 1;
  min-width: 220px;          /* prevents tiny buttons */
  text-align: center;
}

/* ================= FOOTER ================= */

.footer {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: rgba(11,12,16,0.7);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}

/* Center all section headings (desktop + mobile) */
.sectionHead {
  text-align: center;
}

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

@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .contactCard__row { grid-template-columns: 1fr; }
  .header__call { display: none; }

  .heroButtons { grid-template-columns: 1fr; }
  .heroInfo { grid-template-columns: 1fr; }

}

@media (max-width: 600px) {

  /* Center all section headings */
  .sectionHead {
    text-align: center;
  }

  /* Center hero content */
  .hero__card {
    text-align: center;
  }

  /* Center hero phone block */
  .heroPhone {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Stack and center hero buttons */
  .heroButtons {
    flex-direction: column;
    align-items: center;
  }

  .heroButtons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Center hero info tiles */
  .heroInfo {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Center CTA buttons */
  .sectionCTA {
    flex-direction: column;
    align-items: center;
  }

  .sectionCTA .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Center contact card text */
  .contactCard {
    text-align: center;
  }

  .contactCard__row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Mobile: stack contact CTA buttons */
  .contactCard__cta {
    flex-direction: column;
    align-items: center;
  }

  .contactCard__cta .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Center footer */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

}