/* ===================================================
   ROYAL ENTERPRISES GRILLS – Main Stylesheet
   Color Palette:
   --blue:    #2B35AF (Royal Blue from logo)
   --navy:    #1E2468 (Deep Navy)
   --silver:  #A8B0C8 (Silver Grey from wings)
   --light:   #F4F6FF (Light Blue-White bg)
   =================================================== */

:root {
  --blue:     #2B35AF;
  --blue-lt:  #3D48C8;
  --blue-dk:  #1E2468;
  --navy:     #111845;
  --silver:   #A8B0C8;
  --silver-lt:#D8DCF0;
  --light:    #F4F6FF;
  --white:    #FFFFFF;
  --text:     #1A1E3C;
  --text-sub: #4A5070;
  --border:   #E4E8F8;
  --shadow:   0 8px 32px rgba(43,53,175,0.12);
  --shadow-lg:0 20px 60px rgba(43,53,175,0.18);
  --radius:   14px;
  --radius-sm:8px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.text-blue { color: var(--blue); }
.text-silver { color: var(--silver-lt); }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(43,53,175,0.08); color: var(--blue);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 1rem;
  border-radius: 50px; margin-bottom: 1rem; border: 1px solid rgba(43,53,175,0.15);
}
.section-tag.light-tag { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 3.5rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.25; margin-bottom: 1rem; }
.section-header p { color: var(--text-sub); font-size: 1.05rem; }
.section-header.light h2, .section-header.light p { color: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,53,175,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }



/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(43, 53, 175, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(43, 53, 175, 0.14);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  position: relative;
  height: 80px;
}

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

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

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

.brand-text span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-dk);
}

.brand-text small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dk);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(43, 53, 175, 0.06);
}

.btn-nav {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  margin-left: 0.5rem;
}

.btn-nav:hover {
  background: var(--blue-lt) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(43, 53, 175, 0.06);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.hamburger:hover {
  background: rgba(43, 53, 175, 0.1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.25s ease, background 0.3s ease;
  margin: 0 auto;
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0.8rem 1rem;
  }

  .nav-logo img {
    height: 46px;
  }

  .brand-text span {
    font-size: 0.95rem;
  }

  .brand-text small {
    font-size: 0.65rem;
  }

  .hamburger {
    display: flex;
    z-index: 1101;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;

    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-top: 1px solid rgba(43, 53, 175, 0.08);
    box-shadow: 0 18px 40px rgba(43, 53, 175, 0.14);

    padding: 0.9rem 1rem 1rem;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;

    z-index: 1100;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  .nav-links a {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    background: rgba(43, 53, 175, 0.03);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(43, 53, 175, 0.08);
  }

  .btn-nav {
    margin-left: 0 !important;
    text-align: center;
    margin-top: 0.25rem;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0.75rem 0.85rem;
  }

  .nav-logo {
    gap: 0.55rem;
  }

  .nav-logo img {
    height: 42px;
  }

  .brand-text span {
    font-size: 0.88rem;
  }

  .brand-text small {
    font-size: 0.8rem;
  }

  .nav-links {
    padding: 0.8rem 0.85rem 0.9rem;
  }

  .nav-links a {
    padding: 0.9rem 0.95rem;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  isolation: isolate;
}

/* Soft decorative glow layers */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(20px);
  animation: floatGlow 8s ease-in-out infinite;
}

.hero::before {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -120px;
  background: rgba(74, 222, 128, 0.10);
}

.hero::after {
  width: 280px;
  height: 280px;
  bottom: -100px;
  left: -80px;
  background: rgba(255, 255, 255, 0.06);
  animation-delay: 1.5s;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(17,24,69,0.94) 0%,
      rgba(30,36,104,0.82) 42%,
      rgba(43,53,175,0.48) 100%
    ),
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 740px;
  padding: 7rem 0 6rem;
  animation: fadeInHero 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.26);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  animation: fadeUp 0.7s ease both, badgePulse 2.8s ease-in-out infinite;
}

.hero-badge i {
  color: #4ade80;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
  animation: fadeUp 0.75s 0.1s ease both;
  text-wrap: balance;
}

.hero-highlight {
  color: var(--silver-lt);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.12em;
  background: rgba(192, 192, 192, 0.32);
  border-radius: 999px;
}

.hero-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.84);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.75s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeUp 0.75s 0.3s ease both;
}

.hero-btns .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.hero-btns .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.2);
}

.hero-chips {
  display: flex;
  gap: 1.1rem 1.8rem;
  flex-wrap: wrap;
  animation: fadeUp 0.75s 0.4s ease both;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-bottom: 20px;
}

