/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Patriotic Color Palette - Blue, White, Red */
  --primary-blue: #1e40af;
  --secondary-blue: #3b82f6;
  --light-blue: #dbeafe;
  --primary-red: #dc2626;
  --secondary-red: #ef4444;
  --light-red: #fecaca;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* 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);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Floating Social Media Buttons */
.floating-social-buttons {
  position: fixed;
  top: 50vh;
  left: 0;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 0 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.social-btn::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.6s;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  transform: translateX(20px) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.facebook-btn {
  background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.social-tooltip {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.social-tooltip::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid rgba(0, 0, 0, 0.9);
}

.social-btn:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(10px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.nav-logo-text h2 {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1;
}

.nav-logo-text span {
  font-size: 12px;
  color: #667eea;
  font-weight: 600;
}

.nav-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
}

.nav-menu.active {
  display: flex;
}

.nav-link {
  padding: 15px 0;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #667eea;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Image Carousel */
.hero-carousel-section {
  margin-top: 80px;
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-carousel-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel-slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

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

.hero-carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-carousel-content {
  text-align: center;
  color: white;
  max-width: 600px;
  width: 100%;
}

.hero-carousel-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-carousel-content p {
  font-size: clamp(16px, 3vw, 20px);
  margin-bottom: 30px;
  line-height: 1.5;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-carousel-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 160px;
  justify-content: center;
}

.cta-button.primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-2px);
}

/* Indicators */
.hero-carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

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

.hero-indicator.active {
  background: white;
  transform: scale(1.2);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 10px;
}

.trust-badge i {
  font-size: 24px;
  color: #667eea;
  margin-bottom: 8px;
}

.trust-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #2c3e50;
}

/* CTA Buttons */
.cta-button {
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  min-width: 160px;
  justify-content: center;
}

.cta-button.primary {
  background: var(--primary-red);
  color: var(--white);
}

.cta-button.primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.cta-button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-button.secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: var(--spacing-2xl) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.8s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 2.2rem;
  color: var(--white);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-md);
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  padding: var(--spacing-xs) 0;
  color: var(--gray-600);
  position: relative;
  padding-left: var(--spacing-md);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

/* Projects Carousel Section */
.projects-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
  margin: 0 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  touch-action: pan-y;
}

.carousel-slide {
  min-width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  position: relative;
}

.slide-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-slide:hover .slide-image img {
  transform: scale(1.05);
}

/* Added slide badge for better categorization */
.slide-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(102, 126, 234, 0.95);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.slide-content {
  padding: 25px 20px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Enhanced slide header with better mobile layout */
.slide-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slide-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
  margin: 0;
}

.slide-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #667eea;
  font-size: 14px;
  font-weight: 500;
}

.slide-location i {
  font-size: 12px;
}

.slide-content p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
  flex: 1;
}

/* Enhanced feature tags with better mobile touch targets */
.slide-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f7fafc;
  color: #2d3748;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  min-height: 32px;
}

.feature-tag i {
  color: #667eea;
  font-size: 11px;
}

