
:root {
  --primary: #B08F15;
  --secondary: #464B4B;
  --accent: #6E736E;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #2c2c2c;
}

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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.hero-section .hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.company-logo {
  max-width: 100%;
  height: auto;
  max-height: 180px;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.9);
  animation: logoFadeIn 1s ease-out 0.3s forwards;
}

.tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--secondary);
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.construction-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #c49f1a 50%, #d4a821 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(176, 143, 21, 0.3);
  position: relative;
  overflow: hidden;
}

.construction-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.construction-badge:hover::before {
  left: 100%;
}

.construction-badge i {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

/* Content Section */
.content-section {
  flex-grow: 1;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #c49f1a 50%, #d4a821 100%);
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  pointer-events: none;
}

.content-section .content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text, .mission-text, .closing-text {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.intro-text {
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.mission-text {
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.closing-text {
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.intro-text p, .mission-text p, .closing-text p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--white);
}

.welcome-text {
  font-weight: 600;
  color: var(--white) !important;
  font-size: clamp(1.1rem, 2.8vw, 1.3rem) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Services Grid */
.services-section {
  padding: 60px 20px;
  background: var(--secondary);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(176, 143, 21, 0.3);
  border-color: var(--primary);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: var(--accent);
  line-height: 1.6;
}

/* Transformations Section */
.transformations-section {
  padding: 80px 20px;
  background: var(--light-gray);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.transformations-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--accent);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}

.carousel-slide {
  width: 33.333%;
  padding: 40px;
  background: var(--white);
}

.before-after-container {
  max-width: 800px;
  margin: 0 auto;
}

.image-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.before-section h4,
.after-section h4 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.before-section h4 {
  color: var(--accent);
}

.after-section h4 {
  color: var(--primary);
}

.transformation-image {
  width: 100%;
  height: 320px;
  border-radius: 15px;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.before-image {
  border: 3px solid var(--accent);
}

.after-image {
  border: 3px solid var(--primary);
}

.transformation-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.transformation-arrow {
  background: linear-gradient(135deg, var(--primary) 0%, #c49f1a 100%);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(176, 143, 21, 0.3);
  animation: pulse 2s infinite;
}

.transformation-details h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 600;
}

.transformation-details p {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1.6;
}

.carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--white);
  gap: 30px;
}

.carousel-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(176, 143, 21, 0.3);
}

.carousel-btn:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-indicators {
  display: flex;
  gap: 15px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: var(--primary);
  transform: scale(1.2);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design for Transformations */
@media (max-width: 768px) {
  .transformations-section {
    padding: 60px 15px;
  }
  
  .image-comparison {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .transformation-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .carousel-slide {
    padding: 30px 20px;
  }
  
  .transformation-image {
    height: 280px;
  }
  
  .carousel-navigation {
    padding: 20px;
    gap: 20px;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .section-title {
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    margin-bottom: 30px;
  }
  
  .carousel-slide {
    padding: 20px 15px;
  }
  
  .transformation-image {
    height: 240px;
  }
  
  .transformation-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  text-align: center;
  background: var(--accent);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.contact-section .contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(176, 143, 21, 0.4);
}

.social-links a i {
  font-size: 1.2rem;
}

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

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
  }
  
  .company-logo {
    max-height: 120px;
  }
  
  .content-section {
    padding: 60px 15px;
  }
  
  .services-section {
    padding: 40px 15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-section {
    padding: 50px 15px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .construction-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .company-logo {
    max-height: 90px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-card i {
    font-size: 2rem;
  }
}

/* Smooth scroll for better UX */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
