:root {
  --primary-color: #1a2332;
  --secondary-color: #c9a96e;
  --accent-color: #8b7355;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-cream: #faf8f5;
  --luxury-navy: #1a2332;
  --luxury-gold: #c9a96e;
  --luxury-beige: #f5f2ed;
  --luxury-charcoal: #3a3a3a;
  --gradient-primary: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  --gradient-luxury: linear-gradient(135deg, #c9a96e 0%, #8b7355 100%);
  --shadow-soft: 0 10px 40px rgba(26, 35, 50, 0.1);
  --shadow-medium: 0 15px 50px rgba(26, 35, 50, 0.15);
  --shadow-strong: 0 20px 60px rgba(26, 35, 50, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
}

.font-display {
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Modern Premium Navbar */
.navbar {
  background: transparent;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  background: rgba(26, 35, 50, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-medium);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-brand img {
  filter: none;
}

.navbar-nav {
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: white !important;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.navbar.scrolled .nav-link {
  color: white !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-quote {
  background: var(--gradient-luxury);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: white;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(201,169,110,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.0rem;
  font-weight: 600;
  color: white;
  margin-top: 20px;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.6;
}

.btn-luxury-primary {
  background: var(--gradient-luxury);
  border: none;
  padding: 18px 40px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-medium);
  color: white;
  text-decoration: none;
  display: inline-block;
}

.btn-luxury-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  background: var(--gradient-luxury);
  color: white;
}

.btn-luxury-outline {
  border: 2px solid white;
  color: white;
  padding: 18px 40px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  background: transparent;
  text-decoration: none;
  display: inline-block;
}

.btn-luxury-outline:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Compact Premium Hero Form */
.hero-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  margin: 0 auto;
}

.hero-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Section Styles */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 4rem;
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Section - Icon Based */
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.3rem;
}

/* Enhanced Duco Info Section */
.duco-info-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.duco-info-content {
  padding: 2rem 0;
}

.duco-info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.duco-info-card:hover {
  transform: translateY(-5px);
}

.duco-info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-luxury);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.duco-info-text h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.duco-info-text p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.duco-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.duco-feature {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.duco-feature i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.duco-feature span {
  font-weight: 500;
  color: var(--text-dark);
}

.duco-comparison-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.duco-image-showcase {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.duco-image-showcase img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Comparison Table */
.comparison-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.comparison-table .table {
  margin: 0;
}

.comparison-table .table th {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1.5rem 1rem;
  font-weight: 600;
  text-align: center;
}

.comparison-table .table td {
  padding: 1.2rem 1rem;
  text-align: center;
  border-color: rgba(201, 169, 110, 0.1);
  vertical-align: middle;
}

.comparison-table .table tbody tr:nth-child(even) {
  background: rgba(245, 242, 237, 0.5);
}

/* Where We Apply Section */
.application-item {
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.application-item:hover {
  transform: translateY(-10px);
}

.application-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-luxury);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.application-item:hover .application-icon {
  transform: scale(1.1);
}

.application-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

/* Enhanced Pricing Section */
.pricing-worth-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-cards-container {
  margin-bottom: 4rem;
}

.pricing-value-card {
  background: white;
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-value-card.premium {
  border: 2px solid var(--secondary-color);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-luxury);
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-value-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-strong);
}

.pricing-value-card.premium:hover {
  transform: scale(1.05) translateY(-15px);
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-luxury);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.pricing-value-card:hover .pricing-icon {
  transform: scale(1.1);
}

.pricing-value-card h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
  font-size: 1rem;
}

.pricing-benefits {
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  height: 100%;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-luxury);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.benefit-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.benefit-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-strong);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 2rem;
}

