/* General Styles */
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FAF0E6; /* Warm Cream */
  color: #2C3E50; /* Deep Charcoal */
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .container {
      max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
      max-width: 768px;
      padding-left: 32px;
      padding-right: 32px;
  }
}
@media (min-width: 1024px) {
  .container {
      max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
      max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
      max-width: 1536px;
  }
}

/* Header & Navigation */
header {
  background-color: transparent;
  color: #FFFFFF;
  padding: 1em 0;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}
header.scrolled {
  background-color: rgba(44, 62, 80, 0.95);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
  padding: 0 32px;
  position: relative;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 64px;
}

.logo img {
  background: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 1px;
}


nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-top: 50px;
  margin-right: 90px;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.3s ease, transform 0.3s ease;
  padding-bottom: 5px; /* Space for underline effect */
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #B08D57; /* Muted Gold */
  transition: width 0.3s ease, left 0.3s ease;
}

nav ul li a:hover::after, nav ul li a.active::after {
  width: 100%;
  left: 0;
}

nav ul li a:hover {
  color: #B08D57;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
  display: none;
  font-size: 1.5em;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 2000;
  pointer-events: auto;
  position: relative;
}

/* New Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,62,80,0.98);
  z-index: 3000;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 70px;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 0; left: 0;
  height: 60px;
  padding: 0 24px;
}
.mobile-menu-close {
  font-size: 2.5em;
  color: #fff;
  cursor: pointer;
  padding: 0 0.2em;
  line-height: 1;
  background: none;
  border: none;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}
.mobile-menu ul li {
  margin: 1.2em 0;
}
.mobile-menu ul li a {
  color: #fff;
  font-size: 1.4em;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover {
  color: #B08D57;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  z-index: 3100;
  background: none;
  border: none;
  margin-left: 1em;
  margin-right: 1em;
  position: relative;
}

/* Responsive: Show mobile menu only on mobile */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: none;
  }
  .mobile-menu.open {
    display: flex;
  }
  nav ul {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  nav ul {
    display: flex !important;
  }
}

/* Main Content Sections */
main {
  padding-top: 0;
}

section {
  padding: 5em 2em;
  margin-bottom: 0; /* Remove bottom margin for seamless flow or add if preferred */
  background-color: #FFFFFF;
}

#experiences {
  margin-bottom: 5em;
  padding-top: 2em;
}

/* Add extra space below Our Process section */
#process {
  margin-bottom: 5em;
  background-image: url('../images/process.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

/* Full-width sections with edge padding */
#projects,
#process,
#about {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

section:nth-child(even) {
  background-color: #FAF0E6; /* Warm Cream for alternating sections */
}

section h1, section h2 {
  font-family: 'Playfair Display', serif;
  color: #2C3E50; /* Deep Charcoal */
  text-align: center;
  margin-bottom: 0.5em;
}

section h1 {
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.2;
}

h2, .about-title, section h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
  font-size: 2rem;
  font-weight: 700;
  color: #A67C52 !important;
  margin-bottom: 1.2em;
  line-height: 1.13;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.appear {
opacity: 1;
transform: translateY(0);
}

.service-icon {
stroke: #2563eb !important;
color: #2563eb !important;
width: 48px !important;
height: 48px !important;
min-width: 48px;
min-height: 48px;
max-width: 48px;
max-height: 48px;
margin-bottom: 0.7em;
display: block;
margin-left: auto;
margin-right: auto;
}

@media (max-width: 900px) {
  h2, .about-title, section h2 {
      font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  h2, .about-title, section h2 {
      font-size: 1.15rem;
  }
}

@media (max-width: 900px) {
  h2 {
      font-size: 2rem;
  }
}
@media (max-width: 600px) {
  h2 {
      font-size: 1.5rem;
  }
}

section p {
  font-size: 1.1em;
  color: #4A4A4A; /* Darker grey for better readability */
  margin-bottom: 1.5em;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Alternating alignment for introduction section */
.intro-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  background: rgba(247, 227, 198, 0.32);
  border-left: 4px solid #A67C52;
  padding: 1.2em 2em 1.2em 1.5em;
  border-radius: 0 18px 18px 0;
}

.intro-right {
  text-align: right;
  margin-right: 0;
  margin-left: auto;
  background: rgba(176, 141, 87, 0.10);
  border-right: 4px solid #A67C52;
  padding: 1.2em 1.5em 1.2em 2em;
  border-radius: 18px 0 0 18px;
}

/* On small screens, stack and center for readability */
@media (max-width: 700px) {
  .intro-left,
  .intro-right {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: none;
    border-radius: 12px;
    padding: 1em 0.7em;
    background: rgba(247, 227, 198, 0.18);
  }
}

/* Hero Section Specifics */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; /* For overlay */
  padding: 0;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text contrast */
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2em;
}

#home h1 {
  font-size: 4.5em;
  margin-bottom: 0.3em;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
  color: #FFFFFF;
}

