@charset "utf-8";

:root {
  --main-color: #afa48c;
  --alt1-color: #333333;
  --alt2-color: #c1b59c;
  --alt3-color: #8a7d68;
  --text-color: #2a2a2a;
  --light-bg: #f9f7f4;
  --dark-bg: #1e1c1a;
}

/* ===== BASE ===== */
body, html {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--text-color);
  height: 100%;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 52px; }
h2 { font-size: 38px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 18px; }
h6 { font-size: 14px; }

p {
  line-height: 1.75;
  color: #5a5a5a;
}

a {
  color: var(--main-color);
  transition: 0.3s ease-in-out;
}
a:hover { color: var(--alt1-color); text-decoration: none; }
a:focus, a:active, a:hover {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* ===== UTILITY ===== */
.gold { color: var(--main-color); }
.text-white { color: #fff; }
.text-center { text-align: center; }

.img-boarder { border-radius: 20px; }

.subpage-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 130px;
  color: #fff;
  text-align: center;
}
.subpage-hero h1 { font-weight: 600; }

/* spacing helpers */
.pad-top-1x  { margin-top: 1em; }
.pad-top-2x  { margin-top: 2em; }
.pad-top-3x  { margin-top: 3em; }
.pad-top-4x  { margin-top: 4em; }
.pad-bottom-1x { margin-bottom: 1em; }
.pad-bottom-2x { margin-bottom: 2em; }
.pad-bottom-3x { margin-bottom: 3em; }
.pad-bottom-4x { margin-bottom: 4em; }
.pad-vert-1x { padding-top: 1em; padding-bottom: 1em; }
.pad-vert-2x { padding-top: 2em; padding-bottom: 2em; }
.pad-vert-3x { padding-top: 3em; padding-bottom: 3em; }
.pad-vert-4x { padding-top: 4em; padding-bottom: 4em; }
.margin-top-x    { margin-top: 0; }
.margin-top-1x   { margin-top: 1em; }
.margin-top-2x   { margin-top: 2em; }
.margin-bottom-1x { margin-bottom: 1em; }
.margin-bottom-2x { margin-bottom: 2em; }
.margin-vert-1x  { margin-top: 1em; margin-bottom: 1em; }
.margin-vert-2x  { margin-top: 2em; margin-bottom: 2em; }

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 32px;
  min-width: 200px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: 0.3s ease-in-out;
  border-radius: 50px;
}

.btn-main {
  color: #fff;
  background-color: var(--alt1-color);
  border-color: var(--alt1-color);
}
.btn-main:hover {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.btn-alt1 {
  color: #fff;
  background-color: var(--alt1-color);
  border-color: var(--alt1-color);
}
.btn-alt1:hover {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.btn-alt2 {
  color: #fff;
  background-color: var(--alt2-color);
  border-color: var(--alt2-color);
}
.btn-alt2:hover {
  color: #fff;
  background-color: var(--alt1-color);
  border-color: var(--alt1-color);
}

.btn-alt3 {
  color: var(--alt1-color);
  background-color: transparent;
  border: 1.5px solid var(--alt1-color);
}
.btn-alt3:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: #fff !important;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar-brand img { width: 200px; }

.nav-link {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--alt1-color) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--main-color) !important;
}
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 10px 0;
}
.dropdown-item {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  color: var(--alt1-color);
}
.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--main-color);
}

/* fixed nav on desktop */
@media (min-width: 992px) {
  #header-include { width: 100%; }
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: box-shadow 0.3s ease;
  }
  .navbar.scrolled {
    box-shadow: 0 3px 16px rgba(0,0,0,0.1);
  }
  body { padding-top: 88px; }
}
@media (max-width: 991px) {
  .navbar { position: static; }
  body { padding-top: 0; }
}

/* ===== HERO ===== */
.hero { width: 100%; padding: 0 0 0; }

.hero-content {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 100%),
    url(../images/luxury-home.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  padding: 60px 50px 0 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--alt2-color);
  margin-bottom: 12px;
}

.hero-card { 
  max-width: 500px; 
  padding: 0 0 90px 50px; 
}

.hero-card h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.hero-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 440px;
}

.button-box {
  position: relative;
  text-align: center;
  background-color: #fff;
  border-radius: 0 24px 0 0;
  padding: 22px 28px;
  margin: 0 -51px -1px 0;
  width: 32%;
  align-self: flex-start;
  z-index: 2;
}
.button-box::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at top right, transparent 30px, #fff 30px);
}
.button-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at top right, transparent 30px, #fff 30px);
}
.button-box .btn { min-width: 100%; }