.hero-chips span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.hero-chips i {
  color: #4ade80;
  font-size: 0.98rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  animation: bounce 2s infinite;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInHero {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.14);
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 16px 38px rgba(0,0,0,0.18);
    transform: translateY(-1px);
  }
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(18px, -16px) scale(1.05); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content {
    max-width: 650px;
    padding: 6.5rem 0 5.5rem;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 95px;
  }

  .hero-content {
    padding: 5.5rem 0 4.5rem;
    text-align: center;
    max-width: 100%;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-chips {
    justify-content: center;
  }

  .hero-scroll {
    bottom: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 5rem 0 4rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.5rem 0.95rem;
    letter-spacing: 0.05em;
  }

  .hero-content h1 {
    font-size: clamp(2.05rem, 10vw, 2.9rem);
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.85rem;
  }

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

  .hero-chips {
    gap: 0.8rem;
  }

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

  .hero-scroll {
    font-size: 1rem;
  }
}

/* ===== SERVICES STRIP ===== */
.services-strip { background: var(--blue); padding: 1rem 0; overflow: hidden; }
.strip-inner { display: flex; gap: 0; justify-content: space-around; flex-wrap: wrap; }
.strip-inner span { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-weight: 700; font-size: 0.9rem; padding: 0.5rem 1.2rem; border-right: 1px solid rgba(255,255,255,0.2); white-space: nowrap; }
.strip-inner span:last-child { border-right: none; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.about-img-float { position: absolute; bottom: -2rem; right: -2rem; width: 200px; }
.about-img-float img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 150px; object-fit: cover; }
.experience-badge { position: absolute; top: -1.5rem; right: -1.5rem; background: var(--blue); color: var(--white); text-align: center; padding: 1rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.experience-badge span { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.experience-badge { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; }
.about-content .section-tag { display: inline-flex; }
.about-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.5vw, 2.3rem); line-height: 1.25; margin-bottom: 1.2rem; }
.about-lead { font-size: 1.05rem; color: var(--text); margin-bottom: 1rem; font-weight: 500; }
.about-content p { color: var(--text-sub); margin-bottom: 1.5rem; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-item > i { flex-shrink: 0; width: 42px; height: 42px; background: rgba(43,53,175,0.1); color: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.feature-item div strong { display: block; font-weight: 700; color: var(--text); margin-bottom: 0.1rem; }
.feature-item div small { color: var(--text-sub); font-size: 0.88rem; }

/* ===== STATS ===== */
.stats-section { position: relative; padding: 5rem 0; }
.stats-bg { position: absolute; inset: 0; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,24,69,0.92) 0%, rgba(43,53,175,0.85) 100%); }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-card { text-align: center; color: var(--white); padding: 2rem 1rem; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); transition: var(--transition); }
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.stat-icon { font-size: 2.2rem; margin-bottom: 1rem; color: var(--silver-lt); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; line-height: 1; display: inline; }
.stat-plus { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; display: inline; color: var(--silver-lt); }
.stat-label { margin-top: 0.5rem; font-weight: 600; color: rgba(255,255,255,0.8); font-size: 0.92rem; letter-spacing: 0.03em; }

/* ===== SERVICES PREVIEW ===== */
.services-preview { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(43,53,175,0.07); border: 1px solid var(--border); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.scard-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; position: absolute; top: 1rem; right: 1rem; box-shadow: var(--shadow); }
.scard-img { width: 100%; height: 195px; object-fit: cover; position: relative; }
.scard-body { padding: 1.4rem; position: relative; }
.scard-body h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.scard-body p { color: var(--text-sub); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.scard-link { color: var(--blue); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.scard-link:hover { gap: 0.7rem; }
.service-card { position: relative; }
.view-all-card { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%); }
.view-all-inner { text-align: center; color: var(--white); padding: 2rem; }
.view-all-inner > i { font-size: 2.5rem; margin-bottom: 1rem; color: var(--silver-lt); }
.view-all-inner h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.75rem; }
.view-all-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.view-all-inner .btn-primary { background: var(--white); color: var(--blue); }
.view-all-inner .btn-primary:hover { background: var(--light); }

