/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #f7fafc;
  background: linear-gradient(135deg, #1a1612 0%, #2d2820 50%, #3d3426 100%);
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #d4af37 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid #f4e9c1;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

/* Logo Styles */
.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-tagline {
  font-size: 0.75rem;
  color: #2d2d2d;
  font-style: italic;
  margin: 0;
  opacity: 0.8;
  font-weight: 400;
}

/* Navigation Styles */
.navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  margin: 0 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(26, 26, 26, 0.8);
  transform: translateY(-1px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link.active::after {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  margin-top: 0;
  padding-top: 120px;
}

/* Video Background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(212, 175, 55, 0.2) 50%,
    rgba(212, 175, 55, 0.1) 100%
  );
  z-index: -1;
}

.hero-section::before {
  display: none;
}

.hero-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  min-height: auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  text-align: left;
  color: #8b6f1a;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #d4af37;
  text-shadow: 2px 2px 8px rgba(26, 22, 18, 0.8),
    0 0 15px rgba(212, 175, 55, 0.6);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0.95;
  color: #2d2d2d;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8),
    0 0 8px rgba(255, 255, 255, 0.6);
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #e6c85a);
  color: #1a1612;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #e6c85a, #d4af37);
}

.btn-secondary {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 2rem;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  color: #1a1612;
  border-color: #d4af37;
  background: linear-gradient(135deg, #d4af37, #e6c85a);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(135deg, #1a1612 0%, #2d2820 50%, #1a1612 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  margin: 0;
  border-radius: 0;
  border-top: 2px solid #d4af37;
}

.benefits-container {
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.benefits-scroll {
  display: flex;
  animation: rollBenefits 30s linear infinite;
  gap: 2rem;
  width: max-content;
}

@keyframes rollBenefits {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.benefit-box {
  background: linear-gradient(
    135deg,
    rgba(26, 22, 18, 0.9) 0%,
    rgba(45, 40, 32, 0.9) 100%
  );
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 240px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.benefit-box::before {
  display: none;
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
  border-color: #e6c85a;
}

.benefit-box:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  margin-bottom: 1rem;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37, #c9a961);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto;
  color: #0a0a0a;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.benefit-box:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #e6c85a, #d4af37);
}

.benefit-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: #d4af37;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  line-height: 1.3;
}

.benefit-description {
  color: #f7fafc;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

/* Pause animation on container hover */
.benefits-container:hover .benefits-scroll {
  animation-play-state: paused;
}

/* Customer Reviews Section */
.customer-reviews-section {
  background: linear-gradient(135deg, #f4e9c1 0%, #f9f2d7 50%, #f4e9c1 100%);
  padding: 80px 0;
}

/* Video Testimonials */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.video-card {
  background: linear-gradient(
    135deg,
    rgba(26, 22, 18, 0.9),
    rgba(45, 40, 32, 0.9)
  );
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background: linear-gradient(45deg, #e0e0e0, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.play-button {
  position: absolute;
  z-index: 3;
  transition: all 0.3s ease;
}

.video-card:hover .play-button {
  transform: scale(1.1);
}

.customer-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(26, 26, 26, 0.9);
  color: #ffd700;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 2;
}

.customer-overlay h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.customer-overlay p {
  font-size: 0.85rem;
  margin: 0;
  color: #daa520;
  opacity: 0.9;
}

.video-review-text {
  padding: 1.5rem;
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Written Reviews */
.written-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background: linear-gradient(
    135deg,
    rgba(26, 22, 18, 0.9),
    rgba(45, 40, 32, 0.9)
  );
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #daa520);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #ffd700;
}

.review-card:hover::before {
  transform: scaleX(1);
}

.quote-icon {
  font-size: 3rem;
  color: #ffd700;
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.review-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.star-rating {
  margin-bottom: 1.5rem;
}

.star {
  font-size: 1.2rem;
  color: #ddd;
  margin-right: 0.25rem;
}

.star.filled {
  color: #ffd700;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #daa520);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-weight: bold;
  font-size: 1rem;
}

.reviewer-details h5 {
  font-family: "Playfair Display", serif;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.reviewer-details p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

/* Reviews CTA */
.reviews-cta {
  text-align: center;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-weight: 600;
}

.view-more-btn:hover {
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
  position: relative;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #c9a961);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #1a1612 0%, #2d2820 50%, #1a1612 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 70%
    );
  pointer-events: none;
}

/* Consolidated Services Styles */
.services-consolidated {
  margin-bottom: 4rem;
}

.consolidated-service-card {
  background: linear-gradient(
    135deg,
    rgba(26, 22, 18, 0.9) 0%,
    rgba(45, 40, 32, 0.9) 100%
  );
  border-radius: 12px;
  padding: 4rem 3.5rem;
  border: 2px solid rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.consolidated-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.8);
}

.consolidated-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0.6;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.consolidated-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #d4af37;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.consolidated-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: #d4af37;
  opacity: 0.7;
}

.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
}

.services-columns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #d4af37, transparent);
  opacity: 0.3;
}

