/* --- Design System --- */
:root {
  /* AWR Brand Colors - inspired by logo and brochure */
  --primary-green: #4A7C2C;        /* Logo green */
  --primary-dark: #1A1A1A;         /* Black from logo */
  --accent-burgundy: #771919;      /* Brochure burgundy */
  --accent-gold: #D4AF37;          /* Accent highlight */
  --light-gray: #F5F5F5;
  --medium-gray: #8B8B8B;
  --dark-gray: #2C2C2C;
  --white: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-tertiary: #8B8B8B;

  /* Typography */
  --font-primary: 'Inter', -apple-system, sans-serif;
  --font-display: 'Montserrat', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
}

/* --- Base Reset & Typography --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-md) 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 66px;
  width: auto;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

nav a:hover {
  color: var(--primary-green);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.btn-contact {
  background: var(--primary-green);
  color: var(--white);
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: inline-block;
  text-decoration: none;
}

.btn-contact:hover {
  background: #3a6222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 44, 0.3);
}

.btn-contact::after {
  display: none;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg,
    var(--primary-dark) 0%,
    var(--dark-gray) 100%
  );
  color: var(--white);
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image:
    linear-gradient(135deg, rgba(74, 124, 44, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary-green) 50%,
    transparent 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
}

.hero-image {
  position: relative;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 124, 44, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(74, 124, 44, 0.2);
  border: 1px solid rgba(74, 124, 44, 0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
  line-height: 1.05;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(74, 124, 44, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: #3a6222;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(74, 124, 44, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-phone {
  background: var(--white);
  color: var(--primary-dark);
  padding: 1.3rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-transform: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-family: var(--font-display);
}

.btn-phone i {
  width: 28px;
  height: 28px;
  stroke: var(--primary-dark);
  stroke-width: 2.5;
}

.btn-phone:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.btn-phone:hover i {
  animation: phoneRing 0.5s ease;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Services Section --- */
.services {
  padding: var(--space-2xl) var(--space-md);
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.section-tag {
  display: inline-block;
  background: var(--primary-green);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.section-header h2 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--primary-dark);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-burgundy) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
  background: var(--white);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.service-icon i {
  width: 36px;
  height: 36px;
  stroke: var(--primary-dark);
  transition: stroke 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: var(--primary-green);
}

.service-card:hover .service-icon i {
  stroke: var(--white);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-dark);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-list li::before {
  content: '▪';
  color: var(--primary-green);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* --- Portfolio Section --- */
.portfolio {
  padding: var(--space-2xl) var(--space-md);
  background: var(--white);
}

.portfolio-carousel-wrapper {
  margin-top: var(--space-xl);
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-carousel {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background: var(--light-gray);
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-image {
  width: 100%;
  height: 70%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.carousel-content {
  padding: var(--space-lg);
  position: relative;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--light-gray);
}

.carousel-slide h3 {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-dark);
  font-weight: 800;
}

.carousel-location {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.carousel-services {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.portfolio-tag {
  background: rgba(74, 124, 44, 0.1);
  color: var(--primary-green);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.carousel-controls {
  position: absolute;
  bottom: 35%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  z-index: 10;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.1);
}

.carousel-indicators {
  position: absolute;
  bottom: calc(30% + var(--space-lg));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  width: 40px;
  border-radius: 10px;
}

.carousel-counter {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10;
}

/* --- Logo Divider Section --- */
.logo-divider {
  padding: var(--space-2xl) var(--space-md);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.logo-watermark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.watermark-image {
  width: 300px;
  max-width: 40%;
  height: auto;
  opacity: 0.15;
  filter: grayscale(20%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.logo-divider:hover .watermark-image {
  opacity: 0.25;
  transform: scale(1.05);
}

/* --- About/History Section --- */
.about {
  padding: var(--space-2xl) var(--space-md);
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.02) 20px,
    rgba(255, 255, 255, 0.02) 40px
  );
  pointer-events: none;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about h2 {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.about p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
}

.about-highlight {
  background: rgba(74, 124, 44, 0.2);
  border-left: 4px solid var(--primary-green);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-sm);
}

.about-highlight p {
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

/* --- CTA Section --- */
.cta {
  padding: var(--space-2xl) var(--space-md);
  background: var(--primary-green);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.cta p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-feature-item::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: 900;
  font-size: 1.3rem;
}

/* --- Footer --- */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-year {
  color: var(--primary-green);
  font-weight: 700;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 400px;
    margin-top: var(--space-lg);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Carousel adjustments for tablets */
  .portfolio-carousel {
    height: 600px;
  }

  .carousel-slide h3 {
    font-size: 2rem;
  }

  .carousel-location {
    font-size: 1rem;
  }

  .portfolio-tag {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 var(--space-sm);
  }

  .hero {
    padding: var(--space-xl) var(--space-sm);
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .btn-phone {
    width: 100%;
    justify-content: center;
    font-size: 1.3rem;
    padding: 1.1rem 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1.05rem;
  }

  .services,
  .portfolio,
  .about,
  .cta {
    padding: var(--space-xl) var(--space-sm);
  }

  nav ul {
    display: none;
  }

  .logo-image {
    height: 50px;
  }

  header {
    padding: var(--space-sm) 0;
  }

  header .container {
    padding: 0 var(--space-sm);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .cta-features {
    gap: var(--space-md);
  }

  .hero-stat-number {
    font-size: 2.5rem;
  }

  .about h2 {
    font-size: 2rem;
  }

  .about p {
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  /* Mobile carousel optimizations */
  .portfolio-carousel-wrapper {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
    max-width: none;
  }

  .portfolio-carousel {
    height: 550px;
    border-radius: 0;
  }

  .carousel-image {
    height: 65%;
  }

  .carousel-content {
    height: 35%;
    padding: var(--space-md);
  }

  .carousel-slide h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .carousel-location {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
  }

  .portfolio-tag {
    font-size: 0.7rem;
    padding: 0.35rem 0.8rem;
  }

  /* Hide arrow controls on mobile - use swipe instead */
  .carousel-controls {
    display: none;
  }

  /* Adjust indicators */
  .carousel-indicators {
    bottom: calc(40% + var(--space-sm));
  }

  .indicator-dot {
    width: 8px;
    height: 8px;
  }

  .indicator-dot.active {
    width: 28px;
  }

  /* Counter adjustment */
  .carousel-counter {
    top: var(--space-sm);
    right: var(--space-sm);
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-stat-label {
    font-size: 0.85rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 0.35rem 1rem;
  }

  .service-card {
    padding: var(--space-md);
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
  }

  .btn-phone {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }

  .cta h2 {
    font-size: 1.75rem;
  }

  .cta-features {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .about h2 {
    font-size: 1.75rem;
  }

  .portfolio-carousel {
    height: 500px;
  }

  .carousel-image {
    height: 60%;
  }

  .carousel-content {
    height: 40%;
    padding: var(--space-sm) var(--space-md);
  }

  .carousel-slide h3 {
    font-size: 1.3rem;
  }

  .carousel-location {
    font-size: 0.8rem;
  }

  .carousel-services {
    gap: 0.4rem;
  }

  .portfolio-tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
  }

  .carousel-counter {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}
