:root {
  --navy: #0f1a2e;
  --navy-soft: #151f37;
  --gold: #f7d372;
  --gold-dark: #d8b253;
  --bg-light: #fafafa;
  --text-main: #222;
  --text-muted: #666;
  --radius-card: 12px;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.6;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to right, var(--navy), var(--navy-soft));
  color: #fff;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}

.logo-main {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-quote {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
}

.nav-call {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-weight: 500;
}

/* MOBILE NAV TOGGLE */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
}

/* HERO */

.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 30, 0.6),
    rgba(0, 0, 30, 0.85)
  );
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  padding: 0 20px;
  text-align: center;
  animation: hero-fade 0.8s ease-out forwards;
  opacity: 0;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin: 0 0 12px;
  color: var(--gold);
}

.hero-content p {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  margin-bottom: 18px;
  color: #f5f5f5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid #ffffffaa;
  color: #fff;
}

.btn-outline:hover {
  background: #ffffff22;
  transform: translateY(-1px);
}

.hero-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

/* SECTIONS GENERAL */

section {
  scroll-margin-top: 80px;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* SERVICES */

.services {
  background: var(--bg-light);
  padding: 60px 20px 70px;
}

.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-body {
  padding: 16px 18px 18px;
}

.service-body h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.service-body p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.btn-small {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-small:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* WHY US */

.why {
  padding: 60px 20px 70px;
  background: #fff;
}

.why-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.why-item {
  background: #f5f6fb;
  border-radius: var(--radius-card);
  padding: 18px 20px;
}

.why-item h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.why-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ABOUT */

.about {
  padding: 60px 20px 70px;
}

.about-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-main);
}

.about-text ul {
  padding-left: 18px;
  margin: 10px 0 15px;
  color: var(--text-main);
  font-size: 0.96rem;
}

/* TESTIMONIALS */

.testimonials {
  padding: 60px 20px 70px;
  background: var(--bg-light);
}

.testimonial-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}

.testimonial-card p {
  margin: 0 0 10px;
}

.testimonial-name {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CONTACT */

.contact {
  padding: 60px 20px 70px;
  background: linear-gradient(to right, var(--navy), var(--navy-soft));
  color: #fff;
}

.contact-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-box h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.contact-box p {
  margin: 0 0 20px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.contact-email a {
  color: var(--gold);
  text-decoration: none;
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 16px 20px;
  background: #0b1322;
  color: #aaa;
  font-size: 0.85rem;
}

/* FLOATING CALL BUTTON */

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
  z-index: 30;
}

/* ANIMATIONS */

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    right: 20px;
    top: 56px;
    background: var(--navy-soft);
    padding: 10px 16px;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    display: none;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .about-wrap {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: -1;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    padding: 10px 16px;
  }

  .hero {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.98rem;
  }

  .floating-call {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
}

/* ================= IG COMMENTS (ADDED) ================= */

.ig-comments {
  padding: 60px 20px 70px;
  background: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.ig-comment {
  display: flex;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.ig-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.ig-body {
  flex: 1;
}

.ig-username {
  font-weight: 600;
  margin-right: 6px;
}

.ig-text {
  display: inline-block;
  color: #333;
}

.ig-meta {
  font-size: 0.8rem;
  color: #999;
  margin-top: 4px;
  display: flex;
  gap: 6px;
}

.ig-heart {
  font-size: 1.2rem;
  cursor: pointer;
  padding-left: 10px;
  user-select: none;
  color: #aaa;
  transition: color 0.2s ease;
}

.ig-heart:hover {
  color: #ff3d55;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 48px;
  height: 48px;
  background: #fff;          /* white circle */
  border-radius: 50%;        /* makes it a circle */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;          /* hides extra edges */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* optional clean shadow */
}

.nav-logo {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.about {
  max-width: 1150px;
  margin: 0 auto 80px;
  padding: 35px 40px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.section-header {
  margin-bottom: 20px;
  text-align: center;
}

.about-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-photo {
  flex-shrink: 0;
}

.about-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.about-text {
  flex: 1;
}

.about-text p,
.about-text li {
  line-height: 1.6;
}

/* Phone fix */
@media (max-width: 768px) {
  .about {
    margin: 0 15px 50px;
    padding: 25px 20px;
  }

  .about-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .about-photo img {
    width: 200px;
    height: 200px;
  }

  .about-text {
    width: 100%;
    text-align: left;
  }

  .about-text ul {
    padding-left: 20px;
  }

  .about-text p,
  .about-text li {
    font-size: 15px;
    line-height: 1.7;
  }
}


.feedback,
.customers-feedback,
#feedback {
  clear: both;
  margin-top: 80px;
  padding: 70px 20px;
  background: #f8f8f8;
  box-shadow: none;
}