#home p {
  font-size: 1.6em;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  margin-bottom: 2.5em;
  color: #F8F8F8;
}

.cta-button {
  background-color: #B08D57; /* Muted Gold */
  color: #FFFFFF;
  padding: 0.8em 2em;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #e53935; /* Red on hover */
  transform: translateY(-2px);
}

/* Project Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2em;
  padding-bottom: 3em; /* Extra space at the bottom for last row of tiles */
}

.project-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.project-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.project-item-content {
  padding: 1.5em;
}

.project-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2C3E50;
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.4em;
}

.project-item p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0;
}

/* Services Section */
#services ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  text-align: center;
}

#services .service-list-item {
  background: linear-gradient(135deg, #FAF0E6 80%, #f7e3c6 100%);
  box-shadow: 0 6px 24px rgba(166,124,82,0.08);
  border: 1.5px solid #e2cfa7;
  padding: 2em;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

#services .service-list-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.service-points {
  list-style: none;
  padding-left: 0;
  margin-top: 1.2em;
  margin-bottom: 0;
}

.service-point {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1em !important;
  color: #344350 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.25em !important;
  box-shadow: none !important;
  line-height: 1 !important;
  min-height: 0 !important;
}

.service-heading {
  display: block;
  color: #A67C52;
  font-size: 1.18em;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  margin-bottom: 1.2em;
  margin-top: 0.2em;
  font-weight: 500;
  text-align: center;
}

.service-check svg {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  min-height: 0;
  min-width: 0;
  height: 1em;
  width: 1em;
}

.service-check svg {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  min-height: 0;
  min-width: 0;
  height: 1em;
  width: 1em;
}

#services h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #B08D57;
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

