:root {
  --accent: #b69271;
  --muted: #6b7280;
  --services-bg: #ffffff;
  --text: #111827;
  --site-header-height: 72px; /* adjust if your header is taller/shorter */
}

/* ---------- General ---------- */
body {
  font-family: Inter, system-ui, Arial;
  color: #111;
  background: #fff;
}

.hero {
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: #4d3a29;
}
.navbar-nav .nav-link:hover {
  color: #7d7c7c;
}

/* Fix Portfolio dropdown alignment inside collapsed navbar */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    position: static !important;
    margin: 0.25rem auto !important;
    text-align: left !important;
    background: #fff !important;
    width: fit-content !important;
    /* --- Add these lines to remove border and outline --- */
    border: none !important;
    outline: none !important;
    /* --------------------------------------------------- */
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    padding: 0.5rem 1.25rem !important;
    margin-left: 4rem;
  }
}

/* ---------- Services ---------- */
.services {
  background: var(--services-bg);
  color: var(--text);
  padding: 70px 0 90px;
  overflow: hidden;
}
.services-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: .4rem;
  text-align: center;
  margin-bottom: 50px;
}
.services-title .services-our { color: #374151; }
.services-title .services-word { color: var(--accent); }
.service-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-wrap {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  padding: 40px 22px 70px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: transform .6s ease, opacity .6s ease, box-shadow .4s ease;
}
.service-wrap.in-view {
  opacity: 1;
  transform: translateY(0);
}
.service-wrap:hover {
  background: #f9f9f9;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.service-wrap:hover .service-heading { color: var(--accent); }
.service-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 18px;
  transition: transform .3s ease;
}
.service-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: #111827;
  margin: 12px 0 10px;
}
.service-hr {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 20px;
  border-radius: 2px;
}
.service-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
}
.service-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: rgba(0,0,0,0.06);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #f2f2f2;
  color: #333;
  font-family: "Inter", sans-serif;
}
.footer-heading {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--accent);
}
.footer-text {
  font-size: 14px;
  color: #444;
  margin: 0;
}
.footer-text a { color: #333; text-decoration: none; }
.footer-text a:hover { color: var(--accent); }
.footer-divider { border-top: 1px solid #ddd; }
.footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 1px solid #bbb;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- Latest Work ---------- */
#latest-work {
  background: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
}
.section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 5px;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 40px;
  margin-bottom: 20px;
}
.filter-tabs {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0 0 15px;
  border-bottom: 2px solid #eee;
}
.filter-tabs li {
  cursor: pointer;
  padding: 0 12px 8px;
  font-weight: 500;
  font-size: 15px;
  color: #444;
  position: relative;
  transition: color .3s;
}
.filter-tabs li.active {
  color: #000;
  font-weight: 600;
}
.filter-tabs li.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
.filter-tabs li:hover { color: var(--accent); }
.project-container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 2px;
  padding: 0 0 8px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.project-container::-webkit-scrollbar { height: 6px; }
.project-container::-webkit-scrollbar-track { background: #eee; }
.project-container::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
.project-item {
  flex: 0 0 auto;
  width: 360px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.project-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.project-card:hover .project-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.project-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.project-overlay a.btn-read {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.project-overlay a.btn-read:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- Project Detail Hero ---------- */
.project-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 100px 0 70px;
  z-index: 1;
}
.project-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}
.project-hero .container {
  position: relative;
  z-index: 2;
}

/* Light variant */
.project-hero.light-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: calc(var(--site-header-height) + 48px);
  padding-bottom: 56px;
  min-height: 48vh;
  display: block;
  color: #111;
}


/* Titles + desc (shared) */
.project-title {
  font-family: Bahnschrift Light;
  font-size: 2.1rem;
  font-weight: 200;
  color: #e1b790; /* same orange as reference */
}
.project-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
.project-meta li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #111;
}
.project-meta strong {
  display: inline-block;
  width: 92px;
  font-weight: 700;
  color: #111;
}
.meta-card { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; background: #fff; border-radius: 8px; padding: 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.btn-outline-dark {
  border-color: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.86);
}