.service-column h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
  padding: 0;
  background: none;
  border-radius: 0;
  border-left: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-column h4:hover {
  color: #e6c85a;
}

.service-column h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 0;
  background: #d4af37;
  transition: width 0.3s ease;
}

.service-column h4:hover::after {
  width: 100%;
}

.service-column h4:first-child {
  margin-top: 0;
}

.service-column p {
  color: #f7fafc;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  padding-left: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  font-weight: 300;
}

.service-column:hover p {
  opacity: 1;
}

.service-column p::before {
  content: "—  ";
  color: #d4af37;
  font-weight: 300;
  margin-right: 0.8rem;
  opacity: 0.8;
}

/* Services Call to Action */
.services-cta {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(26, 22, 18, 0.9),
    rgba(45, 40, 32, 0.9)
  );
  color: #d4af37;
  padding: 5rem 4rem;
  border-radius: 16px;
  margin-top: 5rem;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.services-cta::before {
  display: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.services-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  color: #f7fafc;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.6;
}

.services-cta .btn {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 1rem 2.5rem;
  font-weight: 400;
  font-size: 1rem;
  box-shadow: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.services-cta .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #d4af37;
  transition: width 0.3s ease;
  z-index: -1;
}

.services-cta .btn:hover::before {
  width: 100%;
}

.services-cta .btn:hover {
  color: #0a0a0a;
  border-color: #d4af37;
}

/* Gallery Section */
.gallery-section {
  background: #f8f9fa;
}

/* Gallery Filter Tabs */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e9ecef;
  background: white;
  color: #555;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #ffd700, #daa520);
  color: #1a1a1a;
  border-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.gallery-item {
  transition: all 0.3s ease;
}

.gallery-item.hidden {
  display: none;
}

/* Before/After Cards */
.before-after-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.before-after-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #daa520);
}

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

.project-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  text-align: center;
  padding: 1.5rem 1.5rem 1rem;
  margin: 0;
  position: relative;
}

.project-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #daa520);
}

/* Comparison Container */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 300px;
}

.before-section,
.after-section {
  position: relative;
  overflow: hidden;
}