/* Process Section (New Timeline Style) */
:root {
--color-primary: #9a8a62;
--color-secondary: #2c3e50;
--color-light: #f8f9fa;
--color-dark: #212529;
--color-gray: #6c757d;
--font-heading: 'Playfair Display', serif;
--font-body: 'Raleway', 'Montserrat', 'Lato', sans-serif;
}
.process-section {
background-image: url('../images/process.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
position: relative;
z-index: 1;
padding: 3em 0 3em 0;
background-color: transparent;
}

.process-section::before {
content: '';
position: absolute;
inset: 0;
background: rgba(255,255,255,0.48);
z-index: 1;
pointer-events: none;
}
.process-section > * {
position: relative;
z-index: 2;
}
.process-timeline {
position: relative;
max-width: 900px;
margin: 0 auto;
padding: 0;
display: flex;
flex-direction: column;
}
.process-timeline::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 2px;
background-color: #e9ecef;
transform: translateX(-50%);
}
.process-step {
position: relative;
width: 100%;
display: flex;
align-items: flex-start;
margin-bottom: 0;
justify-content: center;
align-items: center;
}
.process-step:last-child {
margin-bottom: 0;
}
.process-step .step-content,
.process-step .empty-side {
width: 50%;
min-width: 0;
max-width: none;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
}
.process-step:nth-child(odd) .step-content {
align-items: flex-end;
text-align: right;
padding-right: 180px;
}
.process-step:nth-child(even) .step-content {
align-items: flex-start;
text-align: left;
padding-left: 180px;
}
.process-step .empty-side {
pointer-events: none;
user-select: none;
}
.process-step:nth-child(odd) .step-content {
align-items: flex-end;
text-align: right;
}
.process-step:nth-child(even) .step-content {
align-items: flex-start;
text-align: left;
}
.process-step:nth-child(odd) .step-description {
text-align: right;
}
.process-step:nth-child(even) .step-description {
text-align: left;
}
.step-number {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 24px;
height: 24px;
background-color: var(--color-primary);
border-radius: 50%;
z-index: 2;
}
.step-number::before {
content: '';
position: absolute;
top: -4px;
left: -4px;
width: 32px;
height: 32px;
border-radius: 50%;
border: 1px solid var(--color-primary);
}
.step-label {
font-size: 16px;
font-weight: 500;
color: var(--color-primary);
margin-bottom: 10px;
}
.step-title {
font-size: 28px;
margin-bottom: 15px;
color: var(--color-secondary);
font-family: var(--font-heading);
font-weight: 700;
}
.step-description {
font-size: 16px;
color: var(--color-gray);
line-height: 1.6;
}
.process-cta {
text-align: center;
margin-top: 60px;
margin-bottom: 2.5em;
}
.btn-primary {
display: inline-block;
padding: 12px 30px;
font-family: var(--font-body);
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
border: none;
border-radius: 0;
cursor: pointer;
transition: all 0.3s ease;
background-color: var(--color-primary);
color: white;
text-decoration: none;
}
.btn-primary:hover {
background-color: var(--color-secondary);
color: white;
}
@media (max-width: 1024px) {
.process-timeline::before {
  left: 30px;
}
.process-step {
  justify-content: flex-start !important;
}
.process-step:nth-child(odd) .step-content,
.process-step:nth-child(even) .step-content {
  width: calc(100% - 60px);
  margin-left: 60px;
  padding-left: 20px;
  padding-right: 0;
  text-align: left;
}
.step-number {
  left: 30px;
}
}
@media (max-width: 768px) {
h2.section-title {
  font-size: 32px;
}
.process-timeline {
  padding: 20px 0;
}
.process-section {
  padding: 60px 0;
}
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 1100px;
  margin: 3em auto 0 auto;
  min-height: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 32px rgba(44,62,80,0.10);
  display: flex;
  align-items: center;
  padding: 0 2em 2em 2em;
  height: 220px;
}
.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s;
  width: 100%;
  height: 100%;
}
.testimonial-slide.active {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}
.testimonial-carousel blockquote {
  display: flex;
  align-items: center;
  gap: 2.5em;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  width: 100%;
}

.testimonial-client-name {
  min-width: 180px;
  white-space: nowrap;
  text-align: right;
  margin-left: 2em;
  font-weight: 700;
  font-size: 1.1em;
  align-self: flex-end;
}
.testimonial-carousel blockquote img {
  width: 260px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  margin-bottom: 0;
  display: block;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
}
.testimonial-carousel .testimonial-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-carousel .testimonial-stars {
  color: #B08D57;
  font-size: 1.3em;
  margin-bottom: 0.5em;
  letter-spacing: 2px;
}
.testimonial-carousel blockquote p {
  font-style: italic;
  font-size: 1.18em;
  color: #344350;
  margin-bottom: 1.2em;
  text-align: left;
  line-height: 1.6;
}
.testimonial-carousel .testimonial-client {
  font-weight: 700;
  font-size: 1.15em;
  color: #2C3E50;
  margin-bottom: 0.1em;
}
.testimonial-carousel .testimonial-location {
  color: #B08D57;
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  color: #344350;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: #B08D57;
  color: #fff;
}
.testimonial-prev {
  left: -60px;
}
.testimonial-next {
  right: -60px;
}
.testimonial-dots {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  margin-top: 0;
  margin-left: 1em;
  gap: 10px;
  position: absolute;
  right: 2em;
  top: 0;
  bottom: 0;
}
.testimonial-dots .dot {
  display: block;
  width: 14px;
  height: 14px;
  margin: 7px 0;
  background: #b0b8c1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.testimonial-dots .dot.active {
  background: #B08D57;
}
@media (max-width: 1200px) {
  .testimonial-carousel {
      max-width: 98vw;
      padding: 0 1em;
  }
  .testimonial-prev {
      left: 0;
  }
  .testimonial-next {
      right: 0;
  }
}
@media (max-width: 900px) {
  .testimonial-carousel {
      flex-direction: column;
      height: auto;
      min-height: 0;
      padding: 1em 0.5em;
  }
  .testimonial-carousel blockquote {
      flex-direction: column;
      align-items: center;
      gap: 1.2em;
  }
  .testimonial-carousel blockquote img {
      width: 90vw;
      max-width: 320px;
      height: 120px;
  }
}
@media (max-width: 600px) {
  .testimonial-carousel {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0.5em 0.2em 2em 0.2em;
      border-radius: 0;
      overflow-x: hidden;
      position: relative;
  }
  .testimonial-carousel blockquote {
      flex-direction: column;
      align-items: center;
      gap: 1em;
      width: 100%;
      box-sizing: border-box;
      padding: 0;
      margin: 0;
      overflow: visible;
  }
  .testimonial-carousel blockquote img {
      width: 100%;
      max-width: 100%;
      height: 90px;
      object-fit: cover;
      display: block;
      border-radius: 6px;
      margin: 0 auto;
  }
  .testimonial-carousel .testimonial-content {
      padding: 0 0.5em;
      width: 100%;
      box-sizing: border-box;
      word-break: break-word;
  }
  .testimonial-slide,
  .testimonial-slide.active {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      overflow: visible;
  }
  .testimonial-carousel {
      text-align: center;
  }
  .testimonial-controls-mobile {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 1.2em;
      gap: 0.5em;
      width: 100%;
  }
  .testimonial-arrows-mobile {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 1.2em;
      width: 100%;
  }
  .testimonial-prev,
  .testimonial-next {
      position: static;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      width: 36px;
      height: 36px;
      font-size: 1.2em;
      box-shadow: 0 2px 8px rgba(44,62,80,0.10);
      background: #fff;
      color: #344350;
      border-radius: 50%;
      vertical-align: middle;
      transform: none;
  }
  .testimonial-dots {
      display: flex !important;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      position: static;
      margin: 0.5em 0 0 0;
      gap: 8px;
      height: auto;
      width: 100%;
  }
  .testimonial-carousel > .testimonial-prev,
  .testimonial-carousel > .testimonial-next,
  .testimonial-carousel > .testimonial-dots {
      position: static;
      display: none !important;
      width: auto;
      margin: 0;
  }
}

