/* VSV Constructions Enhanced Performance Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --yellow: #f7c948;
  --dark: #2e2e2e;
  --white: #fff;
  --gray: #f5f5f5;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --shadow-light: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-medium: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-heavy: 0 8px 32px rgba(0,0,0,0.12);
}

/* Performance Optimizations */
* {
  box-sizing: border-box;
}

/* Preloader styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2e2e2e 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  animation: hidePreloader 3s forwards; /* Backup: auto-hide after 3s */
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes hidePreloader {
  0%, 90% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

.preloader-content {
  text-align: center;
  color: #f7c948;
}

.preloader-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulse 1.5s infinite;
}

.preloader-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(247,201,72,0.3);
  border-top: 3px solid #f7c948;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Performance Optimizations */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  transform: translateZ(0); /* Force hardware acceleration */
  backface-visibility: hidden;
}

/* Parallax and Animation Base Classes */
.parallax-container {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 1px;
}

.parallax-bg {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-element {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Stagger Animations */
.stagger-animation:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation:nth-child(6) { transition-delay: 0.6s; }

/* Floating Animation Keyframes */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-5px) rotate(1deg); 
  }
  50% { 
    transform: translateY(-10px) rotate(2deg); 
  }
  75% { 
    transform: translateY(-5px) rotate(1deg); 
  }
}

@keyframes floatReverse {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-3px) rotate(-1deg); 
  }
  50% { 
    transform: translateY(-8px) rotate(-2deg); 
  }
  75% { 
    transform: translateY(-3px) rotate(-1deg); 
  }
}

@keyframes slideInFromLeft {
  0% { 
    opacity: 0; 
    transform: translateX(-100px) scale(0.9); 
  }
  100% { 
    opacity: 1; 
    transform: translateX(0) scale(1); 
  }
}

@keyframes slideInFromRight {
  0% { 
    opacity: 0; 
    transform: translateX(100px) scale(0.9); 
  }
  100% { 
    opacity: 1; 
    transform: translateX(0) scale(1); 
  }
}

@keyframes slideInFromBottom {
  0% { 
    opacity: 0; 
    transform: translateY(100px) scale(0.9); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

@keyframes fadeInScale {
  0% { 
    opacity: 0; 
    transform: scale(0.8) rotate(-5deg); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1) rotate(0deg); 
  }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(247, 201, 72, 0.7); 
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 0 0 10px rgba(247, 201, 72, 0); 
  }
}

/* Enhanced Header with Parallax */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  transition: all var(--transition);
  transform: translateZ(0);
  will-change: transform;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  min-height: 64px;
  transition: all var(--transition);
}

/* Enhanced Logo with Animation */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  position: relative;
  transition: all var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  font-size: 2.1rem;
  color: var(--yellow);
  display: flex;
  align-items: center;
  margin-right: 0.2rem;
  animation: float 4s ease-in-out infinite;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  transition: all var(--transition);
}

.logo-tagline {
  display: block;
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.logo:hover .logo-tagline {
  opacity: 1;
}

/* Enhanced Navigation */
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.nav-menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(247,201,72,0.1), transparent);
  transition: left 0.5s ease;
}

.nav-menu li a:hover::before {
  left: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background: var(--yellow);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247,201,72,0.3);
}

/* Enhanced Button Styles */
.btn-quote {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffe29f 100%);
  color: var(--dark) !important;
  font-weight: 600;
  border-radius: 25px;
  padding: 0.6rem 1.8rem;
  margin-left: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(247,201,72,0.2);
  border: none;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-quote:hover::before {
  left: 0;
}

.btn-quote:hover {
  color: var(--yellow) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(247,201,72,0.4);
}

/* Mobile Navigation Enhancement */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  border-radius: 50%;
  transition: all var(--transition);
}

.nav-toggle:hover {
  background: rgba(247,201,72,0.1);
  transform: scale(1.1);
}

.bar {
  width: 100%;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section Enhancement */
.hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.7) 0%, rgba(247,201,72,0.1) 100%);
  z-index: 1;
}

/* Carousel Hero Styles */
.carousel-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  position: relative;
  top: 0;
  background: #000;
  overflow: hidden;
  z-index: 1;
}

.carousel-hero .carousel {
  height: 100vh;
  width: 100%;
}