/* Enhanced carousel controls with mobile-first design */
.carousel-controls {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.carousel-progress {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  max-width: 300px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 25%;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Larger, more accessible indicators for mobile */
.indicator {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e2e8f0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  touch-action: manipulation;
}

.indicator-number {
  font-size: 14px;
  font-weight: 600;
  color: #718096;
  transition: color 0.3s ease;
}

.indicator.active {
  background: #667eea;
  border-color: #667eea;
  transform: scale(1.1);
}

.indicator.active .indicator-number {
  color: white;
}

.indicator:hover:not(.active) {
  background: #cbd5e0;
  transform: scale(1.05);
}

/* Added navigation buttons for better control */
.carousel-nav-buttons {
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e2e8f0;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  touch-action: manipulation;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.nav-btn:active {
  transform: translateY(0);
}

/* Added projects CTA section */
.projects-cta {
  margin-top: 50px;
  text-align: center;
  background: white;
  padding: 40px 20px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-left: 10px;
  margin-right: 10px;
}

.cta-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.cta-content p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  min-height: 48px;
  touch-action: manipulation;
}

.cta-button.primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.cta-button.secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  padding: var(--spacing-2xl) 0;
  background: var(--off-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.about-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.service-areas h4 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  margin-bottom: var(--spacing-md);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.area-tag {
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: white;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: white;
}

.contact-card h3 {
  font-family: var(--font-heading);
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 20px;
}

.contact-card a {
  color: #555;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card span {
  font-size: 13px;
  color: #666;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.payment-tag {
  background: var(--light-red);
  color: var(--primary-red);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
}

.map-section {
  background: var(--off-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.map-container h3 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.address-info {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.address-info p {
  color: var(--gray-600);
  font-weight: 500;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  margin-top: var(--spacing-2xl);
}

.cta-section h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Gallery Section */
.gallery-section {
  padding: var(--spacing-2xl) 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2.5rem;
  transform: scale(0.5) rotate(-180deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1) rotate(0deg);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
}

.footer-logo h3 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: var(--spacing-xs);
}

.footer-logo p {
  color: var(--gray-300);
  font-size: 0.9rem;
}

.footer-contact p {
  color: var(--gray-300);
  margin-bottom: var(--spacing-xs);
}

.footer-section h4 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-red);
}

.footer-note {
  color: var(--primary-red);
  font-weight: 600;
  margin-top: var(--spacing-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--gray-800);
  color: var(--gray-400);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
  opacity: 1;
}

.modal-content {
  position: relative;
  margin: 0;
  padding: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7) rotate(5deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
  transform: scale(1) rotate(0deg);
}

.modal-content img {
  max-width: 90%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  z-index: 2001;
}

.close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1) rotate(90deg);
}

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

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

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-slide-left {
  animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-right {
  animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-scale {
  animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-lg) 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-carousel-section {
    height: 70vh;
  }

  .hero-carousel-content h1 {
    font-size: 2rem;
  }

  .hero-carousel-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-badges {
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-md);
  }

  .trust-badge {
    font-size: 0.8rem;
  }

  .floating-social-buttons {
    top: 60vh;
  }

  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .social-btn:active {
    transform: translateX(15px) scale(0.95);
  }

  .service-card:active {
    transform: translateY(-6px) scale(0.98);
  }

  .gallery-item:active {
    transform: scale(0.95);
  }

  .modal-content {
    padding: 20px;
  }

  .close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-carousel-content {
    padding: 0 var(--spacing-sm);
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card,
  .contact-card {
    padding: var(--spacing-lg);
  }

  .cta-section {
    padding: var(--spacing-lg);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    max-width: 750px;
    padding: 0 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 30px;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .carousel-slide {
    flex-direction: row;
    min-height: 350px;
  }

  .slide-image {
    width: 45%;
    height: auto;
  }

  .slide-content {
    width: 55%;
    padding: 35px 30px;
    justify-content: center;
  }

  .slide-content h3 {
    font-size: 24px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .feature-tag {
    font-size: 13px;
    padding: 8px 14px;
  }

  .carousel-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .carousel-progress {
    order: 2;
    flex: 1;
    max-width: 200px;
  }

  .carousel-indicators {
    order: 1;
  }

  .carousel-nav-buttons {
    order: 3;
  }

  .projects-cta {
    margin-left: 20px;
    margin-right: 20px;
    padding: 50px 40px;
  }

  .cta-content h3 {
    font-size: 28px;
  }

  .cta-buttons {
    gap: 20px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    padding: 0 30px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .contact-info {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .slide-image {
    width: 50%;
  }

  .slide-content {
    width: 50%;
    padding: 40px 35px;
  }

  .slide-content h3 {
    font-size: 26px;
  }

  .projects-cta {
    margin-left: 0;
    margin-right: 0;
    padding: 60px 50px;
  }

  .cta-content h3 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 18px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Language Toggle Button Styles */
.language-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 30px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.lang-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.6s;
}

.lang-btn:hover::before {
  left: 100%;
}

.lang-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  border-color: var(--primary-blue);
}

.lang-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.lang-btn:hover i {
  transform: rotate(180deg);
}

.lang-tooltip {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.lang-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.9);
}

.lang-btn:hover .lang-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Smooth scrolling and focus styles for better accessibility */
html {
  scroll-behavior: smooth;
}

*:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}