/* ===== ABOUT SECTION ===== */
.hp-about { padding: 4em 0 2em; }

.about-us {
  padding: 32px;
  background-color: var(--light-bg);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.about-us h3 { margin-bottom: 1rem; }

.p-logo {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--alt3-color);
  margin-right: 14px;
  margin-top: 12px;
}
.p-logo i { margin-right: 4px; }

.stat-content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2em;
}

.stat-card {
  text-align: center;
  padding: 24px 20px 16px;
  background-color: var(--light-bg);
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.stat {
  position: relative;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--alt1-color);
  line-height: 1;
  margin-bottom: 8px;
}
.stat::after {
  position: absolute;
  font-family: 'Font Awesome 7 Free';
  color: var(--main-color);
  top: 8px;
  font-size: 16px;
  margin-left: 6px;
  font-weight: 900;
}
#stCard1 .stat::after { content: '\2b'; }
#stCard2 .stat::after { content: '\f587'; }
#stCard3 .stat::after { content: '\e00d'; }
#stCard4 .stat::after { content: '\e571'; }

.stat-card p {
  font-size: 0.83rem;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

/* ===== SERVICES SECTION ===== */
.hp-services { padding: 3em 0 2em; }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}
.services-header h2 { margin: 0; }

.more-services {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--alt1-color);
  text-decoration: none;
}
.more-services:hover { color: var(--main-color); }
.more-services i { margin-left: 4px; }

.service-card { margin-bottom: 2em; }

.service-top { overflow: hidden; border-radius: 16px; margin-bottom: 1rem; }
.service-top img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
  display: block;
}
.service-card:hover .service-top img { transform: scale(1.04); }

.service-card h4 { margin-bottom: 0.4rem; color: var(--alt1-color); }
.service-card p { font-size: 0.88rem; margin: 0; }

/* ===== PORTFOLIO SECTION ===== */
.hp-portfolio { padding: 3em 0 4em; }

.port-title { padding-right: 2em; margin-bottom: 1.5em; }
.port-title h2 { margin-bottom: 0.75rem; }

.port-item {
  position: relative;
  border-radius: 16px;
  min-height: 220px;
  color: #fff;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1em;
}
.port-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.project-tag {
  position: absolute;
  bottom: 20px;
  left: 0;
  padding: 6px 22px 6px 16px;
  background-color: var(--alt2-color);
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hp-portfolio .col-lg-4 {
  display: flex;
  flex-direction: column;
}
#project2, #project3 { flex: 1; }
.port-cta { margin-top: auto; }

#project1 {
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url(../images/luxury-home.jpg);
  min-height: 300px;
  flex: 1;
}
#project2 {
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url(../images/luxury-home.jpg);
  min-height: 200px;
}
#project3 {
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url(../images/luxury-home.jpg);
  min-height: 200px;
}
#project4 {
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url(../images/luxury-home.jpg);
  min-height: 300px;
  flex: 1;
}

.port-cta {
  text-align: center;
  padding: 16px 0;
}
.port-cta .btn { width: 100%; }

/* ===== WHY US SECTION ===== */
.hp-why {
  background-color: var(--light-bg);
  padding: 5em 0;
}

.why-content h2 { margin-bottom: 1.25rem; }
.why-content p { margin-bottom: 1rem; max-width: 480px; }