/* ---------- Responsive tweaks ---------- */
.latest-work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .service-icon { width: 100px; height: 100px; }
  .service-heading { font-size: 18px; }
  .service-desc { font-size: 15px; }
  .service-number { font-size: 48px; }
}
@media (max-width: 768px) {
  .latest-work-header { display: block; }
  .latest-work-header .section-title { margin-bottom: 10px; }
  .filter-tabs { justify-content: flex-start; margin-top: 15px; }
}
@media (max-width: 575px) {
  .service-wrap { padding: 30px 16px 60px; }
  .service-icon { width: 80px; height: 80px; }
  .service-heading { font-size: 17px; }
  .service-number { font-size: 40px; }
  .project-hero.light-hero {
    padding-top: calc(var(--site-header-height) + 20px);
    padding-bottom: 36px;
  }
  .project-title { font-size: 1.45rem; }
  .project-desc { font-size: 0.95rem; max-width: 100%; }
  .meta-card { margin-top: 16px; }
}
@media (max-width: 992px) {
  .project-hero.light-hero {
    padding-top: calc(var(--site-header-height) + 28px);
    padding-bottom: 48px;
  }
  .project-title { font-size: 2.1rem; }
}
//* ---------- Project Gallery ---------- */
 /* Project Gallery Grid */
/* ---------- Project Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
  gap: 20px;
  margin-top: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img.gallery-thumb {
  width: 100%;
  height: 280px;          /* fixed height for uniform grid */
  object-fit: cover;      /* crops neatly */
  display: block;
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.gallery-item img.gallery-thumb:hover {
  transform: scale(1.03);
  cursor: pointer;
}

/* On small screens → 1 column */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}






.project-overlay-new {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  transition: opacity 0.3s ease;
}
.project-overlay-new h5 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}
.project-overlay-new p {
  margin: 0;
  font-size: 0.9rem;
}

/* Always show text on mobile (no hover) */
@media (max-width: 768px) {
  .project-overlay-new {
    opacity: 1 !important;
    background: rgba(0,0,0,0.55);
  }
}

/* ---------- Portfolio Specific ---------- */
.portfolio-categories {
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--accent);
}
.search-form { max-width: 320px; }
.search-input {
  border-radius: 50px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.btn-search {
  border-radius: 50px;
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  transition: 0.3s;
}
.btn-search:hover { background: #8b6a4a; }
.page-btn {
  border-radius: 30px;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  margin: 0 6px;
  transition: 0.3s;
}
.page-btn:hover { background: #8b6a4a; }
.page-info { font-weight: 500; color: #555; }

/* ---------- Project Card (portfolio) ---------- */
.project-card-portfolio {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card-portfolio:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.project-img-portfolio {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.project-card-portfolio:hover project-img-portfolio { transform: scale(1.05); }


.meta-card {
  display: flex;
  justify-content: space-around;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  text-align: center;
}
.meta-card div {
  flex: 1;
  min-width: 120px;
}
.meta-card strong {
  display: block;
  font-weight: 600;
  color: #e86c1f; /* orange highlight like your first screenshot */
  margin-bottom: 4px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ---------- Project Meta Grid (looks like your example screenshot) ---------- */
.meta-card.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px 15px;
  background: #f8f8f8;
  border-radius: 8px;
}

/* single meta item */
.meta-item { padding: 6px 8px; }
.meta-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #a86d36;
  margin-bottom: 3px;
  text-align: center;
}
.meta-value {
  font-size: 0.95rem;
  color: #111;
  font-weight: 400;
  text-align: center;
}


/* Responsive - mobile */
@media (max-width: 768px) {
  .meta-card.meta-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .meta-card.meta-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery thumbs — 2 columns handled by bootstrap columns; style thumbnails */
.gallery-thumb {
  cursor: pointer;
  border-radius: 10px;
  height: 320px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

@media (max-width: 767px) {
  .gallery-thumb {
    /* Remove fixed height so the image uses its natural height */
    height: auto !important;
    /* Change object-fit to contain to show the whole image, or just remove it */
    object-fit: contain !important;
    /* Optional: Remove hover transform on mobile for cleaner interaction */
    transform: none !important;
    box-shadow: none !important;
  }

  .gallery-thumb:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Lightbox tweaks */
#lightbox {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 30px;
}
#lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: #0e1114;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10010;
}
.lb-close { top: 22px; right: 26px; font-size: 22px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* keep hero overlay soft like your example */
.project-hero.light-hero .overlay-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.82));
  z-index: 1;
}
.project-hero.light-hero .container { position: relative; z-index: 2; }


/* Hero Carousel Styling */
/* Remove unnecessary horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* Hero Carousel Image */
/* Hero Carousel Image */
.carousel-item img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}

/* Gradient overlay for readability */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.15));
  z-index: 1;
}