/* ===== WHY US ===== */
.whyus { background: var(--white); }
.whyus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { background: var(--light); border-radius: var(--radius); padding: 2rem 1.5rem; position: relative; border: 1px solid var(--border); transition: var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--silver-lt); }
.why-num { position: absolute; top: 1.2rem; right: 1.2rem; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: var(--silver-lt); opacity: 0.5; line-height: 1; }
.why-card > i { font-size: 2rem; color: var(--blue); margin-bottom: 1rem; }
.why-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--text-sub); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { position: relative; padding: 5rem 0; }
.testi-bg { position: absolute; inset: 0; }
.testi-bg img { width: 100%; height: 100%; object-fit: cover; }
.testi-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,24,69,0.93) 0%, rgba(43,53,175,0.82) 100%); }
.testimonials .container { position: relative; z-index: 1; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 2rem; color: var(--white); transition: var(--transition); }
.testi-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.featured-testi { background: var(--blue); border-color: rgba(255,255,255,0.3); box-shadow: 0 20px 50px rgba(43,53,175,0.4); }
.testi-stars { color: #FFC107; font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-card > p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--silver-lt); color: var(--blue-dk); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.82rem; flex-shrink: 0; }
.testi-author strong { display: block; font-weight: 700; font-size: 0.95rem; }
.testi-author small { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ===== CONTACT ===== */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info .section-tag { display: inline-flex; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,2.5vw,2.2rem); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-sub); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.citem-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(43,53,175,0.1); color: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-item div strong { display: block; font-weight: 700; font-size: 0.85rem; color: var(--text-sub); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.15rem; }
.contact-item div a, .contact-item div span { font-weight: 600; color: var(--text); }
.contact-item div a:hover { color: var(--blue); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(43,53,175,0.1); color: var(--blue); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--text); }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--text-sub); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; color: var(--text); background: var(--light);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(43,53,175,0.1); }
.form-group textarea { resize: vertical; }
.form-success { display: none; align-items: center; gap: 0.5rem; color: #16a34a; font-weight: 600; font-size: 0.9rem; margin-top: 1rem; padding: 0.75rem; background: #f0fdf4; border-radius: var(--radius-sm); border: 1px solid #bbf7d0; }
.form-success.show { display: flex; }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; min-height: 380px; display: flex; align-items: center; padding-top: 80px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,24,69,0.9) 0%, rgba(43,53,175,0.75) 100%); }
.page-hero-content { position: relative; z-index: 1; color: var(--white); padding: 3rem 0; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; font-weight: 600; }
.breadcrumb a { color: var(--silver-lt); }
.breadcrumb i { font-size: 0.7rem; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin-bottom: 0.75rem; }
.page-hero-content p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 540px; }

