:root {
  --bg-color: #f8f9fa;
  --bg-secondary: #ffffff;
  --text-color: #1a1a1a;
  --primary-color: #048bba;
  --primary-dark: #036a8e;
  --primary-light: #e6f4f9;
  --accent-gradient: linear-gradient(135deg, #048bba 0%, #0aa5d9 100%);
  --secondary-text: #5a6c7d;
  --border-color: rgba(4, 139, 186, 0.15);
  --font-main: 'Manrope', sans-serif;
  --spacing-unit: 1rem;
  --container-width: 1300px;
  --header-height: 80px;
  --shadow-sm: 0 2px 8px rgba(4, 139, 186, 0.08);
  --shadow-md: 0 10px 30px rgba(4, 139, 186, 0.12);
  --shadow-lg: 0 20px 60px rgba(4, 139, 186, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}


/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.logo {
  height: 45px;
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 100%;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.site-nav ul {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-text);
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

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

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

/* Hero Background Slider */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

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

/* Page Headers - Modern Hero Style */
.page-header {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #048bba 0%, #0aa5d9 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 2rem 6rem;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.page-header .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-header h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-header p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
  font-weight: 400;
}

.page-header .page-badge {
  display: inline-block;
  padding: 0.6rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slider Navigation Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.hero-slider-dots .dot.active {
  background: #ffffff;
  border-color: #ffffff;
  width: 32px;
  border-radius: 6px;
}


.hero-badge {
  position: absolute;
  top: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInDown 1s ease-out;
}

.hero-badge span {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1s ease-out 0.3s both;
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn-primary {
  background: #ffffff;
  color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--primary-dark);
}

.hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-feature svg {
  width: 20px;
  height: 20px;
  stroke-width: 3;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.9;
  animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.9;
  }
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 600;
}

.scroll-indicator .line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-badge {
    top: 90px;
    padding: 0.5rem 1rem;
  }

  .hero-badge span {
    font-size: 0.75rem;
  }

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

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

  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Page Header */
.page-header {
  padding: 10rem 3rem 4rem;
  background: var(--accent-gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  padding: 8rem 3rem;
  background-color: var(--bg-color);
}

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

.service-card {
  padding: 2.5rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-gradient);
  transition: height 0.4s ease;
}

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

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

.service-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  margin-bottom: 1.5rem;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-number {
  opacity: 0.3;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--text-color);
}

.service-card p {
  font-size: 1rem;
  color: var(--secondary-text);
  line-height: 1.6;
}

/* Work Section */
.work-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.8rem;
  background: var(--bg-color);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--secondary-text);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.filter-btn.active {
  background: var(--accent-gradient);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

/* Fade In Up Animation for Grid Items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.project-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.project-card-link:hover .project-card {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(4, 139, 186, 0.2);
}

.project-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card-link:hover .project-image {
  transform: scale(1.05);
}

.project-info {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.project-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.project-card-link:hover .project-title {
  color: var(--primary-color);
}

.project-category {
  font-size: 0.9rem;
  color: var(--secondary-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(4, 139, 186, 0.9), rgba(10, 165, 217, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.project-card-link:hover .project-overlay {
  opacity: 1;
}

.view-project {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 1rem 2rem;
  border: 2px solid #ffffff;
  border-radius: 50px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-card-link:hover .view-project {
  transform: translateY(0);
}

/* About Section */
.about-section {
  padding: 8rem 3rem;
  background: linear-gradient(to bottom, var(--bg-color) 0%, var(--primary-light) 100%);
  display: flex;
  justify-content: center;
}

.about-content {
  max-width: 800px;
  text-align: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.about-content p {
  font-size: 1.2rem;
  color: var(--secondary-text);
  line-height: 1.8;
  text-align: left;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-text);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 3rem 8rem;
  background-color: var(--bg-secondary);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  color: var(--text-color);
  font-size: 1.2rem;
  font-family: var(--font-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
  background: var(--primary-light);
}

.faq-question .icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Adjust based on content */
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--secondary-text);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 4rem 3rem 8rem;
  background: var(--bg-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact-info p {
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

.contact-link-large {
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.contact-link-large:hover {
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--secondary-text);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.social-links a:hover {
  color: var(--accent-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--secondary-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background: var(--bg-color);
  border: 2px solid var(--border-color);
  padding: 1rem;
  color: var(--text-color);
  font-family: var(--font-main);
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-submit {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-email {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.footer-email:hover {
  color: #ffffff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 10px;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover::before {
  opacity: 1;
}

.footer-social-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--accent-gradient);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(4, 139, 186, 0.3);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-legal .separator {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 1.5rem;
    height: 70px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 2rem 1.5rem;
    overflow-y: auto;
  }

  .site-nav.active {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--border-color);
  }

  .site-nav a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.1rem;
  }

  .site-nav a::after {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .logo {
    height: 18px;
  }

  .hero-badge {
    top: 80px;
    padding: 0.5rem 1rem;
  }

  .hero-badge span {
    font-size: 0.7rem;
  }

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

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .hero-btn {
    width: 100%;
  }

  .section-header-home {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
  }

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

  .home-featured,
  .home-services,
  .home-about,
  .home-process,
  .home-testimonials {
    padding: 4rem 0;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .home-cta {
    padding: 4rem 0;
  }

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

  .cta-content p {
    font-size: 1rem;
  }

  .btn-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .project-grid,
  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .work-section,
  .about-section,
  .contact-section,
  .services-section,
  .faq-section {
    padding: 4rem 1.5rem;
  }

  .page-header {
    padding: 8rem 1.5rem 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .contact-link {
    font-size: 1.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .filter-btn {
    font-size: 0.8rem;
    padding: 0.7rem 1.2rem;
  }
}

/* Animation Classes */
.fade-in-section {
  opacity: 1;
  /* Temporarily visible for debugging */
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.hidden-initial {
  opacity: 0;
  transform: translateY(20px);
}

/* Home Page Sections */
.home-featured,
.home-services {
  padding: 6rem 0;
  background: var(--bg-color);
}

.home-services {
  background: var(--bg-secondary);
}

/* Section Headers */
.section-header-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.section-header-home h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-header-home h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.view-all {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 25px;
}

.view-all::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

.view-all:hover::after {
  transform: translateX(5px);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-header-center h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 1rem;
}


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

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet & Below (1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .page-header {
    padding: 8rem 2rem 5rem;
    min-height: 45vh;
  }

  .page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .hero-section {
    padding: 0 1.5rem;
  }

  .section-header-home,
  .section-header-center {
    margin-bottom: 3rem;
  }
}

/* Mobile & Below (768px) */
@media (max-width: 768px) {

  /* Header */
  .site-header {
    padding: 0 1.5rem;
  }

  /* Hero Section */
  .page-header {
    padding: 7rem 1.5rem 4rem;
    min-height: 40vh;
  }

  .page-header h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
  }

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

  .page-header .page-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Section Headers */
  .section-header-home {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .section-header-home h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .section-header-center {
    margin-bottom: 3rem;
  }

  .section-header-center h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

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

  /* Home Sections */
  .home-featured,
  .home-services,
  .home-about,
  .home-process,
  .home-testimonials,
  .home-cta {
    padding: 4rem 1.5rem;
  }

  /* Project Grid */
  .project-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Process Grid */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Stats */
  .about-stats,
  .stat-box {
    padding: 3rem 1.5rem;
  }

  .stats-grid-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* CTA */
  .cta-content,
  .cta-content-center {
    padding: 3rem 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary-large,
  .btn-secondary-large,
  .hero-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  /* Contact Form */
  .contact-form {
    padding: 2rem 1.5rem;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {

  /* Container */
  .container {
    padding: 0 1rem;
  }

  /* Header */
  .site-header {
    padding: 0 1rem;
    height: 70px;
  }

  .logo img {
    height: 30px;
  }

  /* Hero */
  .page-header {
    padding: 6rem 1rem 3rem;
    min-height: 35vh;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  /* Sections */
  .home-featured,
  .home-services,
  .home-about,
  .home-process,
  .home-testimonials,
  .home-cta {
    padding: 3rem 1rem;
  }

  /* Section Headers */
  .section-header-home h2,
  .section-header-center h2 {
    font-size: 1.75rem;
  }

  /* Stats */
  .stats-grid-large {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-number-large {
    font-size: 3rem;
  }

  .stat-label-large {
    font-size: 1rem;
  }

  /* Buttons */
  .btn-primary-large,
  .btn-secondary-large {
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }

  .hero-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  /* Footer */
  .site-footer {
    padding: 3rem 1rem;
  }

  .footer-social {
    justify-content: center;
  }

  /* Forms */
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .page-header {
    min-height: 60vh;
    padding: 6rem 1.5rem 3rem;
  }

  .hero-section {
    min-height: 80vh;
  }
}

/* Print Styles */
@media print {

  .site-header,
  .mobile-menu-toggle,
  .hero-cta-group,
  .cta-buttons,
  .footer-social,
  .scroll-indicator {
    display: none;
  }

  .page-header {
    background: none;
    color: #000;
  }

  .page-header h1 {
    color: #000;
  }
}