/*!
Theme Name: renopermits
*/

/* Synced from main css/styles.css */
:root {
  --color-primary: #001b3d;
  --color-primary-dark: #001b3d;
  --color-accent: #c9a227;
  --color-accent-hover: #b8921f;
  --color-text: #001b3d;
  --color-text-light: #718096;
  --color-white: #ffffff;
  --color-bg: #f7fafc;
  --header-height: 52px;
  --header-main-height: 78px; 
  --container-max: 1248px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

body {
  margin: 0;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/*  Header */

.site-header {
  background: var(--color-white);
}

/* Top bar: phone & email (sticky at top; first in header so sticky works) */
.header-top {
    z-index: 1001;
    background: #fff;
    color: var(--color-white);
    box-shadow: var(--shadow);
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  min-height: var(--header-height);
}

.header-top-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s, color 0.2s;
}

.header-contact-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.header-contact:hover {
  opacity: 0.9;
  color: var(--color-accent);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}

.header-social a:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}

/* Main header: logo, nav, CTA (sticky via JS when scroll > 150px) */
.header-main {
    background: #001b3d;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
}

.header-main.is-sticky {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: top 0.3s ease-in-out;
}

main.has-sticky-header {
  padding-top: var(--header-main-height);
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--header-main-height);
}

.logo {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* .logo-text {
  letter-spacing: -0.02em;
} */


/*img.custom-logo {
    width: 220px;
    height: 70px;
}*/
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: #c9a227;
  background: rgba(26, 54, 93, 0.06);
}
.menu-menu-1-container ul {
    display: inline-flex;
    list-style: none;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--color-accent);
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 4px rgba(201, 162, 39, 0.3);
}

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

/* .btn-cta-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.btn-cta-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
} */

/* ========== Hero section ========== */