/* About Us Section - New Mosaic Layout */
.about-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 2.5em 2em;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}
.container.about-grid {
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.about-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5em;
  width: 100%;
  max-width: 540px;
  height: 520px;
}
.about-image-tall img,
.about-image-short img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: #eee;
  display: block;
}
.about-grid-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-grid-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-features-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em 2.5em;
  margin-top: 2.5em;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
}
.about-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2em;
  width: 100%;
  max-width: 520px;
  height: 420px;
}
.about-image-tall img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: #eee;
  display: block;
}
.about-image-short img {
  width: 100%;
  height: 100%;
  min-height: 80px;
  max-height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: #eee;
  display: block;
}
@media (max-width: 1100px) {
  .about-grid {
      grid-template-columns: 1fr;
      gap: 2em 0;
  }
  .about-grid-right {
      margin-top: 2em;
      max-width: 100%;
  }
  .about-image-mosaic {
      max-width: 100%;
      height: auto;
  }
}
@media (max-width: 700px) {
  .about-title {
      font-size: 2em;
  }
  .about-features-mosaic {
      grid-template-columns: 1fr;
  }
  .about-image-mosaic {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(4, 1fr);
      gap: 1em;
  }
  .about-image-tall img,
  .about-image-short img {
      height: 100px;
      max-height: 120px;
  }
}
.about-label {
  color: #B08D57;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 1px;
  margin-bottom: 0.7em;
  display: inline-block;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8em;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.7em;
  line-height: 1.1;
}
.about-desc {
  font-size: 1.15em;
  color: #4A4A4A;
  margin-bottom: 1.2em;
  text-align: left;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em 2.5em;
  margin-top: 2.5em;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
}
.about-icon {
  font-size: 1.7em;
  color: #B08D57;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.about-feature-desc {
  font-size: 1em;
  color: #6b6b6b;
  margin-top: 0.2em;
}
.about-right {
  flex: 0 0 540px;
  min-width: 420px;
  max-width: 540px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2em;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 540px;
  align-items: stretch;
}
.about-image-grid img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 260px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: #eee;
  display: block;
}
@media (max-width: 1100px) {
  .about-flex {
      flex-direction: column;
      gap: 2em;
  }
  .about-right {
      max-width: 100%;
  }
  .about-image-grid img {
      height: 140px;
  }
}
@media (max-width: 700px) {
  .about-title {
      font-size: 2em;
  }
  .about-image-grid img {
      height: 100px;
  }
  .about-features {
      grid-template-columns: 1fr;
  }
}
#about p {
  text-align: justify;
}

