/* Variables CSS */
:root {
  --primary-color: #c8a97e;
  --primary-dark: #b69768;
  --primary-light: #d4b78c;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --light-color: #fff;
  --bg-light: #f9f9f9;
  --bg-dark: #121212;
  --border-color: #eee;
  --transition-fast: 0.3s;
  --transition-medium: 0.5s;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Comparison Slider Styles */
/* Comparison Slider Styles */
.comparison-wrapper {
  max-width: 100%;
  margin: 0 auto 50px;
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.comparison-wrapper:hover {
  box-shadow: var(--box-shadow-hover);
}

.comparison-slider {
  --divider-width: 2px;
  --divider-color: var(--primary-color);
  --default-handle-color: var(--primary-color);
  --default-handle-opacity: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px 8px 0 0;
  cursor: col-resize;
}

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  top: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.before-label {
  left: 20px;
}

.after-label {
  right: 20px;
}

.slider-instruction {
  text-align: center;
  padding: 15px;
  background-color: var(--light-color);
  color: var(--text-light);
  font-size: 14px;
  border-radius: 0 0 8px 8px;
}

.slider-instruction i {
  color: var(--primary-color);
  margin-right: 5px;
}

/* Project Cards */
.project-card {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: all var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.btn-view {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.btn-view:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: scale(1.05);
}

.project-info {
  padding: 20px;
}

.project-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600;
}

.project-info p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 14px;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
  padding: 12px 28px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  transition: all 0.4s;
  z-index: -1;
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-primary-custom:hover {
  box-shadow: 0 5px 15px rgba(200, 169, 126, 0.4);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background-color: transparent;
  border: 1px solid var(--light-color);
  color: var(--light-color);
  padding: 12px 28px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--light-color);
  transition: all 0.4s;
  z-index: -1;
}

.btn-outline-custom:hover::before {
  left: 0;
}

.btn-outline-custom:hover {
  color: var(--text-color);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 15px auto 0;
}

/* Header */
.site-header {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 60px;
  transition: all var(--transition-fast);
}

.site-header.scrolled .logo img {
  height: 50px;
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
  padding: 10px 15px;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 24px;
  height: 17px;
  position: relative;
  transition: all var(--transition-fast);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: all var(--transition-fast);
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  color: var(--light-color);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

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

.hero-box {
  padding: 60px 40px;
  border: 1px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.hero-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 1s;
}

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

/* Social Icons Floating */
.social-icons-floating {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
}

.social-icon-circle {
  width: 40px;
  height: 40px;
  background-color: rgba(200, 169, 126, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
  transition: all var(--transition-fast);
}

.social-icon-circle:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/* WhatsApp Floating */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
  animation: pulse 2s infinite;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: white;
}

.mouse-icon {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 15px;
  margin: 0 auto;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: white;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}

.about-image img {
  max-width: 100%;
  transition: transform var(--transition-medium);
}

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

.about-content {
  padding: 20px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-content p {
  margin-bottom: 30px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.experience-box {
  display: inline-block;
  border: 1px solid var(--primary-color);
  padding: 25px;
  margin-top: 30px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.experience-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--primary-color);
}

.experience-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.experience-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1;
}

.experience-text {
  color: var(--text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Projects Section */
.projects-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
}

.expertise-info {
  margin-top: 60px;
  text-align: center;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}

.expertise-info h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-color);
}

.expertise-info p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 16px;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background-color: #333;
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.process-section .section-title h2 {
  color: var(--light-color);
}

.process-section .section-title h2::after {
  background-color: var(--primary-color);
}

.process-step {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 40px 30px;
  height: 100%;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.step-number {
  font-size: 72px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  line-height: 1;
}

.process-step h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.process-step p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background-color: var(--light-color);
}

.gallery-grid {
  margin-bottom: 30px;
}

/* Before / After Page Styles */
.hero-small {
  height: 50vh;
  min-height: 400px;
  background-color: var(--bg-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-small h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
}

.transformation-item {
  margin-bottom: 80px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-details-btn {
  margin-top: 30px;
  text-align: center;
}

.comparison-slider img {
  max-height: 600px;
  /* Limit height for better view on desktop */
}

/* Project Detail Page Styles */
.project-hero {
  height: 60vh;
  min-height: 500px;
  background-color: var(--bg-dark);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}

.project-hero-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-top: 5px solid var(--primary-color);
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-grid-detail img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.gallery-grid-detail img:hover {
  transform: scale(1.02);
}

/* Mobile Adjustments for New Pages */
@media (max-width: 768px) {
  .hero-small h1 {
    font-size: 2.5rem;
  }

  .transformation-item {
    padding: 20px;
  }
}

.gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  transition: transform var(--transition-medium);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: var(--light-color);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-fast);
}

.gallery-item:hover .gallery-item-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.gallery-item-info p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-fast);
  border-left: 3px solid var(--primary-color);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 28px;
  transition: all var(--transition-fast);
}

