/* ==================== */
/* VARIABLES & DEFAULTS */
/* ==================== */

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #16213e;
  --accent-color: #e4ca36;
  --text-color: #333;
  --light-text: #666;
  --light-bg: #f9f9f9;
  --border-color: #eee;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-elegant: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --font-playfair: 'Playfair Display', serif;
  --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--light-bg);
  line-height: 1.6;
  
}

/* ==================== */
/* TYPOGRAPHY */
/* ==================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-playfair);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 6vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

p {
  color: var(--light-text);
  line-height: 1.8;
}

/* ==================== */
/* NAVIGATION */
/* ==================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1030;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar-content {
  display:contents;
  justify-content:left;
  align-items: center;
  padding: 0rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 20px;  
}

.navbar-brand-title {
  font-size: 1.5rem;
  font-family: var(--font-playfair);
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.15rem;
  color: var(--accent-color);
  font-weight: 600;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  list-style: none;
  padding-right: 20px;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .navbar-content {
    padding: 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    z-index: 1020;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ==================== */
/* BUTTONS */
/* ==================== */

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: rgb(236, 234, 72);
  color: rgb(53, 52, 52);
}

.btn-primary:hover {
  background: rgba(112, 112, 111, 0.9);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-color);
  color: rgb(44, 43, 43);
}

.btn-accent:hover {
  background: rgba(76, 77, 76, 0.9);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-color);
  color: var(--text-color);
}

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

.btn-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Legacy filter button styles - kept for backward compatibility */
.filter-btn.active {
    background-color: var(--accent-color); 
    color: var(--primary-color) !important;
    border-color: var(--accent-color); 
}
.filter-btn:not(.active) {
    background-color: var(--white);
    border: 2px solid var(--text-color); 
    color: var(--text-color);
}

.filter-btn:not(.active):hover {
    background-color: rgba(228, 202, 54, 0.1); 
    color: var(--text-color) !important; 
}

/* ==================== */
/* HERO SECTION */
/* ==================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 1rem;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(233, 220, 44, 0.15);
  border: 1px solid rgba(238, 255, 0, 0.3);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 10vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons .btn {
  min-width: 200px;
  justify-content: center;
}

/* ==================== */
/* CONTACT PAGE */
/* ==================== */

.contact-hero {
  padding: 8rem 2rem 4.5rem;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, var(--light-bg) 100%);
}

.contact-hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-hero-content p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-info-grid {
  gap: 2.5rem;
}

.contact-card {
  text-decoration: none;
  color: inherit;
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  min-height: 220px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(228, 202, 54, 0.15);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--primary-color);
}

.contact-form-section {
  background: #fffaf2;
}

.contact-form-card,
.contact-map-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.contact-form-card h2,
.contact-map-card h2 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.contact-form-subtitle {
  color: var(--light-text);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.contact-form-card .form-input,
.contact-form-card .form-textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.95);
}