.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 54, 93, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Dark hero (doc design: city skyline, white text, Contact Now) */
.hero-dark {
    padding: 100px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/*.hero-dark .hero-bg {
  background: #1a1d24 center/cover no-repeat;
}
*/
.hero-content p {
    margin: 0 auto 28px;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
/*.hero-dark .hero-bg::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
}*/

.hero-dark .hero-title,
.hero-dark .hero-text {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-dark .hero-title {
  margin-bottom: 20px;
}

.hero-dark .hero-text {
  margin: 0 auto 28px;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #000000;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

hero-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-text {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
}

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

.hero-note {
  margin: 0 0 28px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-light);
  font-style: italic;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-cta .btn-cta {
  min-width: 180px;
}

/* ========== Start Your Dream Renovation ========== */

.bg-clr {
  background: linear-gradient(180deg, #f0f4f8 0%, #e8eef4 100%);
  padding: 54px 24px 10px;
}

.dream-renovation {
  position: relative;
}

.dream-renovation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto 48px;
  min-height: 400px;
}

.dream-renovation-content {
    flex: 1;
    max-width: 91%;
    margin: 0 auto;
}
.dream-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
}

.dream-badge svg {
  flex-shrink: 0;
}

.dream-renovation-title {
  margin: 0;
  font-size: clamp(1.19rem, 2.1vw, 3.5rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}
.text-accent {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.dream-renovation-image {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dream-renovation-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.dream-form {
  position: relative;
  max-width: 1150px;
  margin: -100px auto 50px;
  padding: 32px 36px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 20px;
}


.form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row-file {
  margin-bottom: 20px;
}

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

.form-select,
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  background: var(--color-white);
  color: #797979; 
  transition: border-color 0.2s;
}

.form-select:focus,
.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.2s;
  resize: vertical;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-row-message {
  margin-bottom: 20px;
}

.file-drop-zone {
  position: relative;
  min-height: 140px;
  padding: 24px;
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  background: #f7fafc;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.file-drop-zone:hover,
.file-drop-zone.is-dragover {
  border-color: var(--color-primary);
  background: rgba(26, 54, 93, 0.04);
}

.file-input-hidden {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.file-drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.file-drop-icon {
  color: var(--color-text-light);
}

.file-drop-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.file-drop-browse {
    color: #191d40;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.file-drop-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.file-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.file-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  background: var(--color-white);
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.file-list-item:last-child {
  margin-bottom: 0;
}

.file-list-remove {
  padding: 4px 8px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.file-list-remove:hover {
  color: #e53e3e;
  background: rgba(229, 62, 62, 0.1);
}

.btn-dream-consult {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-accent);
  color: #000;
  border: 2px solid var(--color-accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-dream-consult:hover {
  background: transparent;
}

@media (max-width: 768px) {
  .btn-dream-consult {
  width: 100%;
  justify-content: center;
  }
  .header-top-inner {
    justify-content: center;
  }
}

/* ========== Residential Projects We Specialize In ========== */

.specialization-title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: #000000;
  margin:auto;
}

.projects-specialize {
  padding: 60px 0 80px;
  background: var(--color-bg);
}

.specialization-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.section-intro {
  max-width: 720px;
  margin: 15px auto 40px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000000;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* Feature card (full width above grid) */
.project-card-feature {
  grid-column: 1 / -1;
  padding: 20px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.card-caption {
  display: flex !important;
  align-items: center !important;
      justify-content: center !important;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.project-card-feature .project-card-title {
  margin-top: 0;
  font-size: 1.6rem;
}

.services-list {
  background: var(--color-white);
  padding: 50px 0px
}

.services-header {
  text-align: center;
  margin-bottom: 18px;
}


.services-header .specialization-title {
  margin: 0 0 8px;
}

/* Services cards grid (small informational cards) */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px;
  border: 1px solid #eef2f6;
  background: var(--color-white);
  border-radius: 8px;
}

.service-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

/* .service-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
} */

.service-short {
  margin: 0;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.service-card .project-card-summary {
  margin-top: 8px;
  align-self: flex-start;
}

.project-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}
h2.faq-heading.specialization-title {
    font-size: 36px;
}
.projects-specialize .project-card {
    min-height: 542px;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}
.projects-grid .project-card:hover {
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
}

.project-card-image-wrap {
  overflow: hidden;
  padding: 20px;
}

.project-card-image-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.project-card-title {
    margin: 16px 20px 4px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: capitalize;
}
h3.project-card-title a {
    text-decoration: none;
    color: unset;
}
.project-card-tagline {
  margin: 0 20px 12px;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-primary);
}

/* Truncated description (visible when closed) */
.project-card-content {
  margin: 0 20px 5px;
}

/* Card base - keep overflow hidden so inline expansion pushes content down */
.project-card {
  position: relative;
  overflow: hidden;

}

.project-card-desc-short {
  margin: 0 0 4px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hide short desc when card is opened */
.project-card.is-open .project-card-desc-short {
  display: none;
}

.project-card-details {
    margin: 0;
    border: none;
    display: block;
    padding-bottom: 12px;
}

.project-card-summary {
  margin: 8px 0 12px;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.2s;
}

.project-card-summary::-webkit-details-marker {
  display: none;
}

.project-card-summary:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.project-card-expand {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 0;
  transform: translateY(-8px);
}

/* When open, show the expanded content inline so it pushes card height down. */
.project-card.is-open .project-card-expand {
  opacity: 1;
  margin-top: 12px;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.project-card-desc-full,
.project-card-expand .project-card-desc {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.project-card-includes {
  margin: 12px 0 0;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
}

.project-card-includes li {
    margin-bottom: 4px;
    font-size: 14px;
}
@media (max-width: 1024px) {
   .dream-form{
    margin: 0 20px;
   }
}




@media (max-width: 992px) {
  /* Tablet: show 2 columns */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card-image-wrap img {
    height: 220px;
  }

  .dream-form {
    margin: -100px 20px 50px;
  }
  .dream-renovation-inner {
    flex-direction: column;
    text-align: left;
  }

  .dream-renovation-content {
    max-width: 100%;
  }

  .dream-renovation-image {
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .projects-specialize {
    padding: 20px 0 60px !important;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile: single column */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card-image-wrap img {
    height: 180px;
  }

  .project-card-title,
  .project-card-tagline,
  .project-card-content,
  .project-card-desc-short {
    margin-left: 16px;
    margin-right: 16px;
  }

  /* .dream-renovation {
    padding: 40px 16px 10px;
  } */

  .dream-form {
    margin-top: -80px;
    padding: 24px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .file-drop-zone {
    min-height: 100px;
    padding: 16px;
  }
}

/* ========== Footer ========== */

.site-footer {
    padding: 24px 16px;
    background: #001b3d;
}

.footer-shell {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-bar {
  padding: 45px 26px 24px;
  color: #e2e8f0;
}

.footer-inner {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-left,
.footer-center,
.footer-right {
  display: flex;
  align-items: center;
}

.footer-left {
  gap: 10px;
}

/* .footer-logo-text {
  text-decoration: none;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
} */
 .footer-logo img {
  width: 250px;
  object-fit: cover;
}

.footer-center {
  flex: 1;
  justify-content: center;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: #a0aec0;
}

.footer-right {
  gap: 12px;
}
.footer-link {
  text-decoration: none;
  color: #fff;
}
.footer-link:hover {
  color: var(--color-accent);
}

/* ========== Footer responsive ========== */

@media (max-width: 992px) {
  .footer-inner {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-content: center;
  }

  .footer-center {
    flex: 1 1 100%;
    order: 3 !important;
  }

  .footer-left {
    order: 1;
  }

  .footer-right {
    order: 2;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 20px 12px;
  }

  .footer-bar {
    padding: 32px 16px 20px;
    border-radius: 12px;
  }

  .footer-bar::before {
    top: 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-content: center;
    width: 100%;
  }

  .footer-center {
    flex: none;
    order: 0;
  }

  .footer-copy {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .footer-logo-text {
    font-size: 1rem;
    white-space: normal;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .footer-bar {
    padding: 24px 12px 16px;
  }

  .footer-logo-text {
    font-size: 0.9rem;
  }

  .footer-copy {
    font-size: 0.7rem;
  }
  .nav-toggle span {
    margin-left: 8px;
}
}

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

/* Mobile sidebar & overlay (hidden on desktop) */
.nav-overlay,
.nav-sidebar {
  display: none;
}


/* ========== Responsive ========== */

@media (max-width: 992px) {
  .header-main-inner {
    gap: 16px;
  }

  .main-nav,
  .header-main .btn-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Sidebar: slide in from left, smooth */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease-out;
  }

  .nav-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    z-index: 1002;
    background: var(--color-white);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px 20px;
    overflow-y: auto;
  }

  .nav-sidebar[hidden] {
    display: none;
  }
.nav-toggle span {
    margin-left: 8px;
}
  body.sidebar-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.sidebar-open .nav-sidebar {
    transform: translateX(0);
  }

  .nav-sidebar-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    margin: -8px -8px 24px 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--color-text);
    cursor: pointer;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
  }

  .nav-sidebar-close:hover {
    color: var(--color-primary);
    background: rgba(26, 54, 93, 0.08);
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
  }

  .sidebar-nav a {
    display: block;
    padding: 12px 16px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
  }

  .sidebar-nav a:hover {
    color: var(--color-primary);
    background: rgba(26, 54, 93, 0.08);
  }

  .sidebar-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;
    background: #c9a227;
    color: #1a1a1a;
    font-weight: 700;
    /* font-size: 0.95rem; */
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .sidebar-cta:hover {
    background: #b8921f;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .header-top-inner {
    gap: 10px 16px;
    padding: 10px 16px;
    min-height: 48px;
  }

  .header-top-right {
    gap: 10px 16px;
  }

  .header-contact {
    font-size: 0.85rem;
  }

  .header-main-inner {
    min-height: 64px;
    padding: 0 16px;
  }
  .nav-toggle span {
    margin-left: 8px;
}
}

@media (max-width: 600px) {
  .header-top-inner {
    gap: 8px 12px;
    padding: 8px 12px !important;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-top-right {
    gap: 8px 12px;
  }

  .header-contact {
    font-size: 0.8rem;
  }

  .header-contact-icon {
    width: 16px;
    height: 16px;
  }

  .header-social a {
    width: 28px;
    height: 28px;
  }

  .header-social svg {
    width: 18px;
    height: 18px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .container {
    padding: 0 16px;
  }

  .header-main .container {
    padding: 0 12px;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .hero-dark {
    padding: 60px 0 80px;
    min-height: 100vh;
  }
  .nav-toggle span {
    margin-left: 8px;
}

  .hero-dark .hero-title {
    font-size: 1.5rem;
  }

  .hero-dark .hero-text {
    font-size: 0.95rem;
  }

  .btn-hero-cta {
    width: 100%;
    max-width: 280px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta .btn-cta {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 400px) {
  .header-top-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 12px;
  }

  .header-top-right {
    width: 100%;
  }
     
}

/* Area We Serve section */
.area-serve {
  background: transparent;
  padding: 50px 0;
  color: var(--color-text);
}
.area-serve .area-serve-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.area-serve .card-caption {
  text-align: center;
  justify-content: center;
}

.area-serve .section-intro {
  text-align: center;
  margin: 0 auto 30px;
  color: var(--color-text-light);
  max-width: 820px;
}
.area-serve-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    text-align: left;
    padding: 40px 30px;
    background: #001b3d;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}
.area-serve-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.area-serve-grid li {
    margin-bottom: 8px;
    color: #ffffffb8;
    font-size: 1.25rem;
}
@media (max-width: 992px) {
  .area-serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .area-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .area-serve-grid {
    grid-template-columns: 1fr;
  }
  .area-serve .specialization-title {
    font-size: 1.5rem;
  }
}

/* Our Process Section */
.our-process-section {
  padding: 80px 0;
  background: var(--color-white);
}

.our-process-section .specialization-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
}

.process-steps-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  margin: 0 40px;
  flex: 1;
}

.process-step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #f0f4f8;
  border-radius: 50%;
  margin-bottom: 24px;
  flex-shrink: 0;
  color: #5a6c7d;
}

.process-step-circle svg {
    width: 48px;
    height: 48px;
    stroke: #c9a227;
}

.process-step-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Connecting curved dotted lines - red */
.process-steps-grid::before {
  content: '';
    position: absolute;
    top: -100px;
    left: 44px;
    right: 0;
    width: 90%;
    height: 330px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" preserveAspectRatio="none"><path d="M 0 100 Q 100 40 200 100 Q 300 160 400 100 Q 500 40 600 100 Q 700 160 800 100 Q 900 40 1000 100" stroke="%231b1f42" stroke-width="2.5" stroke-dasharray="4,4" stroke-linecap="round" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.process-steps-grid > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .process-step {
    margin: 0 20px;
  }

  .process-step-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .process-step-circle svg {
    width: 35px;
    height: 35px;
  }

  .process-step-title {
    font-size: 0.95rem;
  }

  .process-steps-grid::before {
        left: 95px;
        right: 0;
        width: 82%;
        height: 300px;
        top: -110px;
    }
}

@media (max-width: 992px) {
  .process-steps-grid {
    flex-wrap: wrap;
    gap: 50px 20px;
  }

  .process-steps-grid::before {
    height: 200px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" preserveAspectRatio="none"><path d="M 0 100 Q 100 40 200 100 Q 300 160 400 100 Q 500 40 600 100 Q 700 160 800 100 Q 900 40 1000 100" stroke="%231b1f42" stroke-width="2.5" stroke-dasharray="4,4" stroke-linecap="round" fill="none"/></svg>');
    top: -60px;
    left: 80px;
  }

  .process-step {
    width: calc(50% - 20px);
    margin: 0;
  }
}

/* @media (max-width: 600px) {
  .our-process-section {
    padding: 50px 0;
  }

  .our-process-section .specialization-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .process-steps-grid {
    flex-direction: column;
    gap: 40px;
  }

  .process-steps-grid::before {
    display: none;
  }

  .process-step {
    width: 100%;
    margin: 0;
  }

  .process-step-circle {
    width: 90px;
    height: 90px;
    margin-bottom: 16px;
  }

  .process-step-circle svg {
    width: 36px;
    height: 36px;
  }

  .process-step-title {
    font-size: 0.9rem;
  }
} */

@media (max-width: 768px) {

   .process-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
    position: relative;
  }

  /* Row 1 */
  .process-step:nth-child(1) { grid-column: 1; grid-row: 1; }
  .process-step:nth-child(2) { grid-column: 2; grid-row: 1; }

  /* Row 2 (reverse) */
  .process-step:nth-child(3) { grid-column: 2; grid-row: 2; }
  .process-step:nth-child(4) { grid-column: 1; grid-row: 2; }

  /* Row 3 */
  .process-step:nth-child(5) { grid-column: 1; grid-row: 3; }
  .process-step:nth-child(6) { grid-column: 2; grid-row: 3; }

  .process-step {
    margin: 0;
    width: 100%;
  }

.process-steps-grid::before {
    content: '';
    /* position: absolute; */
    top: 60px;
    left: 0;
    width: 100%;
    height: 615px;
    background-image: url("data:image/svg+xml;charset=UTF-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0MDAgNjAwJyBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSdub25lJz48cGF0aCBkPSdNIDgwIDAgTCAzMjAgMCBMIDMyMCAxNzAgTCA4MCAxNzAgTCA4MCAzNDAgTCAzMjAgMzQwJyBzdHJva2U9JyMxYjFmNDInIHN0cm9rZS13aWR0aD0nMi41JyBzdHJva2UtZGFzaGFycmF5PSc2LDYnIHN0cm9rZS1saW5lY2FwPSdyb3VuZCcgZmlsbD0nbm9uZScvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}


}

/* FAQ section */
.faq-section {
  padding: 56px 0;
  background: transparent;
}
 .faq-heading {
  max-width: 760px;
}
/*
.faq-heading .faq-sub {
  display: block;
  font-weight: 700;
} */
.faq-accordion {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  width: 100%;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid #e6eef8;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.faq-question:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.faq-question[aria-expanded="true"] {
  background: #f8faff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  border-radius: 10px 10px 0 0;
}
.faq-q {
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  flex: 1;
  font-family: 'Poppins';
}
.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.faq-question[aria-expanded="true"] .faq-toggle {
  background: var(--color-accent);
  transform: rotate(360deg);
}
.faq-answer {
  padding: 0 18px;
  background: var(--color-white);
  border: 1px solid #e6eef8;
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  display: block;
}
.faq-answer[aria-hidden="false"] {
  max-height: 500px;
  opacity: 1;
  padding: 18px 18px;
}
.faq-item .faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1e1f21;
}

@media (max-width: 600px) {
  .faq-accordion {
    padding: 0 12px;
  }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 60px 0;
    background: #f7fafc;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-choose-header .card-caption {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: capitalize;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-auto-rows: 1fr;
}

.why-card {
  background: var(--color-white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.why-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.why-card-title {
  margin: 15px 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}

.why-card-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #000000;
}

.why-card-summary {
  margin-top: 8px;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.2s;
}

.why-card-summary:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.why-card-expand {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-8px);
}
.why-card.is-open .why-card-expand {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-featured {
  display: flex;
  align-items: stretch;
}

.featured-card {
    width: 100%;
    background: #001b3d;
    color: #fff;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.featured-card-title {
  margin: 0 0 20px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  background: var(--color-accent);
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 4px rgba(201, 162, 39, 0.3);
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

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

.featured-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.featured-card-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #e0e7ff;
  position: relative;
}

.featured-card-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--color-accent);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .why-choose-cards {
    grid-template-columns: 1fr;
  }
  
  .featured-card {
    padding: 24px 20px;
  }
  
  .featured-card-title {
    font-size: 1.15rem;
  }
  .why-choose-header .card-caption {
    display: block !important;
  }
}


/* Page Heading Section */
.page-heading-section {
    padding: 60px 0 40px;
    background-color: #fff;
}

.page-heading {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 0;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
}
.post_main-image {
    width: 100%;
}
/*.post_main-image img {
    width: 100%;
}*/
section.privacy-sec.specilization-sec .privacy-outer {
    padding: 0px;
}

/* Page Heading Responsive */
@media (max-width: 768px) {
    .page-heading-section {
        padding: 40px 0 30px;
    }

    .page-heading {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-heading-section {
        padding: 30px 0 20px;
    }

    .page-heading {
        font-size: 28px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background-color: #f7fafc;
    min-height: calc(100vh - 200px);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 0 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-heading {
    margin-bottom: 50px;
}

.contact-heading .contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #daa127;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    text-transform:capitalize;
}

.contact-heading .contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    max-width: 415px;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details {
    flex: 1;
}

.contact-details .contact-label-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

.contact-details .contact-value {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.contact-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(50% - 12px);
    float: left;
    margin: 0px 6px;
}

.form-group.form-group-full {
    width: 100%;
}
.contact-form-box.form-group {
    display: flex;
    /* flex-direction: column; */
    gap: 8px;
    width: calc(50% - 12px);
    flex-wrap: wrap;
    float: inline-start;
    margin: 0px 6px;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #0000005e;
    font-family: "Poppins", sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #000;
    background: #fff;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f2b705;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
}

.recaptcha-wrapper {
    flex-shrink: 0;
}

.submit-btn {
  background: var(--color-accent);
  color: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: capitalize;
    align-self: flex-start;
    white-space: nowrap;
}

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

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Section Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-heading .contact-title {
        font-size: 36px;
    }
    .menu-menu-1-container ul {
    display: block;
    list-style: none;
    padding-left: 0;
}
.sidebar-cta {
    font-size: 12px;
}

}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-heading {
        margin-bottom: 40px;
    }

    .contact-heading .contact-title {
        font-size: 32px;
    }

    .contact-item {
        padding: 24px 0;
        max-width: 100%;
    }

    .contact-details .contact-value {
        font-size: 16px;
    }

    .form-group {
        width: 100%;
    }

    .form-submit-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .submit-btn {
        width: 100%;
    }
    .sidebar-cta {
    font-size: 12px;
}
.contact-form-box.form-group {
    width: 100%;
}
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-heading .contact-title {
        font-size: 28px;
    }

    .contact-item {
        flex-direction: column;
        gap: 12px;
    }

    .contact-icon {
        margin-top: 0;
    }

    .form-group {
        width: 100%;
    }

    .form-submit-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Contact Social Media Section */
.contact-social-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 30px;
    padding-top: 30px;
}

.follow-line {
    width: 120px;
    height: 1px;
    background-color: #00000033;
    margin-right: 12px;
    align-self: center;
}

.follow-text {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    font-family: "Poppins", sans-serif;
}

.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  color: var(--color-accent);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.2s ease;
    border-radius: 50%;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.contact-social-icon:hover {
  color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.contact-social-icon i {
    font-size: 20px;
}

.contact-social-icon span {
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

/* Force contact icons to use accent color (override inline SVG strokes/fills) */
.contact-icon svg path,
.contact-icon svg circle,
.contact-icon svg rect {
  stroke: var(--color-accent) !important;
  fill: transparent !important;
}

.contact-social-icon svg path,
.contact-social-icon svg circle,
.contact-social-icon svg rect {
  stroke: var(--color-accent) !important;
  fill: var(--color-accent) !important;
}
.sidebar-cta {
    font-size: 12px;
}
.contact-form-box.form-group {
    width: 100%;
}
}

/* Contact Social Media Responsive */
@media (max-width: 768px) {
    .contact-social-wrapper {
        gap: 16px;
        margin-top: 20px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    /* .contact-social-wrapper {
        margin-top: 15px;
        padding-top: 15px;
        flex-direction: column;
        align-items: flex-start;
    } */
     .follow-line {
        display: none;
     }

    .follow-text {
        font-size: 14px;
    }

    .contact-social-icons {
        gap: 12px;
    }

    .contact-social-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .contact-social-icon i {
        font-size: 18px;
    }
}

/* Map Section */
.map-section {
    width: 100%;
    background-color: #fff;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Map Section Responsive */
@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 350px;
    }
    .menu-menu-1-container ul {
    display: block;
    list-style: none;
    padding-left: 0;
}
}

/* Contact Page Smooth Expand/Collapse */
.contact-item {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 16px;
  transition: all 0.3s ease;
}

/*privacy policy strat*/

section.page-heading-section p {
    color: #000;
    width: 60%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0px;
    box-sizing: border-box;
}
.privacy-outer {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    padding: 68px 0px;
    color: #000;
    box-sizing: border-box;
}
.privacy-outer p {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0px;
    padding-bottom: 12px;
}
.privacy-outer h3 {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
    padding-bottom: 12px;
}
.privacy-outer p {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0px;
    padding-bottom: 12px;
}
.privacy-outer ul li {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.privacy-outer ul {
    padding-left: 20px;
    margin: 12px 0;
}

.privacy-outer a {
    color: var(--color-accent);
    text-decoration: underline;
    word-break: break-word;
}

/* Privacy and Terms Responsive */
@media (max-width: 768px) {
    .privacy-outer {
        width: 100%;
        padding: 40px 20px;
    }

    .privacy-outer h3 {
        font-size: 24px;
    }

    .privacy-outer p,
    .privacy-outer ul li {
        font-size: 15px;
        line-height: 24px;
    }

    section.page-heading-section p {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }
    .menu-menu-1-container ul {
    display: block;
    list-style: none;
    padding-left: 0;
}
}

@media (max-width: 480px) {
    .privacy-outer {
        padding: 30px 15px;
    }

    .privacy-outer h3 {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .privacy-outer p,
    .privacy-outer ul li {
        font-size: 14px;
        line-height: 22px;
    }

    .privacy-outer p {
        padding-bottom: 10px;
    }

    section.page-heading-section p {
        padding: 12px 15px;
        font-size: 13px;
    }

    .privacy-outer ul {
        padding-left: 18px;
    }
    .menu-menu-1-container ul {
    display: block;
    list-style: none;
    padding-left: 0;
}
}
/*privacy policy strat*/


.dream-form .file-drop-zone {
  position: relative;
  cursor: pointer;
}

.dream-form .file-input-hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/**/
.file-drop-zone {
  position: relative !important;
  cursor: pointer !important;
}

/* Target CF7 generated input */
.file-drop-zone input[type="file"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 10 !important;
}

/* Make content non-clickable so click passes to input */
.file-drop-content {
  pointer-events: none !important;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    height: 70%;
    margin-right: 0;
    margin-left: unset;
    text-align: left;
}
.hero-inner {
    position: relative;
    z-index: 1;
    margin-right: 0;
    background: #f1efef;
    padding: 5%;
    height: 100vh;
}
.hero-dark .hero-title, .hero-dark .hero-text {
    color: #000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-content p {
    color: #000;
}
.hero-dark {
    padding: 0;
    min-height: 100vh;
}
.hero-title {
    font-size: 32px !important;
    font-weight: 600;
}


/*video*/
.hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-video {
/*  position: absolute;*/
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.hero-video.loaded {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
}

/* Disable video on mobile */
@media (max-width: 1024px) {
  .hero-inner {
    height: auto;
}
}
@media (max-width: 991px) {
  .hero-video {
    display: none;
  }

}

@media (max-width: 768px) {
    .hero-inner {
        height: 65vh;
        width: 90%;
        margin: 0 auto;
    }
    .hero-title {
    font-size: 20px !important;
}
.dream-renovation-inner {
        flex-direction: column;
        text-align: left;
    }
    .dream-renovation-inner {
    min-height: 450px;
}
.why-card {
    width: 94%;
}
.why-choose-featured {
    width: 94%;
}
    .header-top-inner {
        align-items: center;
    }
    .header-top-right {
        display: flex;
        justify-content: center;
    }
    .sidebar-cta {
        margin: unset;
    }
}
a.developed-by {
    color: #c9a227;
	display:none;
}
.dream-renovation-content h3 {
    margin-top: 50px;
}

/* ===== HERO DEFAULT (DESKTOP) ===== */
.hero {
  background: #ffffff; /* White background on desktop */
  padding: 100px 0;
}

/* FLEX LAYOUT */
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

/* LEFT SIDE VIDEO */
.hero-left {
  width: 50%;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px; /* optional clean look */
}

/* RIGHT SIDE */
.hero-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ===== MOBILE VERSION ===== */
@media (max-width: 991px) {

  .hero {
    background-image: url('<?php the_field("hero_background_image"); ?>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
  }

  .hero-flex {
    flex-direction: column;
    gap: 30px;
  }

  .hero-left {
    display: none; /* Hide video on mobile */
  }

  .hero-right {
    text-align: center;
  }
.hero-right {
        width: 100%;
        text-align: left;
        background: #fff;
        padding: 40px;
    }
}
/* ===== DESKTOP ===== */
@media (min-width: 992px) {

  .hero {
    background-image: none !important;
    background: #ffffff;
  }

}
@media (max-width: 767px) {
    .hero-flex {
        flex-direction: column;
        gap: 9px;
        background: #fff;
    }
    .projects-specialize .project-card {
    min-height: auto;
}
h2.faq-heading.specialization-title {
    font-size: 30px;
}
}