:root {
  --color-primary: #ff7a00;
  --color-primary-dark: #e65100;
  --color-gold: #f4c542;
  --color-maroon: #6a0000;
  --color-bg: #ffffff;
  --color-light: #fff5e6;
  --color-text: #483122;
  --color-muted: #7b5e49;
  --shadow-soft: 0 14px 34px rgba(128, 65, 0, 0.14);
  --shadow-card: 0 12px 26px rgba(87, 42, 0, 0.12);
  --gradient-gold: linear-gradient(135deg, rgba(255, 122, 0, 0.95), rgba(244, 197, 66, 0.95));
  --gradient-warm: linear-gradient(135deg, #fff9ef 0%, #fff2db 45%, #ffe5c2 100%);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top left, rgba(244, 197, 66, 0.2), transparent 24%), linear-gradient(180deg, #fffdf9 0%, #ffffff 30%, #fff9f0 100%);
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

section {
  padding: 96px 0;
}

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

.light-section {
  background: var(--gradient-warm);
}

.section-tag,
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.85);
}

h1,
h2,
h3,
.logo-text {
  font-family: "Cinzel", serif;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.35;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 10px 24px rgba(230, 81, 0, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), #cb4600);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.btn-light {
  color: var(--color-maroon);
  background: #fff;
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.glow:hover {
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08), 0 14px 30px rgba(230, 81, 0, 0.32);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(106, 0, 0, 0.08);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #fff;
  font-family: "Cinzel", serif;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-maroon);
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  position: relative;
  font-weight: 700;
  color: var(--color-maroon);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(106, 0, 0, 0.16);
  border-radius: 12px;
  background: #fff8ef;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-maroon);
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88vh;
  padding: 150px 0 110px;
  color: #fff;
  background: url("/jpg.avif") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-content,
.inner-hero .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-content p:last-of-type,
.inner-hero p:last-of-type {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.inner-hero {
  color: #fff;
  padding: 132px 0 88px;
  background: linear-gradient(rgba(50, 8, 0, 0.68), rgba(50, 8, 0, 0.68)), url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 46px;
}

.image-card,
.form-card {
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.image-card img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.content-block p,
.contact-details p,
.service-detail p {
  color: var(--color-muted);
}

.highlight-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.highlight-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.highlight-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 46px;
  text-align: center;
}

.services-grid,
.features-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-block,
.testimonial-card,
.service-detail,
.timeline-step {
  padding: 30px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card {
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
}

.service-card:hover,
.feature-block:hover,
.testimonial-card:hover,
.service-detail:hover,
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(87, 42, 0, 0.18);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 18px;
  font-size: 1.7rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(244, 197, 66, 0.28));
  color: var(--color-primary-dark);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-block {
  text-align: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #ffe7a7 0%, var(--color-gold) 55%, #f0b400 100%);
  color: var(--color-maroon);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(244, 197, 66, 0.34);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.4), rgba(244, 197, 66, 0.85), rgba(255, 122, 0, 0.4));
}

.timeline-step {
  position: relative;
  padding-top: 76px;
  text-align: center;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--gradient-gold);
  box-shadow: 0 6px 16px rgba(244, 197, 66, 0.32);
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid,
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.masonry-grid .gallery-item img {
  height: 100%;
  min-height: 320px;
}

.masonry-grid .tall {
  grid-row: span 2;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  margin: 0 0 0;
  border: 4px solid rgba(244, 197, 66, 0.3);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.cta-section {
  color: #fff;
  background: linear-gradient(135deg, rgba(230, 81, 0, 0.95), rgba(106, 0, 0, 0.92)), linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent);
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.contact-list h3 {
  margin-bottom: 8px;
}

.form-card {
  padding: 34px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-weight: 700;
  color: var(--color-maroon);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(106, 0, 0, 0.14);
  border-radius: 16px;
  background: #fffdf9;
  font: inherit;
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.service-list {
  display: grid;
  gap: 24px;
}

.service-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-left: 6px solid var(--color-gold);
}

.site-footer {
  color: #f8e9de;
  background: radial-gradient(circle at top, rgba(255, 122, 0, 0.18), transparent 30%), var(--color-maroon);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  padding: 72px 0 44px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #fff7ef;
}

.site-footer ul {
  display: grid;
  gap: 12px;
}

.site-footer a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
}

.floating-action {
  position: fixed;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.floating-call {
  left: 20px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.floating-whatsapp {
  right: 20px;
  background: linear-gradient(135deg, #25d366, #0ea14b);
}

.fade-up,
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  
}
.testimonial-card {
flex-direction: column;
}
@media (max-width: 1080px) {
  .services-grid,
  .features-grid,
  .testimonial-grid,
  .timeline,
  .gallery-grid,
  .masonry-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .service-detail {
    flex-direction: column;
    align-items: flex-start;
  }

  .masonry-grid .tall {
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  section {
    padding: 78px 0;
  }

  .header-wrap {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .header-btn {
    display: none;
  }

  .site-nav {
    width: 100%;
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .site-header.menu-open .site-nav {
    max-height: 420px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 0 8px;
  }

  .split-section,
  .cta-wrap {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 76vh;
    padding-top: 132px;
  }

  .image-card img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .features-grid,
  .testimonial-grid,
  .timeline,
  .gallery-grid,
  .masonry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .floating-action {
    min-width: 0;
    min-height: 48px;
    max-width: 152px;
    width: auto;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .floating-call {
    left: 12px;
  }

  .floating-whatsapp {
    right: 12px;
  }

  .hero-section,
  .inner-hero {
    text-align: center;
  }

  .hero-content,
  .inner-hero .container {
    margin: 0 auto;
  }

  .form-card,
  .service-card,
  .feature-block,
  .testimonial-card,
  .service-detail,
  .timeline-step {
    padding: 24px;
  }

  .gallery-item img {
    height: 240px;
  }
}
