/* ============================================
   Nivasam Properties - Custom Stylesheet
   Bootstrap 5.3 + Custom CSS3
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #4A5D4E;
  --primary-dark: #3a4c3e;
  --accent: #B58B43;
  --accent-light: #D4A855;
  --light-bg: #F5F5F0;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-muted: #6B7280;
  --border: #E0DDD5;

  /* Bootstrap Variable Overrides */
  --bs-primary: #4A5D4E;
  --bs-primary-rgb: 74, 93, 78;
  --bs-link-color: #4A5D4E;
  --bs-link-hover-color: #3a4c3e;
}

/* ---- Bootstrap Theme Overrides ---- */
.text-primary {
  color: var(--primary) !important;
}

.text-secondary,
.text-accent {
  color: var(--accent) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary,
.bg-accent {
  background-color: var(--accent) !important;
}

/* Global Icon Styling to avoid Bootstrap defaults */
i.bi {
  color: inherit;
}

/* Unless explicitly colored */
i.bi.text-primary {
  color: var(--primary) !important;
}

i.bi.text-accent {
  color: var(--accent) !important;
}

i.bi.text-white {
  color: var(--white) !important;
}

i.bi.text-danger {
  color: #d63384 !important;
}

/* A deeper rose/pink instead of bright red if they hate blue/red */

/* ---- Base ---- */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
}

/* ===========================
   NAVBAR
=========================== */
.navbar-nivasam {
  background-color: var(--primary);
}

.navbar-nivasam .navbar-brand img {
  height: 52px;
}

.navbar-nivasam .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  transition: color 0.2s;
}

.navbar-nivasam .nav-link:hover,
.navbar-nivasam .nav-link.active {
  color: var(--accent-light) !important;
}

.btn-schedule {
  background-color: var(--accent);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 4px;
  border: none;
  padding: 0.5rem 1.2rem;
  transition: background-color 0.2s, transform 0.15s;
}

.btn-schedule:hover {
  background-color: var(--accent-light);
  transform: translateY(-1px);
}

/* ===========================
   SECTION 1: HERO
=========================== */
.hero-section {
  background-color: var(--white);
  padding: 52px 0 44px;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0.9rem 0 1.5rem;
}

.btn-hero {
  background-color: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-hero:hover {
  background-color: var(--accent-light);
  color: var(--white);
}

.hero-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
}

.hero-image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* Quick Inquiry */
.quick-inquiry-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
  padding: 26px 22px;
  border-top: 3px solid var(--accent);
}

.quick-inquiry-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.quick-inquiry-card .form-control {
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.88rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 10px;
}

.quick-inquiry-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.18rem rgba(74, 93, 78, 0.18);
}

.btn-send {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  width: 100%;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem;
  border-radius: 5px;
  transition: background-color 0.2s;
  letter-spacing: 0.3px;
}

.btn-send:hover {
  background-color: var(--accent-light);
}

/* ===========================
   SECTION 2: TRUST
=========================== */
.trust-section {
  background-color: var(--primary);
  padding: 70px 0;
}

.rera-badge-lg {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.trust-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.trust-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
}

.trust-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.25s, transform 0.2s;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.trust-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.trust-card-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* ===========================
   SECTION 3: PROPERTY OFFERINGS
=========================== */
.offerings-section {
  background-color: var(--light-bg);
  padding: 70px 0;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.offering-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.offering-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.offering-list li:last-child {
  border-bottom: none;
}

.offering-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-accent {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-accent:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* Property Cards */
.property-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
  transition: transform 0.22s, box-shadow 0.22s;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.property-card .card-img-wrap {
  position: relative;
  height: 195px;
  overflow: hidden;
}

.property-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.property-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.property-card .badge-ready {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.property-card .card-body {
  padding: 16px 18px;
}

.property-card .prop-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.property-card .prop-details {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.property-card .prop-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

.btn-brochure {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}

.btn-brochure:hover {
  background-color: var(--accent);
  color: var(--white);
}

.btn-enquire {
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 5px;
  border: none;
  transition: background-color 0.2s;
  cursor: pointer;
}

.btn-enquire:hover {
  background-color: var(--primary-dark);
}

/* Property Owl Carousel Custom Styles */
.property-owl-carousel {
  position: relative;
  padding-bottom: 30px;
}

.property-owl-carousel .owl-dots {
  margin-top: 20px !important;
  text-align: center;
}

.property-owl-carousel .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: var(--border) !important;
  transition: all 0.3s ease;
  display: block;
  margin: 5px 7px;
}

.property-owl-carousel .owl-dot.active span {
  width: 24px !important;
  background: var(--accent) !important;
  border-radius: 10px;
}

.property-card {
  height: 100%;
  margin-bottom: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ===========================
   SECTION 4: LOCATION
=========================== */
.location-section {
  background-color: var(--white);
  padding: 70px 0;
}

.map-frame {
  width: 100%;
  height: 400px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.location-list li:last-child {
  border-bottom: none;
}

.loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(74, 93, 78, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.location-list li div strong {
  font-size: 0.92rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}

.location-list li div small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.location-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 8px;
}

/* ===========================
   SECTION 5: AMENITIES
=========================== */
.amenities-section {
  background-color: var(--light-bg);
  padding: 70px 0;
}

.amenity-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.amenity-card-img {
  height: 170px;
  overflow: hidden;
}

.amenity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.amenity-card:hover .amenity-card-img img {
  transform: scale(1.06);
}

.amenity-card-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.amen-icon-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(181, 139, 67, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.amen-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===========================
   SECTION 6: BUYING PROCESS
=========================== */
.process-section {
  background-color: var(--primary);
  padding: 70px 0;
}

.process-section .section-heading {
  color: var(--white);
}

.process-section .section-subtext {
  color: rgba(255, 255, 255, 0.72);
}

.process-step {
  text-align: center;
  padding: 0 10px;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.10);
  border: 2.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  color: var(--white);
}

.step-number-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.step-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 4px 0 0;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  color: var(--accent);
  font-size: 1.3rem;
}

/* ===========================
   SECTION 7: TESTIMONIALS
=========================== */
.testimonials-section {
  background-color: var(--white);
  padding: 70px 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--accent);
  height: 100%;
  transition: transform 0.22s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===========================
   SECTION 8: FINAL CTA
=========================== */
.final-cta-section {
  background-color: var(--light-bg);
  padding: 70px 0;
}

.final-cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 18px;
  padding: 50px 48px;
  box-shadow: 0 10px 40px rgba(74, 93, 78, 0.30);
}

.cta-heading {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}

.cta-subtext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 16px;
}

.cta-checklist {
  margin-bottom: 6px;
}

.cta-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 10px 14px;
}

.cta-check-item i {
  font-size: 1rem;
  color: var(--accent-light);
}

.btn-whatsapp-cta {
  background-color: #25D366;
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s, transform 0.15s;
}

.btn-whatsapp-cta:hover {
  background-color: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
}

.cta-image {
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  height: 260px;
}

/* ===========================
   FOOTER (Multi-column)
=========================== */
.footer-nivasam {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.80);
}

