/* Home Model Renew - Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary: #2E4A3A;
  --primary-dark: #1E3327;
  --secondary: #D9A679;
  --secondary-light: #F2D5B1;
  --light: #F9F6F1;
  --light-gray: #F5F3EF;
  --dark: #222222;
  --text-muted: #6B6B6B;
  --white: #ffffff;
  --border: #EAE6E0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .font-display {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
}

a { text-decoration: none; }
a:hover { color: var(--primary); }

/* Navbar */
.navbar {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
}
.navbar-brand span {
  color: var(--secondary);
  font-weight: 500;
}
.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  margin: 0 6px;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--secondary);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}
.btn-primary-custom {
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46,74,58,0.2);
}
.btn-secondary-custom {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-secondary-custom:hover {
  background: var(--primary);
  color: white;
}

/* Hero */
.hero {
  background: linear-gradient(105deg, rgba(249,246,241,1) 0%, rgba(249,246,241,0.95) 55%, rgba(249,246,241,0.2) 100%), url('../img/hero-home.jpg');
  background-size: cover;
  background-position: center;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  background: var(--secondary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 32px;
}

/* Section General */
.section-padding { padding: 90px 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--light); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-subtitle {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  color: var(--primary-dark);
}
.section-dark .section-title { color: white; }

/* Service Cards */
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--light-gray);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--primary);
}
.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Why Choose Us */
.feature-box {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.feature-box h5 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-box p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 15px;
}
.process-number {
  width: 64px;
  height: 64px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.3rem;
}
.process-step h5 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.07);
}
.blog-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}
.blog-content { padding: 26px; }
.blog-content h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-content h4 a { color: var(--primary-dark); }
.blog-content h4 a:hover { color: var(--primary); }
.blog-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  height: 100%;
}
.testimonial-card p {
  font-style: italic;
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(217,166,121,0.15);
  border-radius: 50%;
}
.cta-section h2 { color: white; }
.cta-section p { color: rgba(255,255,255,0.7); }

/* Forms */
.form-control, .form-select {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  font-size: 0.92rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(217,166,121,0.15);
}
.form-label { font-weight: 500; font-size: 0.88rem; color: var(--dark); }

/* Footer */
.footer {
  background: #1A241D;
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}
.footer h5 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.footer a:hover { color: var(--secondary-light); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 24px 0;
  font-size: 0.85rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.3s;
  color: white;
}
.social-icon:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

/* Blog Single */
.blog-single-header {
  background: var(--light-gray);
  padding: 80px 0 60px;
}
.blog-single-content {
  background: white;
  border-radius: 24px;
  padding: 50px;
  margin-top: -40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
}
.blog-single-content p {
  margin-bottom: 22px;
  color: #3A3A3A;
  font-size: 1rem;
}
.blog-single-content h3 {
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  .hero { min-height: auto; padding: 60px 0; }
  .cta-section { padding: 36px 24px; border-radius: 20px; }
  .blog-single-content { padding: 28px 22px; }
}
