/* Modern Redesign - Lamb General Contractors */
/* Simplified, Professional Design for Construction Business */
:root {
  --primary-dark: #1a2332;
  --primary-light: #2a3441;
  --card-bg: #ffffff;
  --card-bg-alt: #f8f9fa;
  --section-bg: #f5f6f8;
  --accent-orange: #d97706;
  --accent-blue: #0e3a5d;
  --accent-orange-light: #f59e0b;
  --text-primary: #1a2332;
  --text-secondary: #4b5563;
  --text-light: #6b7280;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --border-accent: rgba(217, 119, 6, 0.3);
}

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

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 100px;
  scroll-snap-type: none;
  height: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  background: var(--section-bg);
  color: var(--text-primary);
  overflow-x: hidden !important;
  overflow-y: auto !important;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: auto;
  overscroll-behavior-x: none;
  scroll-snap-type: none !important;
  height: auto !important;
  min-height: 100vh;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: auto;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
}

section {
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  display: block !important;
  position: relative !important;
  will-change: auto;
  position: relative !important;
}

p, li, span, div, a {
  color: var(--text-primary);
}

.container p, .container li, .container span, .container div, .row p, .row li, .row span, .row div, .col p, .col li, .col span, .col div, [class*=col-] p, [class*=col-] li, [class*=col-] span, [class*=col-] div {
  color: var(--text-primary) !important;
}
.container h1, .container h2, .container h3, .container h4, .container h5, .container h6, .row h1, .row h2, .row h3, .row h4, .row h5, .row h6, .col h1, .col h2, .col h3, .col h4, .col h5, .col h6, [class*=col-] h1, [class*=col-] h2, [class*=col-] h3, [class*=col-] h4, [class*=col-] h5, [class*=col-] h6 {
  color: var(--text-primary) !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary) !important;
}

p {
  color: var(--text-primary) !important;
}

.splash-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.splash-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.logo-container {
  margin-bottom: 2rem;
  position: relative;
}

.logo-text {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-orange);
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease;
  position: relative;
  display: inline-block;
}
.logo-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-orange);
  animation: expandLine 0.8s ease 0.3s forwards;
  transform-origin: center;
  width: 0;
}

