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

.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: var(--text-light);
}

.site-logo img {
  height: 3rem;
  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: var(--text-light);
  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: var(--text-light);
  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-top: 80px;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 900px;
  padding: var(--spacing-xl) 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease;
}

.hero-cta {
  animation: fadeInUp 1.4s ease;
}

.hero-cta .btn {
  font-size: 1.125rem;
  padding: 1rem 3rem;
}

.hero-cta .btn:hover {
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
}

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

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

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

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* About Image with Shine Effect */
.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Shine Effect */
.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #E69D47;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2px;
  background-color: #E69D47;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-title .highlight {
  color: #E69D47;
}

.about-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* Feature Items */
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.feature-item:hover {
  background-color: #f8f9fa;
  transform: translateX(8px);
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E69D47;
  color: var(--text-light);
  border-radius: var(--radius-md);
}

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

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   WHY US SECTION STYLES
   =================================== */
.why-us-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #E69D47;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 3rem;
}

.section-header .section-label::before,
.section-header .section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2px;
  background-color: #E69D47;
}

.section-header .section-label::before {
  left: 0;
}

.section-header .section-label::after {
  right: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* Why Us Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Why Us Card */
.why-us-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(50, 205, 50, 0.15);
  border-color: var(--primary-color);
}

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

/* Card Icon */
.card-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E69D47;
  color: var(--text-light);
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.why-us-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 24px rgba(50, 205, 50, 0.4);
}

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

/* 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: 5rem 0;
  background-color: #ffffff;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 28px rgba(50, 205, 50, 0.2);
}

/* Card Category Badge - Overlay on Image */
.card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: #d02b22;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Card Image - Full Width & Height */
.card-image {
  width: 100%;
  height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

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

/* Card Name */
.card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  padding: 0 1.5rem;
  margin-top: 1rem;
}

/* Card Rating - Overlay on Image */
.card-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
}

.card-rating .star {
  color: #ffd700;
  font-size: 1.125rem;
  margin: 0 0.125rem;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Card Price */
.card-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  padding: 0 1.5rem;
}

.card-price--chat {
  color: var(--text-gray);
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Pricing Table */
.card-pricing {
  margin: 0.5rem 1.25rem 0.75rem;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.875rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s ease;
}

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

.pricing-row:nth-child(even) {
  background-color: #f9f9f9;
}

.pricing-row:hover {
  background-color: #f0faf0;
}

.pricing-label {
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  min-width: 60px;
}

.pricing-value {
  font-weight: 700;
  color: #d02b22;
  font-size: 0.9375rem;
  text-align: right;
}

.pricing-value small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-gray);
  margin-left: 2px;
}

.pricing-row--monthly {
  background: linear-gradient(
    90deg,
    rgba(208, 43, 34, 0.04) 0%,
    rgba(208, 43, 34, 0.08) 100%
  ) !important;
}

.pricing-row--monthly .pricing-label {
  color: #d02b22;
}

.pricing-row--monthly .pricing-value {
  color: #d02b22;
}

.card-info {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1.25rem;
  padding: 0 1.5rem;
}

/* Card Button */
.service-card .btn {
  width: calc(100% - 3rem);
  margin: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
}

/* ===================================
   CTA SECTION STYLES
   =================================== */
.cta-section {
  padding: 5rem 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.cta-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* CTA Content */
.cta-content {
  margin-bottom: 3rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-large svg {
  width: 1.25rem;
  height: 1.25rem;
}

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

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* CTA Features */
.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.cta-feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.feature-icon-circle {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-light);
  color: #000000;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.cta-feature-item .feature-text {
  text-align: left;
}

.cta-feature-item .feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.cta-feature-item .feature-text p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

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

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

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

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Gallery Image */
.gallery-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 4:3 Aspect Ratio */
  overflow: hidden;
  background-color: #e0e0e0;
}

.gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ===================================
   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;
  box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
}

/* 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);
  padding: 4rem 0 0;
}

/* 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: 2.5rem;
  }

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

  .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(255, 255, 255, 0.1);
  }

  .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: 4rem;
  }

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

  .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .hero-cta .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
  }

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

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

  .about-image {
    order: 1;
  }

  .about-content {
    order: 2;
  }

  .about-title {
    font-size: 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;
  }

  .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;
  }

  /* Gallery Section Mobile */
  .gallery-section {
    padding: 3rem 0;
  }

  .section-subtitle {
    font-size: 0.9375rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .gallery-image {
    padding-bottom: 100%; /* Slightly less tall on mobile */
  }

  /* 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 */
  .site-footer {
    padding: 3rem 0 0;
  }

  .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;
  }
}
