/* ===========================
   COLOR SCHEME - Updated August 19, 2026
   =========================== */
:root {
  --primary: #ffffff;
  --secondary: #e74c3c;
  --accent: #3498db;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --dark-bg: #34495e;
  --card-bg: #ffffff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===========================
   BASE STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--primary);
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
}

h4 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* ===========================
   IMAGE OPTIMIZATION
   =========================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  background: var(--light-bg);
}

/* ===========================
   BUTTON STYLES
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.15);
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.25);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--secondary);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.25);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(231, 76, 60, 0.1);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
  background: transparent;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--secondary);
}

.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION - CAROUSEL WITH IMAGES
   =========================== */
.hero {
  position: relative;
  height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  background-color: #2c3e50;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #2c3e50;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-slide.active {
  opacity: 1;
  animation: zoomSlow 20s ease-in-out infinite;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 0;
  mix-blend-mode: multiply;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--white);
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.7;
}

.hero .btn-group {
  justify-content: center;
}

/* Page-specific hero content positioning */
#hero-home .hero-content {
  text-align: left;
  max-width: 600px;
  margin-left: -5rem;
  animation: slideIn 1s ease;
}

#hero-home h1 {
  font-size: 3rem;
  text-align: left;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
}

#hero-home p {
  text-align: left;
}

#hero-home .btn-group {
  justify-content: flex-start;
}

#hero-services .hero-content {
  margin-top: auto;
  margin-bottom: 8rem;
}

/* Carousel controls */
.carousel-control {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 1.2rem;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

@keyframes zoomSlow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===========================
   CONTAINER & SECTIONS
   =========================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   SERVICES NAVIGATION
   =========================== */
.services-nav-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #f0f1f3 100%);
  padding: 2rem;
  border-bottom: 1px solid rgba(231, 76, 60, 0.1);
}

.services-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.service-nav-link {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid transparent;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.service-nav-link:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(231, 76, 60, 0.15);
}

.service-nav-link:active {
  border-color: var(--secondary);
  background: rgba(231, 76, 60, 0.05);
  color: var(--secondary);
}

.section {
  padding: 100px 2rem;
  background-color: var(--primary);
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--text-dark) 50%, transparent 100%);
}

/* ===========================
   SECTION TITLE STYLING
   =========================== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  color: var(--text-dark);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: 2.5rem;
}

/* ===========================
   SERVICES SECTION - WITH IMAGE OVERLAY
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 420px;
  cursor: pointer;
  border: 1px solid rgba(231, 76, 60, 0.15);
  display: flex;
  flex-direction: column;
}

.service-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8e9eb 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.service-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.service-icon {
  font-size: 4rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15) translateY(-5px);
}

.service-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
  min-height: 180px;
}

.service-card h3 {
  margin: 0 0 1rem 0;
  padding: 0;
  font-size: 1.4rem;
  color: var(--text-dark);
  transition: color 0.3s ease;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-light);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary);
}

.service-card:hover .service-card-image {
  transform: translateY(-60px);
}

.service-card:hover h3 {
  color: var(--secondary);
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
  background-color: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.feature-number {
  font-size: 2.8rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-item h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.feature-item p {
  color: var(--text-dark);
}

/* ===========================
   ABOUT SECTION - MODERN LAYOUT
   =========================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  height: 500px;
  background: var(--light-bg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(85%) brightness(1.05) contrast(1.1);
  transition: filter 0.6s ease, transform 0.6s ease;
  display: block;
}

.about-image:hover img {
  filter: grayscale(0%) brightness(1) contrast(1);
  transform: scale(1.02);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ===========================
   TESTIMONIALS - CAROUSEL
   =========================== */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  animation: slideIn 0.6s ease;
}

.testimonial-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 5px solid var(--secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: var(--secondary);
  opacity: 0.2;
  font-weight: 700;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stars {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.testimonial-author {
  font-weight: 700;
  color: #2c3e50;
  font-size: 1rem;
}

/* ===========================
   IMAGE OPTIMIZATION
   =========================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   GALLERY SECTION - ENHANCED
   =========================== */
.gallery-section {
  background: var(--light-bg);
  padding: 80px 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: var(--light-bg);
  border: 1px solid rgba(231, 76, 60, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease;
  filter: grayscale(100%) brightness(1.05);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--secondary);
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.5) 0%, rgba(44, 62, 80, 0.5) 100%), url('assets/brand/Repeat_tile.jpg');
  background-size: auto, cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 40px 2rem;
  border-radius: 12px;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-section::before {
  content: '';
  display: none;
}

.cta-section::after {
  content: '';
  display: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background-color: var(--light-bg);
  color: var(--text-dark);
  padding: 3rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(44, 62, 80, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    height: 550px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 60px 1.5rem;
  }

  .hero {
    height: 450px;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  nav {
    height: 60px;
    padding: 0 1rem;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    gap: 0;
    padding: 2rem 0;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    font-size: 1.4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-nav {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .service-nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-item {
    height: 250px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    height: 350px;
  }

  .cta-section {
    padding: 50px 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .section {
    padding: 40px 1rem;
  }

  .services-nav-section {
    padding: 1.5rem;
  }

  .services-nav {
    gap: 0.5rem;
  }

  .service-nav-link {
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }

  .hero {
    height: 350px;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title h2::after {
    width: 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 250px;
  }

  .carousel-control {
    bottom: 1rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .service-card {
    height: auto;
  }

  .service-icon {
    font-size: 3rem;
  }
}