.footer-seo-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
  margin: 0;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact li i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer-contact li a:hover {
  color: var(--accent-light);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.footer-socials a:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-wa-btn {
  background-color: #25D366;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.footer-wa-btn:hover {
  background-color: #1ebe5d;
  color: var(--white);
}

/* Copyright Bar */
.footer-copyright {
  background-color: rgba(0, 0, 0, 0.22);
  text-align: center;
  padding: 14px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.60);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright strong {
  color: var(--white);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background-color: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: var(--white);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991.98px) {
  .final-cta-card {
    padding: 36px 28px;
  }

  .trust-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .hero-text h1 {
    font-size: 1.55rem;
  }

  .section-heading {
    font-size: 1.4rem;
  }

  .cta-heading {
    font-size: 1.4rem;
  }

  .hero-image-wrap {
    margin-top: 20px;
  }

  .process-connector {
    display: none;
  }

  .final-cta-card {
    padding: 28px 20px;
  }

  .map-frame {
    height: 280px;
  }
}

/* ===========================
   ABOUT US PAGE
=========================== */
.about-hero-section {
  background-color: var(--white);
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.about-hero-section h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
}

.about-hero-section h1 span {
  color: var(--primary);
}

.about-hero-section p.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.light-bg {
  background-color: var(--light-bg);
}

.about-img-wrap {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.primary-bg {
  background-color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.border-dashed {
  border: 2px dashed var(--border);
}

/* Commitment Cards (Specific for About Us) */
.commitment-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.commitment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(74, 93, 78, 0.12);
  border-color: var(--primary);
}

.commitment-icon-circle {
  width: 64px;
  height: 64px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.commitment-card:hover .commitment-icon-circle {
  transform: scale(1.1) rotate(5deg);
}

.commitment-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.commitment-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.italic {
  font-style: italic;
}

.what-we-dont-do .bg-light {
  background-color: rgba(74, 93, 78, 0.03) !important;
}

.about-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* ===========================
   CONTACT US PAGE
=========================== */
.contact-hero-section {
  background-color: var(--white);
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-hero-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.contact-hero-section h1 span {
  color: var(--primary);
}

.contact-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateX(8px);
  border-color: var(--accent);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(181, 139, 67, 0.1);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(74, 93, 78, 0.08);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ===========================
   BLOGS PAGE
========================== */
.blog-hero-section {
  background-color: var(--white);
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-hero-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.blog-hero-section h1 span {
  color: var(--primary);
}

.blog-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(74, 93, 78, 0.1);
  border-color: rgba(74, 93, 78, 0.1);
}

.blog-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.1);
}

.blog-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-meta i {
  color: var(--accent);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-read-more {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.blog-read-more:hover {
  color: var(--primary-dark);
  gap: 10px;
}

.custom-pagination .page-link {
  color: var(--text-dark);
  border-radius: 8px;
  margin: 0 4px;
  border: 1px solid #E5E7EB;
  font-weight: 600;
  padding: 10px 18px;
}

.custom-pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.custom-pagination .page-link:hover {
  background-color: rgba(74, 93, 78, 0.05);
  color: var(--primary);
}

/* ===========================
   PROJECT PAGE
========================== */
.project-hero-section {
  background-color: var(--white);
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.project-hero-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.project-hero-section h1 span {
  color: var(--primary);
}

.project-img-wrap {
  border: 8px solid var(--white);
}

.custom-check-list i {
  font-size: 1.25rem;
}

.project-cta-section .btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
}

.project-cta-section .btn-accent:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
}

/* Premium CTA Refinement */
.premium-cta-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1600607687940-47202730733d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.premium-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 93, 78, 0.96) 0%, rgba(74, 93, 78, 0.85) 100%);
  z-index: 1;
}

.premium-cta-section .container {
  z-index: 2;
}

.opacity-90 {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .premium-cta-section {
    background-attachment: scroll;
  }
}