/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Design System Variables */
:root {
  /* Colors */
  --primary: hsl(0, 84%, 60%);
  --primary-foreground: hsl(0, 0%, 98%);
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(20, 14.3%, 4.1%);
  --muted: hsl(60, 4.8%, 95.9%);
  --muted-foreground: hsl(25, 5.3%, 44.7%);
  --border: hsl(20, 5.9%, 90%);
  --gray-50: hsl(220, 13%, 91%);
  --gray-600: hsl(220, 8.9%, 46.1%);
  --gray-800: #292a2b;
  
  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 4rem 0;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius: 0.5rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: white;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 60px;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary);
}

.nav {
  display: none;
  gap: 2rem;
}

.nav a {
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav {
      display: flex;
  }
}

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  width: fit-content;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: hsl(0, 84%, 55%);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  width: 100%;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Cards */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

/* Forms */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 71, 71, 0.1);
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--muted);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.flex-1 {
  flex: 1;
}

.badge {
  background: #10b981;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 0.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 8rem 0;
}

@media (min-width: 1024px) {
  .hero-content {
      grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-primary {
  color: var(--primary);
}

@media (min-width: 768px) {
  .hero-title {
      font-size: 3.75rem;
  }
}

.hero-form .card h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.hero-form .card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
      font-size: 3rem;
  }
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: var(--section-padding);
  background: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.benefit {
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.benefit:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.benefit h3,
.benefit h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.benefit p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Stats */
.stats {
  padding: var(--section-padding);
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  max-width: 48rem;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* Design Portfolio */
.design-portfolio {
  padding: var(--section-padding);
  background: var(--muted);
}

.portfolio-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 96rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .portfolio-content {
      grid-template-columns: 1fr 1fr;
  }
}

.portfolio-image .card {
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.portfolio-image img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.portfolio-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-highlight {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  width: fit-content;
}

.portfolio-text h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-800);
}

.portfolio-text p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Services */
.services {
  padding: 5rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
      grid-template-columns: repeat(6, 1fr);
  }
}

.service-card {
  padding: 1.5rem;
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Get Estimate */
.get-estimate {
  padding: var(--section-padding);
  background: var(--muted);
}

.estimate-cards {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .estimate-cards {
      grid-template-columns: 1fr 1fr;
  }
}

.estimate-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.estimate-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.estimate-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.estimate-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
      grid-template-columns: 1fr 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.05);
}

.testimonial-content {
  padding: 1.5rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.star {
  color: #fbbf24;
}

.testimonial-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.review {
  color: var(--foreground);
  line-height: 1.75;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Footer */
.footer {
  background: var(--muted);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
      grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-content {
      grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.25rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  transform: scale(1.1);
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

.newsletter p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}