.loader-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.loader-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-orange);
  animation: bounce 1.4s infinite ease-in-out;
}
.loader-dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.loader-dots span:nth-child(2) {
  animation-delay: -0.16s;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandLine {
  to {
    width: 60px;
  }
}
@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.navbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  will-change: box-shadow, transform;
  transform: translateZ(0);
}
.navbar-modern.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .brand-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.nav-brand .brand-link:hover {
  color: var(--accent-orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-orange);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-menu.active {
    max-height: 400px;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
}
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--accent-orange);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link.nav-cta {
  background: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  color: var(--white);
  transition: all 0.3s ease;
}
.nav-link.nav-cta::after {
  display: none;
}
.nav-link.nav-cta:hover {
  background: var(--accent-orange-light);
  border-color: var(--accent-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.hero-section {
  position: relative;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  width: 100vw !important;
  max-width: 100vw !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(80px + 2rem) 2rem 2rem !important;
  margin: 0 !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden !important;
  box-sizing: border-box;
  z-index: 1;
  top: 0;
  left: 0;
}
.hero-section .hero-content {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 900px;
}
@media (max-width: 768px) {
  .hero-section {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    padding: calc(70px + 1rem) 1rem 1rem !important;
    padding-top: calc(70px + 1rem) !important;
    padding-bottom: 1rem !important;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .hero-section .hero-content {
    padding: 0 1rem;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(217, 119, 6, 0.1);
  border: 2px solid var(--accent-orange);
  border-radius: 50px;
  color: var(--accent-orange);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-title .title-main {
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.hero-title .title-sub {
  color: var(--accent-orange);
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-description strong {
  color: var(--accent-orange);
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 1.1rem;
  }
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary-modern {
  background: var(--accent-orange);
  color: var(--white);
}
.btn-primary-modern:hover {
  background: var(--accent-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.btn-secondary-modern {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}
.btn-secondary-modern:hover {
  background: var(--accent-orange);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.hero-footer-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.hero-footer-text i {
  color: var(--accent-orange);
}

section:not(.hero-section) {
  position: relative;
  padding: 5rem 2rem;
  background: var(--white);
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  display: block;
  margin: 0;
  z-index: 0;
}
section:not(.hero-section):first-of-type {
  margin-top: 0;
}

section:first-of-type {
  margin-top: 0;
}

section.hero-section + section {
  padding-top: 3rem !important;
  margin-top: 0 !important;
  position: relative;
  top: 0;
  padding: 3rem 2rem 5rem !important;
}
section.hero-section + section.pt-100 {
  padding-top: 3rem !important;
}
section.hero-section + section:nth-child(even) {
  background: var(--section-bg);
}
section.hero-section + section .container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
section.hero-section + section p, section.hero-section + section li, section.hero-section + section span {
  color: var(--text-primary);
}
section.hero-section + section h1, section.hero-section + section h2, section.hero-section + section h3, section.hero-section + section h4, section.hero-section + section h5, section.hero-section + section h6 {
  color: var(--text-primary);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.8;
  margin: 2rem auto 3rem;
  max-width: 800px;
}
.section-subtitle strong {
  color: var(--accent-orange);
  font-weight: 600;
}

.service-feature {
  background: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--white) !important;
}
.service-feature p, .service-feature h1, .service-feature h2, .service-feature h3, .service-feature h4, .service-feature h5, .service-feature h6, .service-feature span, .service-feature div, .service-feature li, .service-feature strong, .service-feature em {
  color: var(--white) !important;
}
.service-feature:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.service-icon {
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-icon i {
  color: var(--accent-orange);
}

.service-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white) !important;
  margin-bottom: 1rem;
  text-align: center;
}

.service-description {
  color: var(--white) !important;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1rem;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.service-benefits li {
  color: var(--white) !important;
  padding: 0.75rem 0;
  line-height: 1.8;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-benefits li:last-child {
  border-bottom: none;
}
.service-benefits li i {
  color: var(--accent-orange) !important;
  margin-right: 0.75rem;
}
.service-benefits li *:not(i) {
  color: var(--white) !important;
}

.card-wrapper {
  margin-bottom: 2rem;
}
.card-wrapper .card {
  background: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--white) !important;
}
.card-wrapper .card p, .card-wrapper .card h3, .card-wrapper .card h1, .card-wrapper .card h2, .card-wrapper .card h4, .card-wrapper .card h5, .card-wrapper .card h6, .card-wrapper .card span, .card-wrapper .card div, .card-wrapper .card li {
  color: var(--white) !important;
}
.card-wrapper .card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

#footer {
  background: var(--primary-dark);
  border-top: 3px solid var(--accent-orange);
  padding: 3rem 0 2rem;
}
#footer p, #footer li, #footer a, #footer span {
  color: var(--white) !important;
}
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
  color: var(--white) !important;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: var(--accent-orange);
}

.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact li a:hover {
  color: var(--accent-orange);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 0.875rem;
}

.about-content {
  padding: 2rem 0;
}

.about-text {
  color: var(--text-primary);
  font-size: 1.125rem;
  line-height: 1.8;
  background: var(--card-bg-alt);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-orange);
}
.about-text strong {
  color: var(--accent-orange);
  font-weight: 600;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-color);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.about-image:hover {
  transform: scale(1.03);
}

.portfolio-categories {
  margin-bottom: 2rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.category-tab {
  padding: 0.875rem 2rem;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-tab:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}
.category-tab.active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
}

.gallery-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  overflow: visible !important;
  position: relative;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.gallery-grid.active {
  display: grid;
  animation: fadeIn 0.5s ease;
}
.gallery-grid img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 2px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background: var(--card-bg-alt);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-orange);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  decoding: async;
  object-fit: cover;
  transition: transform 0.5s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-interpolation-mode: bicubic;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reviews-carousel-modern {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
}
.reviews-carousel-modern.carousel .carousel-item {
  position: relative !important;
  max-height: none !important;
}
.reviews-carousel-modern.carousel .carousel-item img {
  position: relative !important;
  left: auto !important;
  transform: none !important;
}

.reviews-carousel-modern .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-carousel-modern .carousel-item {
  text-align: center;
  padding: 2rem 0;
  min-height: 500px;
  display: none;
  align-items: center;
  justify-content: center;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
  position: relative;
}
.reviews-carousel-modern .carousel-item.active {
  display: flex !important;
}
.reviews-carousel-modern .carousel-item.carousel-item-next, .reviews-carousel-modern .carousel-item.carousel-item-prev {
  display: flex;
}
.reviews-carousel-modern .carousel-item.carousel-item-next:not(.carousel-item-start), .reviews-carousel-modern .carousel-item.active.carousel-item-end {
  transform: translateX(100%);
}
.reviews-carousel-modern .carousel-item.carousel-item-prev:not(.carousel-item-end), .reviews-carousel-modern .carousel-item.active.carousel-item-start {
  transform: translateX(-100%);
}

.reviews-carousel-modern .carousel-item img.review-image {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 650px !important;
  object-fit: contain !important;
  border-radius: 8px;
  display: block !important;
  margin: 0 auto !important;
  position: relative !important;
  left: auto !important;
  transform: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.reviews-carousel-modern .carousel-item img.review-image:hover {
  transform: scale(1.02) !important;
}

.reviews-carousel-modern .carousel-indicators {
  margin-bottom: 1.5rem;
  position: relative;
}
.reviews-carousel-modern .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  opacity: 0.4;
  border: 2px solid var(--white);
  margin: 0 5px;
  transition: all 0.3s ease;
}
.reviews-carousel-modern .carousel-indicators button:hover {
  opacity: 0.7;
  transform: scale(1.2);
}
.reviews-carousel-modern .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.3);
}

.reviews-carousel-modern .carousel-control-prev,
.reviews-carousel-modern .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  opacity: 0.9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.reviews-carousel-modern .carousel-control-prev:hover,
.reviews-carousel-modern .carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.reviews-carousel-modern .carousel-control-prev:focus,
.reviews-carousel-modern .carousel-control-next:focus {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

.reviews-carousel-modern .carousel-control-prev {
  left: 15px;
}

.reviews-carousel-modern .carousel-control-next {
  right: 15px;
}

.reviews-carousel-modern .carousel-control-prev-icon,
.reviews-carousel-modern .carousel-control-next-icon {
  background-color: var(--accent-orange);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-size: 60% 60%;
}

@media (max-width: 768px) {
  .reviews-carousel-modern {
    padding: 0 0.5rem;
  }
  .reviews-carousel-modern .carousel-item {
    min-height: 400px;
    padding: 1rem 0;
  }
  .review-image {
    max-height: 450px;
  }
  .reviews-carousel-modern .carousel-control-prev,
  .reviews-carousel-modern .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .reviews-carousel-modern .carousel-control-prev {
    left: 10px;
  }
  .reviews-carousel-modern .carousel-control-next {
    right: 10px;
  }
  .reviews-carousel-modern .carousel-control-prev-icon,
  .reviews-carousel-modern .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
  .reviews-carousel-modern .carousel-indicators {
    margin-bottom: 1rem;
  }
  .reviews-carousel-modern .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}
.contact-info-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  display: block;
}

.contact-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.3s ease;
  font-weight: 500;
}
.contact-link:hover {
  color: var(--accent-orange-light);
  text-decoration: underline;
}

.contact-form-modern {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-control-modern {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--card-bg-alt);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control-modern:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}
.form-control-modern::placeholder {
  color: var(--text-light);
  opacity: 0.8;
}
.form-control-modern option {
  background: var(--white);
  color: var(--text-primary);
}

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

.fade-in,
.fade-in-auto,
.fade-in-buttons {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(20px);
  will-change: opacity, transform;
}
.fade-in.visible,
.fade-in-auto.visible,
.fade-in-buttons.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  .hero-section {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    padding: calc(70px + 1rem) 1rem 1rem !important;
    padding-top: calc(70px + 1rem) !important;
    padding-bottom: 1rem !important;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  section {
    padding: 3rem 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    overflow: visible !important;
    touch-action: pan-y;
  }
  .gallery-grid .gallery-item {
    touch-action: manipulation;
  }
  .gallery-grid .gallery-item img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  #section2-link {
    overflow: visible !important;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .portfolio-gallery {
    overflow: visible !important;
    touch-action: pan-y;
  }
  #section2-link {
    overflow: visible !important;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .portfolio-gallery {
    overflow: visible !important;
    touch-action: pan-y;
  }
  .category-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .category-tabs .category-tab {
    width: 100%;
    text-align: center;
  }
  .contact-info-card,
  .contact-form-modern {
    margin-bottom: 2rem;
  }
  .service-feature {
    padding: 2rem;
  }
}

/*# sourceMappingURL=modern-redesign.css.map */