/* Premium Testimonials */
.testimonial-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  height: 350px;
  border: 2px solid rgba(201, 169, 110, 0.87);
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonial-location {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Swiper Customization */
.testimonial-swiper .swiper-pagination-bullet {
  background: var(--secondary-color);
  opacity: 0.5;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: var(--secondary-color);
}

/* Premium FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-button {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  font-weight: 600;
  color: var(--primary-color);
  padding: 2rem;
  border-radius: 15px !important;
  box-shadow: none;
  border: 1px solid rgba(201, 169, 110, 0.2) !important;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.accordion-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-luxury);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.accordion-button:hover::before,
.accordion-button:not(.collapsed)::before {
  transform: scaleX(1);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-soft);
}

.accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
}

.accordion-body {
  padding: 2rem;
  background: white;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1rem;
}

/* Contact Section with Stats */
.contact-section {
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%),
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-10px);
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: white;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-luxury);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.2rem;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1000;
}

.floating-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: var(--shadow-strong);
}

.whatsapp-btn {
  background: #25d366;
}

.call-btn {
  background: var(--secondary-color);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-color);
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

/* Form Enhancements */
.form-control,
.form-select {
  border-radius: 15px;
  border: 2px solid rgba(201, 169, 110, 0.2);
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
}

/* Gallery Section - Custom Styles */
.gallery-section {
  padding: 80px 0;
  background: var(--luxury-beige);
  font-family: "Poppins", sans-serif;
}

.gallery-section .section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-section .section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 20px;
}

.gallery-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  aspect-ratio: 4 / 3;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gallery-card:hover::after {
  opacity: 0.4;
}

.gallery-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 2;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Lightbox Styles */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-height: 80vh;
  max-width: 90vw;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.lightbox-img.loaded {
  opacity: 1;
}

.lightbox-caption {
  color: white;
  font-size: 1.4rem;
  margin-top: 20px;
  text-align: center;
  max-width: 80%;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Controls */
.lightbox-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 30px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn:hover {
  background: rgba(255, 100, 100, 0.5);
  transform: rotate(90deg);
}

.lightbox-counter {
  position: absolute;
  top: 30px;
  left: 30px;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 15px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* Loading Animation */
.lightbox-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid var(--luxury-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

::-webkit-scrollbar {width: 2px;height: 8px;transition: all 0.9s ease;}
/* ::-webkit-scrollbar:hover {width: 8px;} */
::-webkit-scrollbar-track {background: #f1f1f1;}
::-webkit-scrollbar-thumb {background: #888;}
::-webkit-scrollbar-thumb:hover {background: #555;}
body{overflow-x: hidden;}

/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .duco-features {
    grid-template-columns: 1fr;
  }

  .duco-comparison-wrapper {
    flex-direction: column;
  }

  .pricing-value-card.premium {
    transform: none;
  }

  .pricing-value-card.premium:hover {
    transform: translateY(-15px);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .floating-buttons {
    right: 20px;
    bottom: 20px;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .hero-form {
    margin-top: 3rem;
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 2rem;
  }

  .stats-number {
    font-size: 2.5rem;
  }

  .navbar-nav {
    gap: 0;
    text-align: center;
    padding-top: 1rem;
  }

  .nav-link {
    padding: 0.75rem 0 !important;
  }

  .btn-quote {
    margin-top: 1rem;
    width: 100%;
  }

  .duco-info-card {
    flex-direction: column;
    text-align: center;
  }

  .duco-info-icon {
    margin: 0 auto 1rem;
  }

  .control-btn {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .close-btn {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .lightbox-caption {
    font-size: 1.1rem;
    margin-top: 15px;
  }

  .lightbox-counter {
    top: 15px;
    left: 15px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-luxury-primary,
  .btn-luxury-outline {
    padding: 15px 25px;
    font-size: 0.8rem;
  }

  .testimonial-card {
    height: auto;
    min-height: 300px;
  }

  .gallery-section .section-title {
    font-size: 2rem;
  }

  .benefit-item {
    padding: 1rem;
  }

  .pricing-value-card {
    padding: 2rem 1.5rem;
  }
}

.lead {
  font-weight: 400;
  color: rgba(4, 7, 46, 0.8);
  margin-bottom: 1rem;
}