/* Contact Section Two-Column Layout */
.contact-grid {
  display: flex;
  gap: 3em;
  margin-top: 2em;
  margin-bottom: 2em;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1 1 320px;
  min-width: 300px;
  max-width: 420px;
}
.contact-form-panel {
  flex: 1 1 380px;
  min-width: 320px;
  background: #f7f5f1;
  border-radius: 8px;
  padding: 2em 0.5em 1.5em 0.5em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-top: 0.5em;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 1.2em;
}
.contact-card {
  display: flex;
  align-items: center;
  background: #f5f6f7;
  border-radius: 8px;
  padding: 1.1em 1.3em;
  margin-bottom: 1.1em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  gap: 1.1em;
}
.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.office-hours {
  margin-top: 2.2em;
}
.office-hours h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3em;
  margin-bottom: 0.7em;
}
.office-hours table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05em;
}
.office-hours td {
  padding: 0.4em 0.2em;
  border-bottom: 1px solid #ececec;
  color: #2C3E50;
}
.office-hours tr:last-child td {
  border-bottom: none;
}
.office-hours td:last-child {
  text-align: right;
  color: #6b6b6b;
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  max-width: 100%;
  margin: 2em 0 0 0;
}

.form-group {
  margin-bottom: 1.5em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid #D0C7BE; /* Lighter border */
  border-radius: 5px;
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  box-sizing: border-box;
}

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

.contact-form button {
  display: block;
  margin: 1em auto 0 auto;
  background-color: #B08D57;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.9em 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: background 0.3s, box-shadow 0.3s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-form button:hover {
  background-color: #a0844a;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4em;
  font-weight: 500;
  color: #2C3E50;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
}

/* Footer */
footer,
.custom-footer {
  background-color: #2C3E50;
  color: #EAEAEA;
  padding: 2.5em 0 1.2em 0;
  margin-top: 2.5em;
  font-family: 'Lato', 'Montserrat', sans-serif;
  font-size: 1em;
  letter-spacing: 0.01em;
}

.custom-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5em;
  margin-bottom: 2.5em;
  justify-items: stretch;
  align-items: stretch;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.2em;
  font-size: 1.5em;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
}

.footer-col h4 {
  font-size: 1.1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1.2em;
  color: #fff;
}

.footer-highlight {
  color: #A67C52;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-right: 0.2em;
}

.footer-desc {
  color: #d1d5db;
  font-size: 1em;
  margin-bottom: 1.5em;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 1em;
  margin-top: 0.5em;
  align-items: center;
}

.footer-social-link {
  color: #b0b8c1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  line-height: 1;
  position: relative;
}

.footer-social-link:hover {
  color: #A67C52;
  background: none;
  box-shadow: none;
}

.footer-social-link:hover::after {
  content: "Coming Soon";
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  background: #2C3E50;
  color: #fff;
  font-size: 0.95em;
  padding: 0.3em 0.8em;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  z-index: 10;
  pointer-events: none;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.5em;
  margin-left: 0;
  padding-left: 0;
}

