:root {
  --bg: #f8f2e7;
  --surface: rgba(255, 248, 240, 0.95);
  --surface-strong: #fff8f0;
  --text: #3e2a1b;
  --muted: #6e5543;
  --accent: #e67e22;
  --accent-dark: #c96d1c;
  --gold: #d4af37;
  --maroon: #7b241c;
  --brown: #5c4033;
  --shadow: 0 24px 80px rgba(92, 64, 51, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #fff8f0 0%, #f8f2e7 100%);
  color: var(--text);
  line-height: 1.75;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 240, 0.82);
  box-shadow: 0 14px 40px rgba(92, 64, 51, 0.08);
}

.site-header.scrolled {
  background: rgba(255, 248, 240, 0.96);
  box-shadow: 0 22px 44px rgba(92, 64, 51, 0.14);
}

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

.logo {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 18px 40px rgba(230, 126, 34, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(92, 64, 51, 0.15);
  background: rgba(255, 248, 240, 0.92);
  color: var(--brown);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(92, 64, 51, 0.14);
  background: rgba(255, 248, 240, 0.94);
  border-radius: 16px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 14px;
  width: 18px;
  height: 2px;
  background: var(--brown);
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.menu-toggle span::before {
  transform: translate(-2px, -7px);
}

.menu-toggle span::after {
  transform: translate(-2px, 7px);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 10, 5, 0.72);
  padding: 100px 24px 24px;
  overflow-y: auto;
  backdrop-filter: blur(18px);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
}

.mobile-nav a,
.mobile-nav .btn {
  display: block;
  width: 100%;
  margin-bottom: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(230, 126, 34, 0.14), rgba(255, 244, 236, 0.95)), url('https://images.unsplash.com/photo-1525708827927-12e569e83d4a?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  color: #3e2a1b;
  padding: 120px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.42), transparent 34%), radial-gradient(circle at bottom right, rgba(123, 36, 28, 0.2), transparent 28%);
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero .eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: #3e2a1b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.hero .eyebrow::before {
  content: '';
  width: 42px;
  height: 2px;
  background: rgba(255, 233, 198, 0.9);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
}

.hero p {
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 32px;
  color: #3e2a1b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.hero-highlights .highlight {
  background: rgba(255, 248, 240, 0.709);
  border: 1px solid rgba(255, 248, 240, 0.75);
  border-radius: 18px;
  padding: 16px;
  color: #3e2a1b;
  font-weight: 600;
  text-align: center;
}

.hero-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  width: 100%;
  max-width: 460px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 240, 0.15), var(--shadow);
}

.form-card h2 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.form-card p {
  margin: 0 0 26px;
  color: #3e2a1b;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #3e2a1b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 240, 0.22);
  border-radius: 18px;
  padding: 14px 16px;
  /* background: rgba(255, 255, 255, 0.18); */
  color: #3e2a1b;
  outline: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.95);
  transform: translateY(-1px);
}

.form-group select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 248, 240, 0.95) 50%), linear-gradient(135deg, rgba(255, 248, 240, 0.95) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.form-message {
  display: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.form-message.show {
  display: block;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.section-title span {
  display: block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 0;
}

.features-grid,
.services-grid,
.trust-grid,
.gallery-grid,
.testimonial-grid,
.about-grid {
  display: grid;
  gap: 24px;
}

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

.feature-card,
.service-card,
.trust-card,
.gallery-card,
.testimonial-card,
.faq-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(92, 64, 51, 0.08);
  padding: 28px;
  margin: 10px;
}

.service-card img {
    object-fit: cover;
    object-position: 60% 70%;
}

.feature-card svg,
.trust-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card h3,
.service-card h3,
.trust-card h3,
.testimonial-card h3,
.faq-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.feature-card p,
.service-card p,
.trust-card p,
.testimonial-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.service-card .service-meta {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card .service-meta button {
  margin: 0;
}

.section-group {
  padding: 80px 0;
}

.about-grid {
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}

.about-card {
  display: grid;
  gap: 18px;
}

.about-card p {
  color: var(--muted);
}

.about-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(92, 64, 51, 0.1), rgba(0, 0, 0, 0.1));
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.service-card .service-content {
  display: grid;
  gap: 12px;
}

.service-card .service-content h3 {
  font-size: 1.3rem;
}

.service-card .service-content p {
  color: var(--muted);
}

.service-card .btn-link {
  border: 1px solid rgba(92, 64, 51, 0.12);
  background: transparent;
  color: var(--brown);
  padding: 12px 18px;
}

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

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.trust-card svg {
  flex-shrink: 0;
}

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

.gallery-card {
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
}

.gallery-card img {
  width: 500px;
  height: 300px;
  object-fit: cover;
  display: block;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.video-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(92, 64, 51, 0.08);
  box-shadow: var(--shadow);
}

.video-card iframe {
  width: 100%;
  height: 340px;
  border: 0;
}

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

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 5rem;
  color: rgba(230, 126, 34, 0.12);
  font-family: serif;
}

.testimonial-card .client {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.testimonial-card img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.35);
}

.testimonial-card .client-info h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.testimonial-card .client-info span {
  color: var(--muted);
  font-size: 0.9rem;
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.rating span {
  color: var(--accent);
}

.cta-banner {
  padding: 64px 30px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.95), rgba(212, 175, 55, 0.9));
  border-radius: 40px;
  box-shadow: var(--shadow);
  color: #fff;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0;
}

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

.faq-card {
  overflow: hidden;
}

.faq-card button {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-card button span {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease;
}

.faq-card.open .faq-answer {
  max-height: 260px;
}

.faq-answer p {
  margin: 18px 0 0;
  color: var(--muted);
}

.footer {
  padding: 64px 0 24px;
  background: #5c4033;
  color: rgba(255, 248, 240, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer h3 {
  margin-top: 0;
  color: #fff;
}

.footer a {
  display: block;
  color: rgba(255, 248, 240, 0.8);
  margin: 12px 0 0;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 248, 240, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 60;
}

.floating-actions a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 20px 40px rgba(230, 126, 34, 0.25);
}

.floating-actions a.call {
  background: var(--maroon);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero .container,
  .cta-banner .container {
    grid-template-columns: 1fr;
  }
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .features-grid,
  .trust-grid,
  .gallery-grid,
  .testimonial-grid,
  .video-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    gap: 14px;
  }
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .hero {
    padding: 100px 0 40px;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .service-card img {
    height: 190px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }
  .hero p,
  .section-title h2,
  .cta-banner h2 {
    text-align: center;
  }
  .hero-actions,
  .cta-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .container {
    padding: 0;
  }
  .section-group {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-card iframe {
    height: 220px;
  }
  .testimonial-grid,
  .features-grid,
  .service-card {
    grid-template-columns: 1fr;
  }
  .floating-actions {
    left: auto;
    right: 20px;
  }

@media (max-width: 680px) {
    .floating-actions {
        left: 0px;
        right: 0px !important;
    }
    
.trust-card {
    display: block;
    align-items: center;
    justify-content: center;
}

}

}