.carousel-hero .carousel-item {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

.carousel-hero .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 46, 46, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
  z-index: 1;
}

.carousel-hero .carousel-caption {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem 1rem;
}

.carousel-hero .carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-hero .carousel-caption .accent {
  background: linear-gradient(135deg, #f7c948 0%, #e6b73d 100%);
  color: #2e2e2e;
  padding: 0.15em 0.5em;
  margin: 0 0.2em;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(247,201,72,0.3);
  transform: rotate(-1deg);
  font-size: 1em;
}

.carousel-hero .carousel-caption p {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-hero .btn-hero {
  background: linear-gradient(135deg, #f7c948 0%, #e6b73d 100%);
  color: #2e2e2e;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(247,201,72,0.4);
  transform: translateY(0);
  z-index: 1;
}

.carousel-hero .btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.carousel-hero .btn-hero:hover::before {
  left: 100%;
}

.carousel-hero .btn-hero:hover, .carousel-hero .btn-hero:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,201,72,0.6);
}

.carousel-hero .carousel-indicators {
  bottom: 30px;
}

.carousel-hero .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  border-radius: 50%;
  border: 2px solid rgba(247,201,72,0.5);
  background: transparent;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.carousel-hero .carousel-indicators .active {
  background: #f7c948;
  opacity: 1;
  border-color: #f7c948;
  transform: scale(1.2);
}

.carousel-hero .carousel-control-prev, .carousel-hero .carousel-control-next {
  width: 4rem;
  height: 4rem;
  background: rgba(247,201,72,0.1);
  border: 2px solid rgba(247,201,72,0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.carousel-hero .carousel-control-prev {
  left: 2rem;
}

.carousel-hero .carousel-control-next {
  right: 2rem;
}

.carousel-hero .carousel-control-prev:hover, .carousel-hero .carousel-control-next:hover {
  background: rgba(247,201,72,0.2);
  border-color: rgba(247,201,72,0.6);
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(30,30,30,0.85);
  color: #fff;
  padding: 4rem 3rem 3rem 3rem;
  border-radius: 25px;
  max-width: 650px;
  margin: 3rem 0;
  box-shadow: 0 15px 50px rgba(30,30,30,0.3);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-icon {
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-accent {
  color: var(--yellow);
  background: rgba(247,201,72,0.15);
  padding: 0.2em 0.6em;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(247,201,72,0.3);
  display: inline-block;
  margin: 0 0.3em;
  border: 1px solid rgba(247,201,72,0.3);
}

.hero-sub {
  font-size: 1.4rem;
  color: #f0f0f0;
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.95;
}

.btn-hero {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffe29f 100%);
  color: var(--dark) !important;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 35px;
  box-shadow: 0 6px 25px rgba(247,201,72,0.3);
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  outline: none;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-hero:hover::before {
  left: 0;
}

.btn-hero:hover {
  color: var(--yellow) !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(247,201,72,0.5);
}

/* Enhanced Services Section */
.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(247,201,72,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)" /></svg>');
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.services-section .section-title {
  color: var(--dark);
  text-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 3rem 2rem 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  min-height: 350px;
  border: 2px solid transparent;
  overflow: hidden;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, #ffe29f 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247,201,72,0.03) 0%, rgba(247,201,72,0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 25px;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03) rotateY(2deg);
  box-shadow: 0 20px 60px rgba(247,201,72,0.2);
  border-color: rgba(247,201,72,0.3);
}

.service-icon {
  font-size: 3.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--yellow) 0%, #ffe29f 100%);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 25px rgba(247,201,72,0.3);
  border: 3px solid rgba(255,255,255,0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
  animation: floatReverse 5s ease-in-out infinite;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(247,201,72,0.4);
  animation-play-state: paused;
}

.service-card h3 {
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 3;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--yellow);
}

.service-card p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 3;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: var(--dark);
}

/* Enhanced Projects Section */
.projects-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(247,201,72,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
  opacity: 0.3;
}

.projects-section .section-title {
  color: #fff;
  position: relative;
  z-index: 2;
}

.projects-section .section-title::after {
  background: linear-gradient(90deg, var(--yellow) 0%, #ffe29f 100%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.project-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: pointer;
  will-change: transform;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247,201,72,0.9) 0%, rgba(255,226,159,0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.project-card:hover {
  transform: translateY(-20px) scale(1.03) rotateX(5deg);
  box-shadow: 0 25px 80px rgba(247,201,72,0.3);
}

.project-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.1);
}

.project-info {
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 3;
}

.project-info h3 {
  margin: 0 0 1rem 0;
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.project-card:hover .project-info h3 {
  color: #fff;
}

.project-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.project-card:hover .project-info p {
  color: rgba(255,255,255,0.9);
}

/* Enhanced Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(247,201,72,0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(247,201,72,0.03) 0%, transparent 50%);
}

.testimonial-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, #ffe29f 100%);
  border-radius: 25px 25px 0 0;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02) rotateZ(1deg);
  box-shadow: 0 25px 70px rgba(247,201,72,0.2);
  border-color: rgba(247,201,72,0.3);
}

.testimonial-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--yellow);
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(247,201,72,0.3);
}

.testimonial-card:hover .testimonial-photo img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--dark);
  box-shadow: 0 12px 35px rgba(247,201,72,0.4);
}

/* Enhanced Footer */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
  color: #fff;
  padding: 4rem 0 1rem 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, #ffe29f 100%);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerDots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="0.5" fill="rgba(247,201,72,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerDots)" /></svg>');
  opacity: 0.5;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-social a {
  color: var(--yellow);
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: all 0.4s ease;
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(247,201,72,0.1);
  text-align: center;
  line-height: 45px;
  border: 2px solid transparent;
}

.footer-social a:hover {
  color: #fff;
  background: var(--yellow);
  transform: translateY(-5px) scale(1.1);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 25px rgba(247,201,72,0.4);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .hero-title { font-size: 2.8rem; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .projects-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
}

@media (max-width: 992px) {
  .hero-content { padding: 3rem 2rem 2.5rem 2rem; }
  .hero-title { font-size: 2.4rem; }
  .services-section, .projects-section, .testimonials-section { padding: 4rem 0; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  .projects-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
  /* Carousel Hero Responsive */
  .carousel-hero .carousel-caption h1 { 
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.1;
  }
  .carousel-hero .carousel-caption p { 
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.4;
  }
  .carousel-hero .btn-hero { 
    font-size: 1rem; 
    padding: 0.9rem 2.3rem;
    border-radius: 30px;
  }
  .carousel-hero .carousel-control-prev, .carousel-hero .carousel-control-next { 
    width: 3.5rem; 
    height: 3.5rem;
  }
  .carousel-hero .carousel-control-prev {
    left: 1rem;
  }
  .carousel-hero .carousel-control-next {
    right: 1rem;
  }
  
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 64px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .nav-menu li a {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
  }
  
  .hero { min-height: 100vh; background-attachment: scroll; }
  .hero-content { max-width: 90%; padding: 2.5rem 1.5rem; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1.2rem; }
  
  .services-grid, .projects-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .service-card, .project-card { 
    max-width: 100%; 
    margin: 0 auto;
  }
  
  .footer-container { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .navbar { padding: 0.5rem 1rem; }
  .hero-content { padding: 2rem 1rem; }
  .hero-title { font-size: 1.8rem; }
  .services-section, .projects-section, .testimonials-section { padding: 3rem 0; }
  .service-card, .project-card, .testimonial-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-sub { font-size: 1.1rem; }
  .btn-hero { padding: 0.8rem 2rem; font-size: 1.1rem; }
  .service-icon { width: 70px; height: 70px; font-size: 3rem; }
  .service-card h3 { font-size: 1.3rem; }
  .project-info h3 { font-size: 1.3rem; }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, #ffe29f 100%);
  border-radius: 2px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow) 0%, #ffe29f 100%);
  color: var(--dark);
  font-weight: 600;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2.5rem;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(247,201,72,0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--yellow);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(247,201,72,0.4);
}

.text-center { text-align: center; }

/* Performance Enhancements */
.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  color: var(--yellow);
}

.preloader-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulse 1.5s infinite;
}

.preloader-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(247,201,72,0.3);
  border-top: 3px solid var(--yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.92);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  position: relative;
}
.logo-icon {
  font-size: 2.1rem;
  color: var(--yellow);
  display: flex;
  align-items: center;
  margin-right: 0.2rem;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}
.logo-tagline {
  display: block;
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  background: var(--yellow);
  color: var(--white);
}
.btn-quote {
  background: var(--yellow);
  color: var(--dark) !important;
  font-weight: 600;
  border-radius: 24px;
  padding: 0.5rem 1.5rem;
  margin-left: 1rem;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 8px rgba(247,201,72,0.08);
}
.btn-quote:hover {
  background: var(--dark);
  color: var(--yellow) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  border-radius: 50%;
  transition: background 0.2s;
}
.nav-toggle:focus {
  background: var(--yellow);
  outline: none;
}
.bar {
  width: 100%;
  height: 4px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
@media (max-width: 900px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  .nav-menu {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all var(--transition);
  }
  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .logo-text {
    font-size: 1.1rem;
  }
  .logo-tagline {
    display: none;
  }
}

/* Footer Styles */
.site-footer {
  background: #1e1e1e;
  color: #fff;
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-about, .footer-links, .footer-contact {
  flex: 1 1 220px;
}
.footer-about h3 {
  color: #f7c948;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.footer-about p {
  color: #eee;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.footer-links h4, .footer-contact h4 {
  color: #f7c948;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.02rem;
}
.footer-links a:hover {
  color: #f7c948;
}
.footer-contact ul li {
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}
.footer-contact span {
  color: #f7c948;
  font-weight: 600;
  margin-right: 0.3rem;
}
.footer-social {
  margin-top: 1rem;
}
.footer-social a {
  color: #f7c948;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.2s;
  display: inline-block;
}
.footer-social a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #bbb;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 0.7rem 2rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 8px rgba(247,201,72,0.08);
  cursor: pointer;
}
.btn:hover {
  background: var(--dark);
  color: var(--yellow);
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: center;
}
.text-center {
  text-align: center;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}
@media (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 0.5rem;
  }
}

/* Scroll Animations (AOS) */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos="fade-in"] {
  transform: none;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}
[data-aos="fade-in"].aos-animate {
  opacity: 1;
}
[data-aos-delay="100"] {
  transition-delay: 0.1s;
}
[data-aos-delay="200"] {
  transition-delay: 0.2s;
}
[data-aos-delay="350"] {
  transition-delay: 0.35s;
}

/* Hero Section Styles (Reverted) */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2.5rem;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(30,30,30,0.88) 70%, rgba(247,201,72,0.18) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(30,30,30,0.78);
  color: #fff;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  border-radius: 20px;
  max-width: 540px;
  margin: 3rem 0;
  box-shadow: 0 8px 32px rgba(30,30,30,0.12);
  text-align: center;
}
.hero-icon {
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 1px;
}
.hero-accent {
  color: #f7c948;
  background: #1e1e1e;
  padding: 0.1em 0.5em;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(247,201,72,0.12);
  display: inline-block;
  margin: 0 0.2em;
}
.hero-sub {
  font-size: 1.18rem;
  color: #eeeeee;
  margin-bottom: 2.2rem;
  font-weight: 500;
}
.btn-hero {
  background: #f7c948;
  color: #1e1e1e !important;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border-radius: 28px;
  box-shadow: 0 4px 18px rgba(247,201,72,0.18);
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  border: none;
  outline: none;
}
.btn-hero:hover {
  background: #1e1e1e;
  color: #f7c948 !important;
  box-shadow: 0 6px 24px rgba(30,30,30,0.18);
}
@media (max-width: 900px) {
  .hero-content {
    padding: 2rem 1.2rem;
    max-width: 98vw;
  }
  .hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding: 1.2rem 0.5rem;
    margin: 1.5rem 0;
  }
  .hero-title {
    font-size: 1.1rem;
  }
  .hero-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* Colorful Services Section Enhancements */
.services-section {
  background: linear-gradient(120deg, #f7c948 0%, #ffe29f 100%);
  position: relative;
  z-index: 1;
}
.services-section .section-title {
  color: #222;
  text-shadow: 0 2px 8px rgba(247,201,72,0.10);
}
.services-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: linear-gradient(135deg, #fffbe6 60%, #ffe29f 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(247,201,72,0.18), 0 2px 8px rgba(30,30,30,0.08);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, background 0.35s;
  position: relative;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 280px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(60px);
}
.service-card.animated {
  animation: serviceCardIn 1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes serviceCardIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.95); }
  80% { opacity: 1; transform: translateY(-8px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.service-card:hover {
  background: linear-gradient(135deg, #ffe29f 60%, #f7c948 100%);
  transform: translateY(-12px) scale(1.04) rotate(-1deg);
  box-shadow: 0 12px 36px rgba(247,201,72,0.22), 0 4px 16px rgba(30,30,30,0.10);
}
.service-icon {
  font-size: 3.2rem;
  color: #fff;
  background: linear-gradient(135deg, #f7c948 60%, #ffb347 100%);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 4px 18px rgba(247,201,72,0.18);
  border: 3px solid #fffbe6;
}
.service-card h3 {
  color: #f7c948;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.7rem 0 0.8rem 0;
  letter-spacing: 0.5px;
}
.service-card p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .services-grid { flex-direction: column; align-items: center; }
  .service-card { min-width: 220px; max-width: 100%; }
}

/* Featured Projects Section - Professional Enhancements */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(30,30,30,0.08);
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.project-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(30,30,30,0.92) 80%, rgba(30,30,30,0.0) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1rem 1rem;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 0.3s;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.project-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(247,201,72,0.16);
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}
.project-overlay h3 {
  margin: 0 0 0.3rem 0;
  color: #f7c948;
  font-size: 1.18rem;
  font-weight: 700;
}
.project-overlay p {
  margin: 0;
  font-size: 0.98rem;
  color: #eee;
}
.btn-projects {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  border-radius: 24px;
  padding: 0.7rem 2.2rem;
  margin-top: 1.2rem;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(247,201,72,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  display: inline-block;
}
.btn-projects:hover,
.btn-projects:focus {
  background: var(--dark);
  color: var(--yellow);
}
@media (max-width: 900px) {
  .projects-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .project-card {
    max-width: 100%;
  }
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  flex: 1 1 220px;
  max-width: 300px;
  position: relative;
}
.testimonial-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--yellow);
}
.testimonial-info h3 {
  margin: 0.5rem 0 0.3rem 0;
  color: var(--yellow);
}
.stars {
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

/* About Page */
.about-hero {
  background: var(--yellow);
  color: var(--dark);
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.mvv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.mvv-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 320px;
}
.mvv-item ul {
  padding-left: 1.2rem;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.timeline-item {
  background: var(--white);
  border-left: 4px solid var(--yellow);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  position: relative;
}
.timeline-year {
  font-weight: 700;
  color: var(--yellow);
  margin-right: 1rem;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.team-member {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1.5rem 1rem;
  text-align: center;
  flex: 1 1 220px;
  max-width: 220px;
}
.team-member img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--yellow);
}

/* Contact Page */
.contact-main .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.contact-form, .contact-info {
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  padding: 1.25rem;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 0.75rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #ffffff;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus {
  border: 1px solid #666;
  outline: none;
  box-shadow: none;
}
.contact-form .btn {
  margin-top: 0.25rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  background: var(--dark);
  color: var(--white);
  transition: opacity 0.2s ease;
}
.contact-form .btn:hover {
  opacity: 0.9;
  background: var(--dark);
  color: var(--white);
}
.contact-form .btn i {
  margin-right: 0.4rem;
  font-size: 0.85rem;
}
.error-message {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.contact-info li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}
.contact-info i {
  color: var(--yellow);
  margin-right: 0.5rem;
}
.contact-social a {
  color: var(--yellow);
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color var(--transition);
}
.contact-social a:hover {
  color: var(--dark);
}
.contact-map {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

/* CTA Section */
.cta-section {
  background: var(--yellow);
  color: var(--dark);
  padding: 2.5rem 0;
  margin: 3rem 0 0 0;
  border-radius: 12px;
}

/* CTA Card Enhancements */
.cta-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(46,46,46,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 520px;
  margin: 0 auto;
  border-left: 6px solid var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.cta-icon {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-sub {
  color: #555;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
  font-weight: 500;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.08rem;
  font-weight: 600;
  background: var(--dark);
  color: var(--yellow) !important;
  border-radius: 24px;
  padding: 0.7rem 2.2rem;
  box-shadow: 0 2px 12px rgba(46,46,46,0.08);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
}
.btn-cta:hover, .btn-cta:focus {
  background: var(--yellow);
  color: var(--dark) !important;
  box-shadow: 0 4px 18px rgba(247,201,72,0.18);
  outline: none;
}
@media (max-width: 600px) {
  .cta-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .cta-icon svg {
    width: 38px;
    height: 38px;
  }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .services-grid, .projects-grid, .gallery-grid, .testimonials-grid, .team-grid, .mvv-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .service-card, .project-card, .gallery-item, .testimonial-card, .team-member, .mvv-item, .contact-form, .contact-info {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-form {
    max-width: 100%;
    padding: 1rem;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-row .form-group {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 480px) {
  .contact-main .container {
    gap: 1rem;
    margin: 1rem 0;
  }
  .contact-form {
    padding: 0.75rem;
  }
  .contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .form-group input, .form-group textarea {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 600px) {
  .cta-section {
    padding: 1.2rem 0.5rem;
  }
}

/* Header: Professional Enhancements */
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(46,46,46,0.10);
  background: var(--white);
  transition: box-shadow 0.3s;
}
.nav-menu li a:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 0 0 8px 8px;
  transition: left 0.2s;
}
.skip-link:focus {
  left: 1rem;
  width: auto;
  height: auto;
  outline: 2px solid var(--dark);
}

/* Navbar: Professional Enhancements */
.nav-menu {
  gap: 2rem;
}
.nav-link {
  position: relative;
  padding: 0.5rem 0.8rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
  border-radius: 4px;
  outline: none;
}
.nav-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover,
.nav-link:focus {
  color: var(--yellow);
  background: rgba(247,201,72,0.08);
}
.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}
.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--yellow);
  font-weight: 700;
}
.nav-link.active::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Mobile Slide-in Menu */
@media (max-width: 768px) {
  .nav-menu {
    right: 0;
    top: 100%;
    width: 240px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    border-radius: 0 0 12px 12px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem 1rem 1.5rem;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.2s;
  }
  .nav-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    width: 100%;
    padding: 0.7rem 0.5rem;
    font-size: 1.1rem;
  }
}

/* Projects Hero Section */
.projects-hero {
  background: linear-gradient(90deg, #fff 60%, #f7c94818 100%);
  padding: 3.5rem 0 2.2rem 0;
  margin-bottom: 0.5rem;
}
.projects-hero-icon {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-hero-sub {
  color: #555;
  font-size: 1.13rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Filter Bar */
.filter-bar {
  display: inline-flex;
  gap: 0.7rem;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(46,46,46,0.06);
  padding: 0.5rem 1.2rem;
  margin: 1.2rem 0 2.2rem 0;
}
.filter-btn {
  border-radius: 24px;
  background: none;
  color: var(--dark);
  font-weight: 600;
  border: none;
  padding: 0.5rem 1.3rem;
  font-size: 1.02rem;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:focus {
  background: var(--yellow);
  color: var(--dark);
  outline: none;
}
.filter-btn:hover {
  background: #f7c94833;
}

/* Gallery Enhancements */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(30,30,30,0.08);
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(30,30,30,0.92) 80%, rgba(30,30,30,0.0) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1rem 1rem;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 0.3s;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 2;
}
.gallery-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(247,201,72,0.16);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-overlay h3 {
  margin: 0 0 0.3rem 0;
  color: #f7c948;
  font-size: 1.18rem;
  font-weight: 700;
}
.gallery-overlay p {
  margin: 0;
  font-size: 0.98rem;
  color: #eee;
}
.badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25em 0.9em;
  border-radius: 12px;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(46,46,46,0.08);
  letter-spacing: 0.5px;
}
.badge-residential { background: #f7c948; color: #2e2e2e; }
.badge-commercial { background: #2e2e2e; color: #fff; }
.badge-interior { background: #fff; color: #2e2e2e; border: 1px solid #f7c948; }
.badge-exterior { background: #f7c94833; color: #2e2e2e; }

.no-projects-message {
  text-align: center;
  color: #b00;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 2.5rem 0 1.5rem 0;
  display: none;
}

@media (max-width: 900px) {
  .gallery-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .gallery-item {
    max-width: 100%;
  }
  .filter-bar {
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.5rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .projects-hero {
    padding: 2rem 0 1.2rem 0;
  }
  .gallery-item img {
    height: 120px;
  }
  .gallery-item {
    min-width: 0;
  }
}

/* Footer In/Out Animations */
@keyframes footerFadeInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes footerFadeOutDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(60px); }
}
.footer-animate-in {
  animation: footerFadeInUp 1s cubic-bezier(.4,0,.2,1) forwards;
}
.footer-animate-out {
  animation: footerFadeOutDown 0.7s cubic-bezier(.4,0,.2,1) forwards;
}

/* --- Our Services Section In/Out Animations --- */
@keyframes servicesFadeInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes servicesFadeOutDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(60px); }
}
.services-animate-in {
  animation: servicesFadeInUp 1s cubic-bezier(.4,0,.2,1) forwards;
}
.services-animate-out {
  animation: servicesFadeOutDown 0.7s cubic-bezier(.4,0,.2,1) forwards;
}

/* Project Modal Styles */
.project-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
  padding: 1.5rem 2rem;
  position: relative;
}

.project-modal-header .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 2px solid rgba(255, 255, 255, 1) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #333 !important;
  font-size: 1.2rem;
  opacity: 1 !important;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.project-modal-header .btn-close:hover {
  background: rgba(255, 255, 255, 1) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.project-modal-header .btn-close:before {
  content: "×";
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #333;
}

.project-modal-actions .btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  margin: 0.25rem 0;
  transition: all 0.3s ease;
}

.project-modal-actions .btn-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: white;
}

/* Project Modal Image Styles */
.project-modal-image-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-modal-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.project-modal-img:hover {
  transform: scale(1.02);
}

.project-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-modal-image-container:hover .project-modal-overlay {
  opacity: 1;
}

.project-zoom-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.project-zoom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Gallery Thumbnails */
.project-modal-gallery {
  margin-top: 1rem;
}

.gallery-thumb {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  opacity: 0.7;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(247, 201, 72, 0.3);
}

/* Image Lightbox Modal */
.image-lightbox {
  background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg);
}

.project-modal-actions .btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
}

.project-modal-actions .btn-outline-secondary:hover {
  background: #6c757d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Mobile Responsive Modal Styles */
@media (max-width: 768px) {
  .modal-xl {
    max-width: 95%;
    margin: 1rem auto;
  }
  
  .project-modal-img {
    max-height: 250px;
  }
  
  .gallery-thumb {
    height: 60px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .lightbox-content {
    max-width: 98vw;
    max-height: 90vh;
    padding: 1rem;
  }
  
  .project-modal-content {
    border-radius: 12px;
    margin: 0.5rem;
  }
  
  .project-modal-header {
    padding: 1rem 1.5rem;
    text-align: center;
  }
  
  .project-modal-header .btn-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .project-modal-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .project-modal-category {
    font-size: 0.9rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .project-modal-gallery img {
    border-radius: 8px;
  }
  
  .project-modal-details {
    margin-top: 1.5rem;
  }
  
  .project-detail-card {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
  }
  
  .detail-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .project-modal-actions {
    margin-top: 1.5rem;
  }
  
  .project-modal-actions .btn {
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .modal-xl {
    max-width: 98%;
    margin: 0.5rem auto;
  }
  
  .project-modal-content {
    margin: 0.25rem;
    border-radius: 8px;
  }
  
  .project-modal-img {
    max-height: 200px;
  }
  
  .gallery-thumb {
    height: 50px;
  }
  
  .project-zoom-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .lightbox-close {
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .lightbox-content {
    max-width: 99vw;
    max-height: 85vh;
    padding: 0.5rem;
  }
  
  .project-modal-header {
    padding: 0.75rem 1rem;
  }
  
  .project-modal-title {
    font-size: 1.1rem;
  }
  
  .project-modal-category {
    font-size: 0.85rem;
  }
  
  .modal-body {
    padding: 0.75rem;
  }
  
  .project-modal-details {
    margin-top: 1rem;
  }
  
  .project-detail-card {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .detail-item {
    font-size: 0.85rem;
  }
  
  .detail-label {
    font-size: 0.8rem;
  }
  
  .detail-value {
    font-size: 0.85rem;
  }
} 