/* ===================================
   HEADER STYLES
   =================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fffef2;
  padding: 16px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.site-logo a {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
}

.site-logo img {
  height: 4rem;
  width: auto;
  display: block;
}

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

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu li a {
  color: #000000;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-normal);
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-color);
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-normal);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: #000000;
  border-radius: 0.125rem;
  transition: var(--transition-normal);
}

/* ===================================
   HERO SECTION STYLES
   =================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
  color: var(--text-light);
  padding: 2rem 0;
  animation: fadeInLeft 1s ease;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #ffffff;
  letter-spacing: -1.5px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: #ffffff !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%) !important;
  transform: translateY(-3px);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.hero-image {
  position: relative;
  z-index: 3;
  animation: fadeInRight 1s ease;
}

.hero-image-inner {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}

.hero-image-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
  z-index: 2;
}

.hero-image:hover .hero-image-inner {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ===================================
   ABOUT SECTION STYLES
   =================================== */
.about-section {
  padding: 8rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(185, 0, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* About Image with Premium Effects */
.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  pointer-events: none;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.about-image::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(185, 0, 0, 0.1);
  border-radius: 2rem;
  z-index: -1;
  transition: all 0.5s ease;
}

.about-image:hover::before {
  transform: translate(-10px, -10px);
  border-color: rgba(185, 0, 0, 0.2);
}

/* Section Header Utilities */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  width: 100%;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #b90000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  background: rgba(185, 0, 0, 0.05);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.section-subtitle, .section-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
  max-width: 700px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  padding-left: 1rem;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.about-title .highlight {
  color: #b90000;
  position: relative;
}

.about-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 3rem;
  max-width: 90%;
}

/* Feature Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(185, 0, 0, 0.1);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b90000 0%, #8b0000 100%);
  color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(185, 0, 0, 0.2);
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   WHY US SECTION STYLES
   =================================== */