.image-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.image-placeholder.before {
  background: linear-gradient(45deg, #ffebee, #fff3e0);
}

.image-placeholder.after {
  background: linear-gradient(45deg, #e8f5e8, #f0f8f0);
}

.label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(26, 26, 26, 0.9);
  color: #ffd700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.placeholder-content {
  padding: 2rem;
  z-index: 1;
}

.placeholder-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Project Details */
.project-details {
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.project-details p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffd700;
  padding: 3rem 2rem;
  border-radius: 16px;
  margin-top: 2rem;
  border: 2px solid #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.gallery-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gallery-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.gallery-cta .btn {
  background: linear-gradient(135deg, #ffd700, #daa520);
  color: #1a1a1a;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.gallery-cta .btn:hover {
  background: linear-gradient(135deg, #daa520, #b8860b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Projects Section */
.projects-section {
  background: white;
}

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

.projects-placeholder {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 2px dashed #ddd;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1612 0%, #2d2820 50%, #1a1612 100%);
  color: #e6c85a;
  padding: 60px 0 20px;
  border-top: 3px solid #d4af37;
}

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

.footer-section h3,
.footer-section h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  color: #d4af37;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #c9a961;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #e6c85a;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Contact Details Styling */
.contact-details p {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.phone-numbers a {
  color: #daa520;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.phone-numbers a:hover {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  transform: translateX(5px);
}

.email-link {
  color: #daa520 !important;
  font-size: 0.95rem;
  word-break: break-word;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #ffd700;
  color: #daa520;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.mobile-open {
    display: flex;
    transform: translateX(0);
  }

  .nav-menu li {
    margin-bottom: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 40px;
  }

  /* Services section mobile */
  .services-section {
    padding: 80px 0 60px;
    margin-top: 2rem;
  }

  .consolidated-service-card {
    padding: 2.5rem 2rem;
    border-radius: 4px;
  }

  .consolidated-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
  }

  .services-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-columns::before {
    display: none;
  }

  .service-column h4 {
    font-size: 1.1rem;
    margin-top: 2rem;
  }

  .service-column p {
    font-size: 0.95rem;
  }

  .services-cta {
    padding: 3rem 2rem;
    margin-top: 4rem;
  }

  .services-cta h3 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .services-cta p {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }

  /* Form responsive adjustments */
  .hero-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

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

  .estimate-form-container {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 10;
  }

  .estimate-form {
    padding: 1.5rem;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  /* Services responsive */
  .services-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .consolidated-service-card {
    padding: 2rem;
  }

  .consolidated-title {
    font-size: 1.6rem;
  }

  .service-column h4 {
    font-size: 1rem;
  }

  .services-cta {
    padding: 2rem 1.5rem;
  }

  .services-cta h3 {
    font-size: 1.6rem;
  }

  /* Benefits section responsive */
  .benefit-box {
    min-width: 250px;
    padding: 1.5rem 1rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .benefit-description {
    font-size: 0.85rem;
  }

  /* Reviews section responsive */
  .video-testimonials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .written-reviews {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .video-thumbnail {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 40px;
  }

  section {
    padding: 60px 0;
  }

  .services-section {
    padding: 70px 0 50px;
    margin-top: 1.5rem;
  }

  /* Gallery extra small screens */
  .project-title {
    font-size: 1.2rem;
  }

  .gallery-cta h3 {
    font-size: 1.4rem;
  }

  .gallery-cta p {
    font-size: 1rem;
  }

  /* Benefits extra small screens */
  .benefit-box {
    min-width: 180px;
    padding: 1rem 0.75rem;
  }

  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .benefit-title {
    font-size: 0.9rem;
  }

  /* Reviews extra small screens */
  .written-reviews {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 1.2rem;
  }

  .quote-icon {
    font-size: 2.5rem;
  }

  .video-thumbnail {
    height: 160px;
  }

  /* Services mobile adjustments */
  .consolidated-title {
    font-size: 1.4rem;
  }

  .service-column h4 {
    font-size: 0.95rem;
  }

  .service-column p {
    font-size: 0.85rem;
  }

  .services-cta h3 {
    font-size: 1.4rem;
  }

  .services-cta p {
    font-size: 1rem;
  }

  /* Gallery mobile adjustments */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .comparison-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .image-placeholder {
    height: 200px;
  }

  .project-title {
    font-size: 1.3rem;
    padding: 1rem;
  }

  .gallery-cta h3 {
    font-size: 1.6rem;
  }
}

/* Estimate Form Styles */
.estimate-form-container {
  flex: 0 0 400px;
  position: relative;
  z-index: 10;
}

.estimate-form {
  background: linear-gradient(
    135deg,
    rgba(26, 22, 18, 0.95) 0%,
    rgba(45, 40, 32, 0.95) 100%
  );
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
  border: 2px solid rgba(212, 175, 55, 0.6);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(15px);
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #e6c85a;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.form-subtitle {
  color: #d4af37;
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.9;
}

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

.form-label {
  display: block;
  font-weight: 500;
  color: #f7fafc;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Property Type Buttons */
.property-type-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.property-btn {
  padding: 0.75rem;
  border: 1px solid #d4af37;
  background: transparent;
  color: #f7fafc;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.property-btn:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.property-btn.active {
  background: linear-gradient(135deg, #d4af37, #e6c85a);
  color: #1a1612;
  font-weight: 600;
  border-color: #d4af37;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d4af37;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 10, 10, 0.5);
  color: #f7fafc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-input:focus {
  outline: none;
  border-color: #e6c85a;
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.form-input::placeholder {
  color: #c9a961;
}

/* Checkbox Styles */
.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 0.75rem;
  position: relative;
}

.checkbox-container input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid #d4af37;
  border-radius: 4px;
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.checkbox-container:hover .checkmark {
  background: rgba(212, 175, 55, 0.1);
  border-color: #e6c85a;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
  background: linear-gradient(135deg, #d4af37, #c9a961);
  border-color: #d4af37;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.85rem;
  color: #e2e8f0;
  line-height: 1.4;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 0.875rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-1px);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  top: 130px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #20c65a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  animation: whatsappPulse 1.5s ease-in-out infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #25d366;
  animation: whatsappRipple 1.5s ease-out infinite;
  opacity: 0;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
}

@keyframes whatsappRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  animation: none;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #20c65a, #1fa851);
}

.whatsapp-float:hover::before {
  animation: none;
  opacity: 0;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    top: 120px;
    right: 15px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    top: 110px;
    right: 10px;
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