.why-image img {
  border-radius: 20px;
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

@media (max-width: 991px) {
  .why-content { margin-bottom: 2em; }
  .why-image img { height: 320px; }
}

/* ===== CTA / CONTACT FORM SECTION ===== */
.hp-cta {
  display: flex;
  min-height: 600px;
}

.cta-image-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-form-col {
  flex: 1;
  background-color: var(--dark-bg);
  display: flex;
  align-items: center;
  padding: 4em 3em;
  justify-content: space-around;
}

.cta-form-inner { width: 100%; max-width: 80%; }

.cta-form-inner h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.cta-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.cta-form-inner .form-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cta-form-inner .form-control,
.cta-form-inner .form-select {
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: border-color 0.2s, background-color 0.2s;
}
.cta-form-inner .form-control::placeholder { color: rgba(255,255,255,0.3); }
.cta-form-inner .form-control:focus,
.cta-form-inner .form-select:focus {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--main-color);
  box-shadow: none;
  color: #fff;
}
.cta-form-inner .form-select option { background-color: var(--dark-bg); color: #fff; }

.btn-cta-submit {
  background-color: #fff;
  color: var(--alt1-color);
  border: none;
  border-radius: 50px;
  padding: 13px 40px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 160px;
  transition: background-color 0.25s, color 0.25s;
}
.btn-cta-submit:hover {
  background-color: var(--main-color);
  color: #fff;
}

@media (max-width: 991px) {
  .hp-cta { flex-direction: column; }
  .cta-image-col { height: 300px; }
  .cta-form-col { padding: 3em 1.5em; }
  .cta-form-inner { max-width: 100%; }
}

/* ===== FAQ SECTION ===== */
.hp-faq { padding: 5em 0; }

.faq-intro h2 { margin-bottom: 1rem; }
.faq-intro p { max-width: 320px; }

.faq-list { padding-left: 1em; }

.accordion {
  border-bottom: 1px solid #e8e2d9;
  cursor: pointer;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--alt1-color);
  user-select: none;
  gap: 16px;
}
.accordion-header i {
  flex-shrink: 0;
  color: var(--main-color);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.accordion.active .accordion-header i { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion.active .accordion-panel { max-height: 300px; padding-bottom: 16px; }
.accordion-panel p { font-size: 0.9rem; margin: 0; }

@media (max-width: 991px) {
  .faq-intro { margin-bottom: 2em; }
  .faq-list { padding-left: 0; }
}

/* ===== FOOTER ===== */
#footerArea { background-color: #f5f5f2; }
#footerArea p { color: #5f5f5f; }

.footer-top {
  padding: 4em 0 2em;
  display: flex;
  flex-wrap: wrap;
}

.foot-logo img { width: 52%; margin: 0 0 20px; }

.footer-contact { word-wrap: break-word; }
.footer-contact i { font-size: 14px; }

.footer-links h3,
.footer-contact h3,
.footer-social h3,
.resources-links h3 {
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #888;
  font-weight: 700;
}

.footer-links ul, .resources-links ul { list-style: none; padding-left: 0; }
.footer-links ul { column-count: 2; }

.footer-contact a,
.footer-links a,
.resources-links a { color: #5f5f5f; font-size: 14px; }

.footer-contact a:hover,
.footer-links a:hover,
.resources-links a:hover { color: var(--main-color); }

.footer-social { text-align: center; }
.footer-social hr { border-top: 1px solid #ddd; width: 92%; }
.social-links { padding-top: 15px; }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #5f5f5f;
  border: 1px solid #bbb;
  margin: 5px 4px 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.social-links a:hover { color: var(--main-color); border-color: var(--main-color); }

.footer-copy { padding-top: 25px; font-size: 12px; text-align: center; }
.footer-copy a { color: #5f5f5f; }
.footer-copy a:hover { color: var(--main-color); }

/* ===== SCROLL ANIMATIONS ===== */
.js-scroll { opacity: 0; }
.js-scroll.scrolled { opacity: 1; }

.scrolled.fade-in       { animation: fade-in 0.8s ease-in-out both; }
.scrolled.fade-in-bottom { animation: fade-in-bottom 0.8s ease-in-out both; }
.scrolled.slide-left    { animation: slide-in-left 0.8s ease-in-out both; }
.scrolled.slide-right   { animation: slide-in-right 0.8s ease-in-out both; }

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fade-in-bottom {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes slide-in-left {
  from { transform: translateX(-50px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slide-in-right {
  from { transform: translateX(50px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .button-box { width: 48%; }
}
@media (max-width: 767px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero-card h1 { font-size: 2.2rem; }
  .button-box { width: 100%; border-radius: 0 0 24px 24px; background-color: #f9f7f4; }
  .button-box::before, .button-box::after { display: none; }
  .hero-content { padding: 0; }
  .about-us { margin-bottom: 1.2em;}
  .services-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .foot-logo img { width: 40%; margin: 0 auto 20px; }
  #footerArea { text-align: center; }
  #footerArea a { text-decoration: none; }
  .footer-top { padding: 2em 0 0; flex-direction: column; flex-wrap: nowrap;}
  .footer-links ul { column-count: 1; }
  .footer-copy { padding-top: 2em; }
}
@media (max-width: 574px) {
  .hero .row { margin-right: 0; margin-left: 0; }
  .hp-cta { flex-direction: column; }
}