.benefit-item:hover .benefit-icon {
  transform: rotateY(180deg);
}

.benefit-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-color);
}

.benefit-content p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
}

.testimonial-card {
  background-color: var(--light-color);
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  padding: 40px 30px;
  margin-bottom: 30px;
  height: 100%;
  transition: all var(--transition-fast);
  border-top: 3px solid var(--primary-color);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.testimonial-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
  border: 3px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.testimonial-rating {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 18px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-light);
  position: relative;
  padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 50px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.testimonial-content p::before {
  top: -15px;
  left: -5px;
}

.testimonial-content p::after {
  bottom: -35px;
  right: -5px;
}

.testimonial-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--text-color);
}

.testimonial-content .client-position {
  font-size: 14px;
  color: var(--text-lighter);
  margin-bottom: 0;
}

.google-reviews {
  display: inline-flex;
  align-items: center;
  background-color: var(--light-color);
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  margin-top: 30px;
  transition: all var(--transition-fast);
}

.google-reviews:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.google-icon {
  height: 30px;
  margin-right: 15px;
}

.rating {
  font-size: 28px;
  font-weight: bold;
  margin-right: 10px;
  color: var(--text-color);
}

.rating-text {
  color: var(--text-light);
  margin-right: 15px;
}

/* Video Section */
.video-section {
  padding: 100px 0;
  background-color: #333;
  color: var(--light-color);
  position: relative;
}

.video-section .section-title h2 {
  color: var(--light-color);
}

.video-section .section-title h2::after {
  background-color: var(--primary-color);
}

.video-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  position: relative;
}

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

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: all var(--transition-fast);
}

.info-item:hover {
  transform: translateX(5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 22px;
  transition: all var(--transition-fast);
}

.info-item:hover .info-icon {
  background-color: var(--primary-dark);
  transform: rotateY(180deg);
}

.info-content p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text-color);
}

.info-content a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.info-content a:hover {
  color: var(--primary-color);
}

.contact-form-container {
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 40px;
  position: relative;
  z-index: 1;
}

.contact-form-container h3 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
  padding-bottom: 15px;
}

.contact-form-container h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.form-control {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 15px;
  font-size: 15px;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

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

/* Footer */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--light-color);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(200, 169, 126, 0.3);
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 70px;
  filter: brightness(1.2);
}

.footer-text {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(200, 169, 126, 0.9);
  color: #121212;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.footer-heading {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-info-footer {
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(200, 169, 126, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--primary-color);
}

.contact-text {
  color: #ddd;
}

.contact-text a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

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

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 126, 0.3);
  color: #fff;
  border-radius: 4px;
  padding: 12px 15px;
  margin-bottom: 15px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #121212;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 500;
}

.hours-operation {
  margin-top: 30px;
}

.hours-operation h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.day {
  color: #aaa;
}

.time {
  color: #ddd;
}

.footer-bottom {
  position: relative;
  padding-top: 20px;
}

.accent-line {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 169, 126, 0) 0%, rgba(200, 169, 126, 1) 50%, rgba(200, 169, 126, 0) 100%);
}