/* Caption at center bottom */
.carousel-caption {
  position: absolute;
  bottom: 12%;        /* push up from bottom */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Headline */
.carousel-caption h2 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  margin-bottom: 12px;
}

/* Paragraph */
.carousel-caption p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 18px;
  color: #f1f1f1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* CTA Button */
.carousel-caption .btn {
  background: #b69271; /* accent color */
  border: none;
  color: #fff;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}
.carousel-caption .btn:hover {
  background: #8b6a4a;
  transform: translateY(-3px);
}

/* Prevent hiding on mobile */
.carousel-caption.d-none.d-md-block {
  display: flex !important;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .carousel-caption {
    bottom: 8%;
    padding: 0 15px;
  }
  .carousel-caption h2 { font-size: 1.6rem; }
  .carousel-caption p { font-size: 0.95rem; }
}

.navbar .container {
  max-width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 991px) {
  .navbar .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media (max-width: 500px) {
  .navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.about-section {
  padding: 80px 0;
  color: #aaa;              /* dark grey text */
  font-family: 'Inter', sans-serif;
}

.about-title {
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.about-title .white-text {
  color: #374151;              /* white "ABOUT" */
  font-weight: 700;
}

.about-title .accent {
  color: #c2a074;           /* golden accent */
  font-weight: 700;
}

.about-text p {
  color: #aaa;              /* dark grey text */
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image {
  text-align: center;
}

.about-image .image-wrapper {
  position: relative;
  display: inline-block;
}

.about-image img {
  max-width: 100%;
  height: auto;
  /* subtle border for contrast */
}

.about-image .exp-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(20, 20, 20, 0.9);
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 12px 16px;
  text-transform: uppercase;
}

/* ---------- About Page ---------- */
.about-hero {
  width: 100%;
  margin: 0;
  padding: 0;
}
.about-hero img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center;
  /*border-bottom: 3px solid #eee; /* cleaner */
}

.intro p,
.pillar p,
.founder p {
  font-family: "Inter", sans-serif;
  font-size: 16px;

  line-height: 1.8;
  color: #444;
}

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size:35px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 40px;
}

/* Pillars section */
.pillars {
  text-align: center;
}

.pillar {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  background:#f8f8f8;

}

.pillar:hover h4 {
  color: #bba570;
}


.pillar-icon {
  margin-bottom: 18px;
}

.pillar-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.pillar h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

.pillar p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}


.founder-photo img {
  width: 270px;
  height: 270px;
  object-fit: cover;
}
.founder-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.founder-name .role {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}
.founder-meta {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--muted);
}


@media (max-width: 768px) {
  .founder {
    text-align: center;  /* center all content */
  }

  .founder .col-md-4,
  .founder .col-md-8 {
    width: 100%;   /* make them full width */
    max-width: 100%;
  }

  .founder-photo {
    margin-bottom: 20px; /* space between photo and text */
  }

  .founder-name {
    display: block;
    margin-bottom: 10px;
  }

  .founder-meta {
    margin-bottom: 16px;
  }
}


.container-narrow {
  max-width: 1140px;   /* controls content width */
  margin: 0 auto;      /* centers content */
  padding: 0 20px;     /* equal left/right spacing */
}

/* Ensure sections use same spacing */
.section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.intro {
  margin-top: 80px;
}

.support-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}




@media (max-width: 768px) {
  .about-hero img {
    height: 25vh;       /* smaller but still cropped */
    object-position: center center;
  }
    .container-narrow {
      padding: 0 12px;  /* less gap on mobile */
    }
}

/* Who Are We centered */
.intro {
  margin-top: 80px;
  text-align: center;
}

.intro p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .founder-name .role {
    display: block;   /* forces it to next line */
    margin-top: 6px;
    font-size: 1rem;  /* slightly larger for readability */
  }
}



/* Bigger Pillar cards */
.pillar {
  padding: 50px 32px;
}
.pillar h4 {
  font-size: 22px;
}
.pillar p {
  font-size: 16px;
  line-height: 1.8;
}

/* ---------- Contact Section ---------- */
.contact-section {
  padding: 80px 0;
  background: #fafafa; /* light grey background for contrast */
}

.contact-section .eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.contact-section h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--text);
  text-align: center;
}

.contact-info {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.contact-info strong {
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
  .contact-form {
     padding: 22px;
  }
}

.contact-form label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
  font-size: 0.95rem;
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,122,51,0.2); /* accent glow */
}

.contact-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #e56720; /* darker shade of accent */
}