.footer-col:nth-child(2) .footer-links {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.footer-col:nth-child(2) {
  align-items: center;
}
.footer-col:nth-child(2) h4 {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.footer-links a:hover {
  color: #A67C52;
}

.footer-address {
  color: #d1d5db;
  font-style: normal;
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 0.5em;
}

.footer-phone {
  padding-top: 0.5em;
}

.footer-divider {
  border-top: 1px solid #3d4d5c;
  margin: 1.2em 0 1em 0;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.footer-copyright {
  color: #b0b8c1;
  font-size: 0.95em;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5em;
}

.footer-bottom-links a {
  color: #b0b8c1;
  font-size: 0.95em;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #A67C52;
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 1100px) {
  .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2em 1.5em;
  }
}
@media (max-width: 700px) {
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 2em 0;
  }
  .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.7em;
  }
}
@media (max-width: 480px) {
  .custom-footer .container {
      padding: 0 8px;
  }
  .footer-col h3,
  .footer-col h4 {
      font-size: 1.1em;
  }
  .footer-bottom-links {
      gap: 0.7em;
  }
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .about-flex {
      flex-direction: column;
      gap: 2em;
  }
  .about-right {
      max-width: 100%;
  }
  .about-image-grid img {
      height: 140px;
  }
  .container {
      padding-left: 12px;
      padding-right: 12px;
  }
}
@media (max-width: 992px) {
  .contact-grid {
      flex-direction: column;
      gap: 2em;
  }
  .contact-form-panel {
      margin-top: 0;
  }
  #home h1 {
      font-size: 2.2em;
  }
  #home p {
      font-size: 1.1em;
  }
  section h1 {
      font-size: 2em;
  }
  section h2 {
      font-size: 1.5em;
  }
  .about-title {
      font-size: 1.5em;
  }
  .about-image-grid img {
      height: 100px;
  }
  .about-features {
      grid-template-columns: 1fr;
  }
  .gallery {
      grid-template-columns: 1fr;
  }
  .project-item img {
      height: 180px;
  }
  .testimonial-carousel {
      max-width: 98vw;
  }
  .about-image-grid {
      min-height: 200px;
  }
  .container {
      padding-left: 8px;
      padding-right: 8px;
  }
}
@media (max-width: 768px) {
  nav .container {
      flex-direction: column;
  }
  nav ul {
      flex-direction: column;
      align-items: center;
      width: 100%;
      display: none !important; /* Hidden by default, shown by JS */
  }
  nav ul.active {
      display: flex !important;
  }
  nav ul li {
      margin: 10px 0;
  }
  .menu-toggle {
      display: block;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
  }
  #home h1 {
      font-size: 1.5em;
  }
  #home p {
      font-size: 1em;
  }
  section h1 {
      font-size: 1.2em;
  }
  section h2 {
      font-size: 1em;
  }
  .gallery {
      grid-template-columns: 1fr;
  }
  .project-item img {
      height: 120px;
  }
  .about-title {
      font-size: 1.1em;
  }
  .about-image-grid img {
      height: 70px;
  }
  .about-features {
      grid-template-columns: 1fr;
  }
  .testimonial-carousel {
      max-width: 100vw;
  }
  .about-image-grid {
      min-height: 100px;
  }
  .container {
      padding-left: 4px;
      padding-right: 4px;
  }
}
@media (max-width: 480px) {
  #home h1 {
      font-size: 2.2em;
  }
  #home p {
      font-size: 1em;
  }
  section h1 {
      font-size: 1.8em;
  }
  section h2 {
      font-size: 1.6em;
  }
  .project-item img {
      height: 200px;
  }
  .about-title {
      font-size: 0.9em;
  }
  .about-image-grid img {
      height: 40px;
  }
  .about-features {
      grid-template-columns: 1fr;
  }
  .testimonial-carousel {
      max-width: 100vw;
  }
  .about-image-grid {
      min-height: 40px;
  }
  .container {
      padding-left: 2px;
      padding-right: 2px;
  }
  /* Utility: Hide on mobile */
  .d-mobile-none {
      display: none !important;
  }
}

@media (max-width: 768px) {
  nav .container {
      flex-direction: column;
  }
  nav ul {
      flex-direction: column;
      align-items: center;
      width: 100%;
      display: none; /* Hidden by default, shown by JS */
  }
  nav ul.active {
      display: flex !important;
  }
  nav ul li {
      margin: 10px 0;
  }
  .menu-toggle {
      display: block;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
  }
  #home h1 {
      font-size: 2.8em;
  }
  #home p {
      font-size: 1.2em;
  }
  section h1 {
      font-size: 2.2em;
  }
  section h2 {
      font-size: 1.8em;
  }
  .gallery {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  #home h1 {
      font-size: 2.2em;
  }
  #home p {
      font-size: 1em;
  }
  section h1 {
      font-size: 1.8em;
  }
  section h2 {
      font-size: 1.6em;
  }
  .project-item img {
      height: 200px;
  }
}

/* Gold Card for Process Steps */
.gold-card {
  background: rgba(247, 227, 198, 0.72); /* lighter semi-transparent gold */
  border-radius: 18px;
  padding: 2em 2.2em 1.5em 2.2em;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  margin-bottom: 1.5em;
  color: #2C3E50;
  backdrop-filter: blur(2px);
  border: 1.5px solid rgba(247,227,198,0.25);
}

/* Spinner for contact form loading */
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
.spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid #e0cfa7;
  border-top: 3px solid #A67C52;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  vertical-align: middle;
}