/* ===== SERVICES DETAIL ===== */
.sdetail-card { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--border); }
.sdetail-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sdetail-card.reverse { direction: rtl; }
.sdetail-card.reverse > * { direction: ltr; }
.sdetail-img { position: relative; }
.sdetail-img img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.sdetail-badge { position: absolute; top: 1.2rem; left: 1.2rem; width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: var(--shadow); }
.service-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 800; color: var(--silver-lt); line-height: 1; margin-bottom: 0.5rem; }
.sdetail-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 700; margin-bottom: 1rem; }
.sdetail-content p { color: var(--text-sub); line-height: 1.8; margin-bottom: 1.5rem; }
.sdetail-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.sdetail-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; font-weight: 500; color: var(--text); }
.sdetail-features li i { color: var(--blue); flex-shrink: 0; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 5rem 0; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,24,69,0.92) 0%, rgba(43,53,175,0.85) 100%); }
.cta-content { position: relative; z-index: 1; text-align: center; color: var(--white); }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 800; margin-bottom: 1rem; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== GALLERY ===== */
.gallery-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.filter-btn { padding: 0.55rem 1.3rem; border-radius: 50px; font-weight: 700; font-size: 0.88rem; color: var(--text-sub); background: var(--light); border: 1.5px solid var(--border); transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 1rem; }
.gallery-item { overflow: hidden; border-radius: var(--radius-sm); }
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }
.gitem-inner { position: relative; width: 100%; height: 100%; }
.gitem-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gitem-inner img { transform: scale(1.06); }
.gitem-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,24,69,0.85) 0%, transparent 60%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; justify-content: space-between; padding: 1.2rem; }
.gallery-item:hover .gitem-overlay { opacity: 1; }
.gitem-info h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; }
.gitem-info p { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.gitem-zoom { color: var(--white); width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; align-self: flex-end; transition: var(--transition); }
.gitem-zoom:hover { background: var(--blue); }
.gallery-item.hidden { display: none; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(10,12,40,0.94); backdrop-filter: blur(8px); }
.lightbox-container { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.lightbox-container img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: contain; display: block; }
.lightbox-close { position: absolute; top: -2.5rem; right: 0; color: var(--white); font-size: 1.5rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-title { text-align: center; color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; margin-top: 1rem; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 60px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.footer-links h4, .footer-contact h4 { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 1.2rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links ul a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links ul a:hover { color: var(--silver-lt); padding-left: 4px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 0.7rem; }
.footer-contact i { color: var(--silver-lt); margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--silver-lt); }
.footer .social-links a { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.footer .social-links a:hover { background: var(--blue); color: var(--white); }
.footer-bottom { padding: 1.2rem 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-bottom i { color: #e74c3c; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; box-shadow: 0 8px 24px rgba(37,211,102,0.5); transition: var(--transition); }
.whatsapp-fab:hover { transform: scale(1.1); background: #1DA851; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(8px); } }

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

/* --- Tablet Landscape (≤1100px) --- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testi-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .testi-grid .featured-testi { grid-column: span 2; }
  .hero-content { padding: 6rem 0 5rem; }
}

/* --- Tablet Portrait (≤900px) --- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { max-width: 540px; margin: 0 auto; }
  .about-img-float { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-grid .featured-testi { grid-column: span 1; }
  .sdetail-card { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3.5rem; padding-bottom: 3.5rem; }
  .sdetail-card.reverse { direction: ltr; }
  .sdetail-img img { height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item-wide, .gallery-item-tall { grid-column: span 1; grid-row: span 1; }
  .page-hero { min-height: 280px; }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {

  

  /* Hero */
  .hero-content {
    padding: 5.5rem 0 4.5rem;
    max-width: 100%;
  }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 1.2rem; }
  .hero-content p { font-size: 1rem; margin-bottom: 2rem; }
  .hero-badge { font-size: 0.75rem; margin-bottom: 1.5rem; }
  .hero-btns { gap: 0.85rem; margin-bottom: 2rem; }
  .hero-btns .btn { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
  .hero-chips { gap: 1.2rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-strip { padding: 0.75rem 0; }
  .strip-inner { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding: 0 1rem; gap: 0; scrollbar-width: none; }
  .strip-inner::-webkit-scrollbar { display: none; }
  .strip-inner span { font-size: 0.82rem; padding: 0.4rem 1rem; flex-shrink: 0; }

  /* Why Us */
  .whyus-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .why-card { padding: 1.5rem 1.25rem; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 2.4rem; }
  .stat-card { padding: 1.5rem 0.75rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3rem 0 0; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 0.75rem; }
  .gallery-filters { gap: 0.4rem; }
  .filter-btn { padding: 0.45rem 1rem; font-size: 0.82rem; }

  /* Section spacing */
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* CTA */
  .cta-banner { padding: 3.5rem 0; }
  .cta-btns { flex-direction: column; align-items: center; gap: 0.85rem; }
  .cta-content h2 { font-size: 1.7rem; }

  /* Page hero */
  .page-hero-content h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .page-hero { min-height: 240px; }

  /* Service detail */
  .service-num { font-size: 3rem; }

  /* Lightbox */
  .lightbox-container img { max-width: 95vw; max-height: 70vh; }
}

/* --- Small Mobile (≤480px) --- */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-chips { gap: 1rem; }
  .hero-chips span { font-size: 0.82rem; }

  .whyus-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item-wide { grid-column: span 1; }

  .testi-grid { gap: 1rem; }
  .testi-card { padding: 1.5rem; }

  .about-img-main img { height: 300px; }
  .sdetail-img img { height: 220px; }

  .footer-grid { gap: 1.5rem; }
  .footer-brand img { height: 50px; }

  .nav-inner { padding: 0.75rem 1rem; }
  .nav-logo img { height: 85px; }
  .brand-text span { font-size: 1.2rem; }

  .whatsapp-fab { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; font-size: 1.5rem; }

  .section { padding: 2.75rem 0; }
  .container { padding: 0 1rem; }
}



/* ===== FAQ ===== */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(43, 53, 175, 0.06);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: rgba(43, 53, 175, 0.16);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-sub);
  line-height: 1.8;
  font-size: 0.95rem;
  animation: faqFade 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-item summary {
    padding: 1rem 1rem;
    font-size: 0.95rem;
  }

  .faq-content {
    padding: 0 1rem 1rem;
    font-size: 0.92rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .faq-grid {
    gap: 0.85rem;
  }

  .faq-item summary {
    padding: 0.95rem 0.95rem;
    font-size: 0.92rem;
  }

  .faq-content {
    padding: 0 0.95rem 0.95rem;
  }
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 60, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-container {
  background: #f5f7ff;
  padding: 30px;
  width: 500px;
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* Title */
.popup-container h2 {
  margin-bottom: 20px;
  color: #1a237e;
}

/* Labels */
.popup-container label {
  display: block;
  margin-top: 12px;
  margin-bottom: 5px;
  font-weight: 500;
}

/* Inputs */
.popup-container input,
.popup-container select,
.popup-container textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d0d5ff;
  background: #eef1ff;
  font-size: 14px;
}

/* Row layout */
.row {
  display: flex;
  gap: 12px;
}

.row div {
  flex: 1;
}

/* Button */
.submit-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #3f51b5, #5c6bc0);
  color: white;
  font-size: 16px;
  cursor: pointer;
}