.copyright {
  color: #777;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #121212;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 99;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-light);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .process-step {
    padding: 30px 20px;
  }

  .step-number {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-box {
    padding: 40px 30px;
  }

  .about-image {
    margin-bottom: 40px;
  }

  .process-step {
    margin-bottom: 30px;
  }

  .benefit-item {
    margin-bottom: 30px;
  }

  .contact-form-container {
    margin-top: 40px;
  }
}

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

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

  .hero-content h1 {
    font-size: 30px;
  }

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

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .experience-box {
    padding: 20px;
  }

  .experience-number {
    font-size: 36px;
  }

  .gallery-item img {
    height: 250px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
  }

  .info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .social-icons-floating,
  .scroll-indicator {
    display: none;
  }

  .comparison-slider {
    height: 350px;
  }

  .comparison-label {
    font-size: 12px;
    padding: 6px 12px;
  }

  .project-image {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-box {
    padding: 30px 20px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .process-step {
    padding: 25px 15px;
  }

  .step-number {
    font-size: 48px;
  }

  .testimonial-image {
    width: 80px;
    height: 80px;
  }

  .google-reviews {
    flex-direction: column;
    padding: 20px;
  }

  .google-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .rating {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .rating-text {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* =========================================
   Filter Buttons & Premium Styles
   ========================================= */
.filter-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
  padding: 0 15px;
}

.filter-btn {
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #555;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 169, 126, 0.3);
  transform: translateY(-2px);
}

.filter-count {
  font-size: 0.8em;
  opacity: 0.7;
  margin-left: 5px;
  font-weight: 400;
}

.filter-btn.active .filter-count {
  opacity: 1;
}

/* Slider Handle Shimmer Effect */
.comparison-slider {
  --divider-width: 2px;
  --divider-color: var(--primary-color);
  --default-handle-color: var(--primary-color);
  --default-handle-opacity: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px 8px 0 0;
  cursor: col-resize;
}

/* Custom shimmer for the slider handle if possible via CSS, 
   otherwise we'll add a visual cues. 
   Since img-comparison-slider uses shadow DOM for handle, 
   we can target the slider itself for a subtle glow pulse */

.comparison-slider {
  animation: slider-hint 8s infinite;
}

@keyframes slider-hint {

  0%,
  90%,
  100% {
    filter: drop-shadow(0 0 0 rgba(200, 169, 126, 0));
  }

  95% {
    filter: drop-shadow(0 0 8px rgba(200, 169, 126, 0.6));
  }
}

/* Testimony styles */
.project-testimony {
  margin-top: 30px;
  padding: 20px;
  background: rgba(200, 169, 126, 0.05);
  border-left: 3px solid var(--primary-color);
  font-style: italic;
  border-radius: 0 8px 8px 0;
  position: relative;
}

.project-testimony::before {
  content: '"';
  font-size: 40px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -5px;
  left: 10px;
}

.testimony-author {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9em;
  text-transform: uppercase;
  color: var(--text-color);
}

/* GLightbox Hover Overlay */
.glightbox {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.glightbox::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(200, 169, 126, 0.9);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.glightbox:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile optimization for filters */
@media (max-width: 768px) {
  .filter-controls {
    gap: 10px;
    margin-bottom: 40px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 11px;
    flex: 1 1 auto;
    /* Grow on mobile */
    text-align: center;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.whatsapp-float.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}

.whatsapp-float.pulse {
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Project Navigation Footer */
.project-nav-footer {
  border-top: 1px solid #eee;
  padding: 60px 0;
  background: #fdfdfd;
}

.nav-link-custom {
  text-decoration: none;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-link-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(181, 147, 98, 0.15);
  color: var(--primary-color);
}

.nav-img-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 20px;
}

.nav-text-content {
  display: flex;
  flex-direction: column;
}

.nav-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 5px;
}

.nav-project-name {
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .nav-img-thumb {
    display: none;
  }

  .nav-link-custom {
    padding: 15px;
  }
}