.why-us-section {
  padding: 8rem 0;
  background-color: #ffffff;
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.why-us-card {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why-us-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(185, 0, 0, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.why-us-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  border-color: rgba(185, 0, 0, 0.1);
}

.why-us-card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fcedef 0%, #fdebed 100%);
  color: #b90000;
  border-radius: 1.5rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-us-card:hover .card-icon {
  background: #b90000;
  color: #ffffff;
  transform: rotateY(180deg) scale(1.1);
}

.card-icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

.why-us-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.why-us-card .card-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Card Title */
.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

/* Card Description */
.card-description {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0;
}

/* ===================================
   SERVICE SECTION STYLES
   =================================== */
.service-section {
  padding: 8rem 0;
  background-color: #fcfcfc;
  position: relative;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Service Card Premium */
.service-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 0;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(185, 0, 0, 0.1);
}

/* Card Badge Labels */
.card-category {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  background: rgba(185, 0, 0, 0.9);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(185, 0, 0, 0.3);
}

.card-rating {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-rating .star {
  color: #ffd700;
  font-size: 1rem;
}

/* Card Image */
.card-image {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .card-image img {
  transform: scale(1.15);
}

/* Card Content Area */
.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
  padding: 0;
  letter-spacing: -0.5px;
  text-align: center;
}

/* Pricing Layout */
.card-pricing {
  margin: 0 0 2rem 0;
  background: #f8f9fa;
  border-radius: 1.25rem;
  padding: 0.5rem;
  border: none;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-label {
  font-family: var(--font-body);
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
}

.pricing-value {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #b90000;
  font-size: 1.05rem;
}

/* Card Action Button */
.service-card .btn {
  width: 100%;
  margin: 0;
  padding: 1.1rem;
  border-radius: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.service-card .btn:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.25);
}

/* ===================================
   CTA SECTION STYLES
   =================================== */
/* ===================================
   CTA SECTION STYLES
   =================================== */
.cta-section {
  padding: 8rem 0;
  background-color: #fcfcfc;
  position: relative;
}

.cta-premium-card {
  background: #0c0c0c;
  border-radius: 3rem;
  padding: 5rem;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.cta-premium-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(185, 0, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  background: rgba(185, 0, 0, 0.1);
  color: #b90000;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(185, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -2px !important;
}

.cta-description {
  font-family: var(--font-body);
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 2.5rem !important;
  text-align: left !important;
}

.cta-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-mini-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.mini-check {
  width: 1.5rem;
  height: 1.5rem;
  background: #b90000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* Action Box */
.cta-action-box {
  position: relative;
}

.action-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.action-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.action-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-premium-wa, .btn-premium-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-premium-wa {
  background: #25d366;
  color: #ffffff;
}

.btn-premium-wa:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-premium-phone {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-premium-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .cta-premium-card {
    padding: 3.5rem;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .cta-description {
    text-align: center !important;
  }
  .cta-features-list {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-premium-card {
    padding: 3rem 1.5rem;
    border-radius: 2rem;
  }
  .cta-title {
    font-size: 2rem !important;
  }
  .action-card {
    padding: 2rem 1.5rem;
  }
}

/* ===================================
   GALLERY SECTION STYLES
   =================================== */
.gallery-section {
  padding: 8rem 0;
  background-color: #ffffff;
  position: relative;
}

/* Gallery Slider */
.gallery-slider {
  margin-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.gallery-item-wrapper {
  height: auto;
}

.gallery-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
}

.gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Glassmorphism Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  transition: all 0.5s ease;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.overlay-content {
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.view-tag {
  display: inline-block;
  background: var(--primary-color, #b90000);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 10px rgba(185, 0, 0, 0.3);
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}



/* Swiper Pagination */
.gallery-slider .swiper-pagination {
  bottom: 0 !important;
}

.gallery-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-pagination-bullet-active {
  background: var(--primary-color, #b90000);
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-section {
    padding: 4rem 0;
  }
  
  .gallery-slider {
    margin-top: 2rem;
    padding-bottom: 3rem;
  }
  
  .gallery-card {
    border-radius: 1.5rem;
  }
}

/* ===================================
   CLIENT/TESTIMONIAL SECTION STYLES
   =================================== */
.client-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

/* Testimonial Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* Client Avatar (Initials) */
.client-avatar {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d02b22;
  color: var(--text-light);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Client Info */
.client-info {
  flex: 1;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Client Rating */
.client-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  color: #e0e0e0;
  font-size: 1rem;
}

.star.filled {
  color: #ffd700;
}

/* Google Badge */
.google-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-gray);
}

.google-badge svg {
  flex-shrink: 0;
}

/* Testimonial Text */
.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 2.5rem;
  color: #d02b22;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ===================================
   MAP SECTION STYLES
   =================================== */
.map-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.map-container {
  margin-top: 3rem;
}

/* Map Wrapper */
.map-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* ===================================
   FOOTER STYLES
   =================================== */
.site-footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-description {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 50%;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-normal);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #d02b22;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-normal);
}

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

/* Footer Bottom */
.footer-bottom {
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #ffffff;
  margin: 0;
}

/* ===================================
   RESPONSIVE STYLES - MOBILE
   =================================== */
@media (max-width: 768px) {
  /* Header Mobile */
  .site-header {
    padding: 0.75rem 0;
  }

  .site-logo a {
    font-size: 1.125rem;
  }

  .site-logo img {
    height: 4rem;
  }

  /* Mobile Menu */
  .nav-menu {
    position: fixed;
    top: 5.5rem;
    right: -100%;
    width: 100%;
    max-width: 20rem;
    height: calc(100vh - 4rem);
    background-color: #fffef2;
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-lg) 0;
    transition: var(--transition-normal);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

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

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

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

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

  /* Hero Mobile */
  .hero-section {
    min-height: auto;
    background-attachment: scroll;
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-inner {
    transform: none;
    border-radius: 1.5rem;
  }

  .hero-image img {
    height: 300px;
  }

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

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0;
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 1rem 2rem;
  }

  /* About Section Mobile */
  .about-section {
    padding: 5rem 0 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 0;
  }

  .about-image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-content {
    padding: 0;
    text-align: center;
    width: 100%;
  }

  .about-title {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .about-description {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-item {
    padding: 1.5rem;
    align-items: center;
  }

  .about-image::before {
    display: block;
    bottom: -15px;
    right: -15px;
  }

  .image-wrapper {
    border-radius: 1.5rem;
  }

  .section-label {
    font-size: 0.75rem;
    padding-left: 2.5rem;
  }

  .section-label::before {
    width: 2rem;
  }

  .feature-item {
    padding: 0.75rem;
  }

  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .feature-text h4 {
    font-size: 1rem;
  }

  .feature-text p {
    font-size: 0.875rem;
  }

  /* Why Us Section Mobile */
  .why-us-section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header .section-label {
    font-size: 0.75rem;
    padding: 0 2.5rem;
  }

  .section-header .section-label::before,
  .section-header .section-label::after {
    width: 2rem;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us-card {
    padding: 1.5rem;
  }

  .card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
  }

  .card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .card-title {
    font-size: 1.125rem;
  }

  .card-description {
    font-size: 0.875rem;
  }

  /* Service Section Mobile */
  .service-section {
    padding: 3rem 0;
  }

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

  .service-card {
    padding: 0;
  }

  .card-category {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.6875rem;
    padding: 0.3125rem 0.75rem;
  }

  .card-image {
    height: 360px;
  }

  .card-name {
    font-size: 1.125rem;
    padding: 0 1.25rem;
    margin-top: 0.875rem;
    text-align: center;
  }

  .card-rating {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.875rem;
  }

  .card-rating .star {
    font-size: 1rem;
  }

  .card-price {
    font-size: 0.9375rem;
    padding: 0 1.25rem;
  }

  .card-info {
    font-size: 0.8125rem;
    padding: 0 1.25rem;
  }

  .service-card .btn {
    width: calc(100% - 2.5rem);
    margin: 0 1.25rem 1.25rem;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-content {
    margin-bottom: 2rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .cta-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-feature-item {
    padding: 1.25rem;
  }

  .feature-icon-circle {
    width: 3rem;
    height: 3rem;
  }

  .feature-icon-circle svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .cta-feature-item .feature-text h4 {
    font-size: 1rem;
  }

  .cta-feature-item .feature-text p {
    font-size: 0.8125rem;
  }



  /* Client/Testimonial Section Mobile */
  .client-section {
    padding: 3rem 0;
  }

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

  .testimonial-card {
    padding: 1.5rem;
  }

  .client-avatar {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }

  .client-name {
    font-size: 1rem;
  }

  .star {
    font-size: 0.875rem;
  }

  .google-badge {
    font-size: 0.6875rem;
  }

  .testimonial-text {
    font-size: 0.875rem;
    padding-left: 1.25rem;
  }

  .testimonial-text::before {
    font-size: 2rem;
  }

  /* Map Section Mobile */
  .map-section {
    padding: 3rem 0;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  /* Footer Mobile */

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .footer-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 0.875rem;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }

  .footer-bottom p {
    font-size: 0.8125rem;
  }
}
