/* =============================================
   RIGHT AS RAIN — Main Stylesheet
   ============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1628;
  --blue: #1a3a5c;
  --sky: #2a7fc1;
  --rain: #4fb3e8;
  --white: #f8fafc;
  --grey: #94a3b8;
  --light: #e8f4fd;
  --accent: #f59e0b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  border-bottom: 1px solid rgba(79, 179, 232, 0.15);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--sky);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--rain);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.5) 60%, rgba(10, 22, 40, 0.9) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  z-index: 1;
}

.hero-btns-wrap {
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(280px, 38%, 520px);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: fadeUp 0.6s 0.5s ease both;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(90deg,
      rgba(79, 179, 232, 0.03) 0px,
      rgba(79, 179, 232, 0.03) 1px,
      transparent 1px,
      transparent 80px);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 179, 232, 0.15);
  border: 1px solid rgba(79, 179, 232, 0.3);
  color: var(--rain);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 span {
  color: var(--rain);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat {
  color: var(--white);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--rain);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--sky);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--rain);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(248, 250, 252, 0.3);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s;
}

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

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 1.2rem 5%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--sky);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-icon {
  color: var(--rain);
  font-size: 1.1rem;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 5%;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--sky);
}

.section-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.service-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.service-body {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  margin-top: 1rem;
  background: rgba(79, 179, 232, 0.15);
  color: var(--rain);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ── WHY US ── */
.why {
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border-top: 4px solid var(--sky);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.why-card:hover {
  box-shadow: 0 8px 40px rgba(42, 127, 193, 0.15);
}

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--navy);
}

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

.testimonials .section-sub {
  color: var(--grey);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(79, 179, 232, 0.15);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.review-card:hover {
  border-color: rgba(79, 179, 232, 0.4);
}

.stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.reviewer {
  font-weight: 700;
  color: var(--rain);
  font-size: 0.85rem;
}

/* ── AREAS ── */
.areas {
  background: var(--white);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.area-tag {
  background: var(--light);
  color: var(--blue);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(42, 127, 193, 0.2);
  transition: all 0.2s;
}

.area-tag:hover {
  background: var(--sky);
  color: #fff;
}

/* ── CONTACT ── */
.contact {
  background: var(--navy);
}

.contact .section-title {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  color: var(--grey);
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(79, 179, 232, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--rain);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.hours {
  margin-top: 2rem;
}

.hours h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.hours-day {
  color: var(--grey);
}

.hours-time {
  color: var(--white);
  font-weight: 500;
}

/* ── FORM ── */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form input,
.form select,
.form textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(79, 179, 232, 0.2);
  border-radius: 5px;
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--sky);
}

.form select {
  color: var(--grey);
}

.form select option {
  background: var(--navy);
}

.form textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ── FOOTER ── */
footer {
  background: #060f1c;
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(79, 179, 232, 0.1);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-logo span {
  color: var(--rain);
}

footer p {
  color: var(--grey);
  font-size: 0.8rem;
}

/* ── CALL FLOAT ── */
.call-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background: var(--sky);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(42, 127, 193, 0.5);
  animation: pulse 2s infinite;
}

/* ── ANIMATIONS ── */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(42, 127, 193, 0.5);
  }

  50% {
    box-shadow: 0 4px 40px rgba(42, 127, 193, 0.8);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: unset;
    height: auto;
    justify-content: center;
    padding-top: calc(70px + 20px);
    padding-bottom: 20px;
  }

  .hero-content {
    max-width: 100%;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
    margin-bottom: 0.6rem;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .hero-btns-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .hero-btns {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .hero-image {
    display: none;
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .trust-bar {
    gap: 1rem;
  }
}