.contact-form-card .form-input:focus,
.contact-form-card .form-textarea:focus {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.contact-form-card .btn {
  margin-top: 0.5rem;
}

.contact-map-wrapper {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.contact-map-wrapper iframe {
  border: none;
  display: block;
}

/* ==================== */
/* ABOUT HERO */
/* ==================== */

.about-hero {
  padding: 8rem 2rem 5rem;
  background: linear-gradient(135deg, #faf7ef 0%, #fefcf8 60%, rgba(228, 202, 54, 0.08) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75) 0, transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.15) 0, transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.about-hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-hero-content p {
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 1.5rem;
  line-height: 1.8;
}

.about-hero-divider {
  width: 120px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

.scroll-indicator-icon {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator-dot {
  width: 4px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scroll-bounce {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== */
/* SECTIONS */
/* ==================== */

section {
  padding: 4rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ==================== */
/* ABOUT PAGE */
/* ==================== */

.about-story-section {
  background: var(--white);
}

.about-story {
  align-items: center;
}

.about-story-text h2 {
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

.about-story-text p {
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--light-text);
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-image {
  height: 440px;
}

.about-story-image img {
  object-position: center;
}

.mission-card {
  border: none;
  border-radius: 1.25rem;
  padding: 2.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border-top: 4px solid rgba(212, 175, 55, 0.5);
  background: #fffdf6;
}

.mission-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mission-card p {
  margin: 0;
  line-height: 1.75;
}

.mission-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  color: #b68b2d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.core-values-heading {
  margin-bottom: 2.5rem;
}

.core-values-grid {
  gap: 2.25rem;
}

.core-value-card {
  min-height: 280px;
  padding: 2.5rem 1.75rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.core-value-icon {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
}

.core-value-card .card-title {
  color: var(--primary-color);
}

.core-value-card .card-text {
  line-height: 1.7;
}

.process-grid {
  position: relative;
  gap: 1.5rem;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 72px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 0;
  display: none;
}

@media (min-width: 992px) {
  .process-grid::before {
    display: block;
  }
}

/* ==================== */
/* STATS SECTION */
/* ==================== */

.stats-section {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.05) 0%, rgba(233, 69, 96, 0.05) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  text-align: center;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.3s; }

.stat-number {
  font-size: clamp(2.25rem, 8vw, 3.25rem);
  font-family: var(--font-playfair);
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-number::after {
  content: "+";
  margin-left: 0.1em; /* Small space after the number */
  font-family: var(--font-sans); /* Use a font that definitely renders the + */
  color: var(--accent-color);
  font-weight: 100;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-text);
}

.stats-quote {
  text-align: center;
  font-size: 1.1rem;
  font-family: var(--font-playfair);
  font-style: italic;
  color: var(--text-color);
}

/* ==================== */
/* ABOUT PREVIEW SECTION */
/* ==================== */

.about-preview-text {
  padding-left: 20px;
}

.about-preview-text h2 {
  margin-bottom: 1.25rem !important;
}

.about-preview-text p {
  line-height: 1.7;
  margin-bottom: 1.25rem !important;
}

.about-preview-buttons {
  gap: 1rem !important;
  align-items: center;
}

.about-preview-buttons .btn {
  min-width: 220px;
}

/* ==================== */
/* CARDS */
/* ==================== */

.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  box-shadow: 0 25px 70px 5px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.12) 0%, rgba(233, 69, 96, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  font-size: 1.35rem;
}

.card-title {
  align-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #3b3b3b;
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.card-text {
  margin-bottom: 1rem;
  color: var(--light-text);
}

/* ==================== */
/* GRID */
/* ==================== */

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.services-grid {
  gap: 2.75rem;
}

.service-card {
  padding: 2.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.service-card .btn {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ==================== */
/* IMAGES */
/* ==================== */

.img-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: var(--light-bg);
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.img-container:hover img {
  transform: scale(1.05);
}

/* ==================== */
/* PORTFOLIO PAGE STYLES */
/* ==================== */

/* Portfolio Hero Section */
.portfolio-hero-section {
  padding: 8rem 2rem 5rem;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, rgba(26, 26, 46, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.portfolio-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(228, 202, 54, 0.08) 0, transparent 50%);
  pointer-events: none;
}

.portfolio-hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.portfolio-hero-title {
  color: var(--primary-color);
  margin: 1rem 0;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.portfolio-hero-divider {
  width: 120px;
  height: 2px;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.portfolio-hero-subtitle {
  font-size: 1.15rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Project Insights Section */
.portfolio-insights-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fefcf8 0%, #fff9e9 100%);
}

.portfolio-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-insight-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(228, 202, 54, 0.1);
  transition: all 0.3s ease;
}

.portfolio-insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(228, 202, 54, 0.3);
}

.portfolio-insight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(228, 202, 54, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.portfolio-insight-card:hover .portfolio-insight-icon {
  background: rgba(228, 202, 54, 0.25);
  transform: scale(1.1);
}

.portfolio-insight-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-playfair);
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.portfolio-insight-label {
  font-size: 1rem;
  color: var(--light-text);
  font-weight: 600;
  line-height: 1.5;
}

/* Portfolio Filter Section */
.portfolio-filter-section {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-filter-btn {
  padding: 0.75rem 2rem;
  border: 2px solid var(--border-color);
  background: var(--white);
  color: var(--text-color);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(228, 202, 54, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-filter-btn:hover::before {
  opacity: 1;
}

.portfolio-filter-btn:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.portfolio-filter-btn.active {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(228, 202, 54, 0.3);
}

.portfolio-filter-btn.active::before {
  opacity: 0;
}

.portfolio-filter-btn span {
  position: relative;
  z-index: 1;
}

/* Featured Projects Section */
.featured-projects-section {
  padding: 5rem 2rem;
  background: var(--light-bg);
}

.featured-projects-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.featured-projects-title {
  color: var(--primary-color);
  margin: 1rem 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-project-card {
  display: flex;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.featured-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.featured-project-image {
  width: 45%;
  height: 350px;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-project-card:hover .featured-project-image img {
  transform: scale(1.05);
}

.featured-project-content {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-project-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-flex;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: rgba(228, 202, 54, 0.15);
  width: fit-content;
}

.featured-project-title {
  font-size: 1.75rem;
  font-family: var(--font-playfair);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.featured-project-description {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-project-link {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.featured-project-card:hover .featured-project-link {
  gap: 0.75rem;
}

/* Portfolio Grid Section */
.portfolio-grid-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  background: var(--white);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.portfolio-image {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: var(--light-bg);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-category-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--primary-color);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(228, 202, 54, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 1;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.portfolio-content {
  color: var(--white);
  transform: translateY(10px);
  transition: transform 0.4s ease;
  width: 100%;
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
}

.portfolio-title {
  font-size: 1.3rem;
  font-family: var(--font-playfair);
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Portfolio CTA Wrapper */
.portfolio-cta-wrapper {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

.portfolio-cta-wrapper .cta-section {
  max-width: 900px;
  margin: 0 auto;
}

/* ==================== */
/* FORMS */
/* ==================== */

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
  color: var(--text-color);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.form-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.form-success {
  color: #28a745;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ==================== */
/* MODAL/POPUP */
/* ==================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideUp 0.3s ease-out;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light-text);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-color);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  text-align: center;
  font-family: var(--font-playfair);
}

.modal-subtitle {
  text-align: center;
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* ==================== */
/* FOOTER */
/* ==================== */

.footer {
  background: #0d0d0d;
  color: var(--white);
  padding: 5rem 2rem 3.5rem;
  border-top: 1px solid #d4af37;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.75rem;
  margin-bottom: 2.75rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 0.08rem;
}

.footer-section .navbar-brand-title {
  color: #d4af37;
}

.footer-section p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
  line-height: 1.6;
}

.footer-links a:hover {
  color: #f8e6b7;
  padding-left: 6px;
  transform: translateX(4px);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border-color: #d4af37;
}


.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: inherit;
}

.footer-bottom p.italic {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */

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

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in-1 { animation-delay: 0s; }
.fade-in-2 { animation-delay: 0.1s; }
.fade-in-3 { animation-delay: 0.2s; }
.fade-in-4 { animation-delay: 0.3s; }
.fade-in-5 { animation-delay: 0.4s; }
.fade-in-6 { animation-delay: 0.5s; }

/* ==================== */
/* UTILITIES */
/* ==================== */

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

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

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

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.py-1 { padding: 0.5rem 0; }
.py-2 { padding: 1rem 0; }
.py-3 { padding: 1.5rem 0; }
.py-4 { padding: 2rem 5rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  section {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
  }
}

/* ==================== */
/* PRINT STYLES */
/* ==================== */

@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }
}


/* ==================== */
/* TESTIMONIALS */
/* ==================== */

.testimonial-card {
  background-color: #fcfaf4; /* Light beige background from your image */
  border-radius: 1rem;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07); /* Softer shadow */
  height: 100%;
  position: relative;
  border: 1px solid #f0eade;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 5rem; /* Large quote */
  font-family: var(--font-playfair);
  color: #eaeaea; /* Light gray color */
  line-height: 1;
  z-index: 1;
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative; /* To stack above the quote icon */
  z-index: 2;
  font-style: italic; /* Text looks italic in the target image */
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #a1883a; /* Darker gold for letter */
  background-color: #f7eecf; /* Light yellow/beige bg */
  flex-shrink: 0;
}

.client-info {
  text-align: left;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--font-sans);
}

.client-role {
  font-size: 0.9rem;
  color: var(--light-text);
  font-family: var(--font-sans);
}

/* ==================== */
/* CALL TO ACTION SECTION */
/* ==================== */

.cta-section {
  background: linear-gradient(135deg, #fefdfb 0%, #fff9e9 100%); /* Subtle gradient background */
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 3rem; /* Space below testimonials */
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08); /* A bit more pronounced shadow */
  border: 1px solid #f0eade; /* Light border */
}

.cta-dot {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  background-color: #f7eecf; /* Yellowish dot color */
  border-radius: 50%;
  border: 4px solid #f0eade; /* Border color for the dot */
  z-index: 1;
}

.cta-title {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  position: relative;
  z-index: 2;
}

/* Custom styles for CTA buttons to match the image */
.btn-cta-accent {
  background-color: var(--accent-color); /* Use your existing accent color variable */
  color: #333; /* Darker text for contrast */
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(233, 204, 54, 0.3);
}

.btn-cta-accent:hover {
  background-color: #d1b831; /* Slightly darker on hover */
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(233, 204, 54, 0.4);
}

.btn-cta-outline {
  background-color: #f7f7f7; /* Very light background for the outline button */
  border: 1px solid #dcdcdc; /* Light gray border */
  color: var(--text-color);
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-cta-outline:hover {
  background-color: #f0f0f0; /* Slightly darker on hover */
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for CTA buttons */
@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-cta-accent, .btn-cta-outline {
    width: 80%; /* Make buttons take up more width on small screens */
  }
}

/* ==================== */
/* PROCESS SECTION      */
/* ==================== */

.section-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(228, 202, 54, 0.1); /* Light accent */
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* New responsive grid-5 class */
.grid-5 {
  display: grid;
  gap: 2rem;
  /* 1 col on mobile */
  grid-template-columns: 1fr;
}

/* 2 cols on tablet */
@media (min-width: 576px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 cols on small desktop */
@media (min-width: 992px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 5 cols on large desktop */
@media (min-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: rgba(228, 202, 54, 0.18);
  color: var(--accent-color);
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-playfair);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  border: 4px solid rgba(228, 202, 54, 0.28);
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

/* Added a simple hover effect */
.process-step:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(228, 202, 54, 0.3);
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 45px;
  left: calc(50% + 60px);
  width: calc(100% - 120px);
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  display: none;
}

.process-step:last-child::after {
  display: none;
}

@media (min-width: 1200px) {
  .process-step::after {
    display: block;
  }
}

.process-step-title {
  font-size: 1.15rem;
  font-family: var(--font-sans); /* Using sans-serif like the target */
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.6;
}

.process-summary {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-playfair);
  color: var(--primary-color);
  margin-top: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== */
/* FOUNDER'S NOTE       */
/* ==================== */

.founder-note-card {
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border-color);
  /* This gradient fades from white to a very light yellow on the bottom-right */
  background: linear-gradient(135deg, var(--white) 70%, rgba(228, 202, 54, 0.1) 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.founder-note-card::before {
  content: '“';
  position: absolute;
  font-family: var(--font-playfair);
  font-size: 10rem;
  color: rgba(212, 175, 55, 0.12);
  top: -20px;
  left: 20px;
  pointer-events: none;
}

.founder-quote {
  font-family: var(--font-playfair);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.6rem); /* Responsive font size */
  line-height: 1.7;
  color: var(--light-text);
  max-width: 800px;
  margin: 0 auto 2rem auto; /* Center block and add space below */
  position: relative;
  z-index: 1;
}

.founder-signature {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.08rem;
}

/* ==================== */
/* PROJECT DETAIL HEADER */
/* ==================== */

.project-badge {
    /* Uses existing variables for the yellow/gold color */
    color: var(--accent-color) !important; 
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.project-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Spacing between metadata items */
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    font-size: 1rem;
}

.metadata-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Space between icon and text */
    color: var(--light-text);
    font-weight: 500;
}

.metadata-item i {
    color: var(--accent-color); /* Apply accent color to icons */
    font-size: 1.1rem;
}

/* Optional: Adjust H1 font weight for bold look */
#project-title {
    font-weight: 900; 
}

@media (max-width: 576px) {
    .project-metadata {
        gap: 1.5rem;
    }
}

/* ==================== */
/* PROJECT DETAIL LAYOUT */
/* ==================== */

.project-main-image-container {
    width: 100%;
    height: 80vh; /* Adjust height as needed, e.g., 60% of viewport height */
    overflow: hidden; /* This is key for the zoom effect */
    position: relative;
    border-radius: 1rem; /* Rounded corners as seen in the image */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.project-main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area, cropping if necessary */
    display: block;
    transition: transform 0.6s ease-in-out; /* Smooth transition for zoom */
}

.project-main-image-container:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.section-heading {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-family: var(--font-playfair);
    font-weight: 700;
    color: var(--primary-color);
}

/* Key Highlights List */
.highlights-list {
    list-style: none; /* Remove default bullet points */
    padding-left: 0;
}

.highlights-list li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.highlights-list li i {
    color: var(--accent-color); /* Checkmark icon color */
    margin-right: 0.75rem;
    font-size: 1.1em;
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 0.1em; /* Align icon better with text */
}


/* Start Your Project Card */
.start-project-card {
    background-color: var(--white); /* Your card background */
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Soft shadow */
    border: 1px solid var(--border-color);
    text-align: center; /* Center content within the card */
}

.start-project-card .card-title-lg {
    font-family: var(--font-playfair);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.start-project-card .card-text-sm {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* Custom button for outline, if not already defined */
.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline-dark:hover {
    background: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
}


/* Project Details Sidebar */
.project-details-sidebar {
    background-color: var(--light-bg); /* Lighter background for this section */
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.project-details-sidebar .section-heading {
    margin-bottom: 2rem;
}

.project-details-sidebar .info-item {
    margin-bottom: 1.5rem;
}

.project-details-sidebar .info-item .info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color); /* Label in accent color */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.project-details-sidebar .info-item .info-value {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .project-main-image-fullscreen {
        max-height: 50vh; /* Adjust height for smaller screens */
        margin-top: 60px; /* Adjust for smaller navbar if it changes height */
    }

    .start-project-card,
    .project-details-sidebar {
        margin-top: 2rem; /* Add space between main content and sidebar on smaller screens */
    }
}

@media (max-width: 576px) {
    .start-project-card,
    .project-details-sidebar {
        padding: 1.5rem;
    }

    .start-project-card .card-title-lg {
        font-size: 1.5rem;
    }
}


/* --- Project Gallery Images --- */
.gallery-img-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background-color: var(--light-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    
    /* Adjust height to match the example image's aspect ratio */
    height: 380px; /* Or 400px if you prefer it slightly taller */
    
    transition: box-shadow 0.3s ease;
}

.gallery-img-wrapper img {
    /* ... rest of the code is fine ... */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures they fill the 400px height evenly */
    display: block;
    transition: transform 0.6s ease-in-out;
}

.gallery-img-wrapper:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); /* More pronounced shadow on hover */
}

.gallery-img-wrapper:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* ==================== */
/* TERMS & CONDITIONS PAGE */
/* ==================== */

/* 1. Set the warm background color from the image */
body {
  background-color: #fcfaf4;
}

/* 2. Style the main page wrapper */
.terms-page-wrapper {
  padding: 4rem 1rem;
  margin-top: 80px; /* Offset for your fixed navbar */
}

/* 3. Style the centered H1 and subtitle */
.terms-header {
  text-align: center;
  margin-bottom: 3rem;
}

.terms-header h1 {
  font-family: var(--font-playfair);
  font-size: clamp(2.5rem, 6vw, 3.5rem); /* Large serif font */
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.terms-header .last-updated {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--light-text);
}

/* 4. Create the white content card */
.terms-card {
  background: var(--white);
  border-radius: 1rem; /* Rounded corners */
  box-shadow: var(--shadow-elegant); /* Use your existing elegant shadow */
  padding: 3rem 4rem; /* Generous padding */
  max-width: 900px; /* Constrain width */
  margin: 0 auto; /* Center the card */
  line-height: 1.8;
  transition: var(--transition); /* <<< ADDED: Ensures smooth hover */
}

/* 5. ADDED: Hover effect for the card */
.terms-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* 6. Style the text inside the card */
.terms-card p {
  font-size: 1.1rem;
  color: var(--light-text); /* <<< UPDATED: Changed from --text-color */
  margin-bottom: 2rem;
}

.terms-card ul {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0;
}

.terms-card li {
  font-size: 1.1rem;
  color: var(--light-text); /* <<< UPDATED: Changed from --text-color */
  margin-bottom: 1.25rem;
  padding-left: 2.2rem; /* Make space for custom bullet */
  position: relative;
}

/* 7. Create the custom accent-colored bullet */
.terms-card li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  top: 0;
  color: var(--accent-color); /* Use your gold accent color */
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

/* ==================== */
/* SERVICES PAGE STYLES */
/* ==================== */

/* Services Hero Section */
.services-hero-section {
  padding: 8rem 2rem 5rem;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.05) 0%, rgba(228, 202, 54, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.services-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(228, 202, 54, 0.08) 0, transparent 50%);
  pointer-events: none;
}

.services-hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.services-hero-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.services-hero-divider {
  width: 120px;
  height: 2px;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.services-hero-subtitle {
  font-size: 1.15rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.services-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Service Summary Grid */
.service-summary-section {
  padding: 4rem 2rem;
  background: var(--white);
}

.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-summary-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(228, 202, 54, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-summary-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(228, 202, 54, 0.3);
}

.service-summary-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(228, 202, 54, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-summary-card:hover .service-summary-icon {
  background: rgba(228, 202, 54, 0.25);
  transform: scale(1.1);
}

.service-summary-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-family: var(--font-playfair);
}

.service-summary-text {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

/* Services Detail Section */
.services-detail-section {
  padding: 5rem 2rem;
  background: var(--light-bg);
}

.services-detail-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-item {
  margin-bottom: 6rem;
}

.service-detail-item:last-child {
  margin-bottom: 0;
}

.service-detail-content {
  padding: 1rem 0;
}

.service-detail-icon-wrapper {
  margin-bottom: 2rem;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(228, 202, 54, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  transition: all 0.3s ease;
}

.service-detail-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(228, 202, 54, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-detail-item:hover .service-detail-icon::before {
  opacity: 1;
}

.service-detail-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.service-detail-description {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-features-list li:last-child {
  margin-bottom: 0;
}

.service-features-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-features-list li span {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
}

.service-quote-btn {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.service-detail-image {
  border-radius: 14px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.service-detail-image:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-image:hover img {
  transform: scale(1.03);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fefcf8 0%, #fff9e9 100%);
}

.why-choose-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.why-choose-title {
  color: var(--primary-color);
  margin: 1rem 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(228, 202, 54, 0.1);
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(228, 202, 54, 0.3);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(228, 202, 54, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  background: rgba(228, 202, 54, 0.25);
  transform: scale(1.1) rotate(5deg);
}

.why-choose-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-family: var(--font-playfair);
}

.why-choose-card-text {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.7;
  margin: 0;
}

/* Design Process Section */
.design-process-section {
  padding: 5rem 2rem;
  background: rgba(26, 26, 46, 0.02);
}

.design-process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.design-process-title {
  color: var(--primary-color);
  margin: 1rem 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.design-process-subtitle {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-top: 1rem;
  line-height: 1.8;
}

.design-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.design-process-card {
  background: var(--white);
  border-radius: 14px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(228, 202, 54, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.design-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(228, 202, 54, 0.3);
}

.design-process-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(228, 202, 54, 0.18);
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-playfair);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid rgba(228, 202, 54, 0.28);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(228, 202, 54, 0.25);
}

.design-process-card:hover .design-process-number {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(228, 202, 54, 0.35);
  background: rgba(228, 202, 54, 0.25);
}

.design-process-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: var(--font-playfair);
}

.design-process-card-text {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.7;
  margin: 0;
}

/* Services CTA Wrapper */
.services-cta-wrapper {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

.services-cta-wrapper .cta-section {
  max-width: 900px;
  margin: 0 auto;
}