* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #000000;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  margin: 10px 15px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.navbar.scrolled {
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 25%, #FFD700 50%, #FFB800 75%, #FFD700 100%);
  border: 2.5px solid #FFFFFF;
  margin: 15px 20px;
  border-radius: 20px;
}

.navbar nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar nav a:hover {
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled nav a {
  color: #000000 !important;
  text-shadow: none !important;
}

.navbar.scrolled nav a:hover {
  color: #333333 !important;
  text-shadow: 0 0 8px rgba(255, 184, 0, 0.3);
}

.logo {
  font-weight: 700;
}

.logo img {
  height: 50px;
  width: auto;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

.navbar.scrolled .hamburger span {
  background-color: #000000;
}

/* BUTTONS */
.btn-dark {
  background: linear-gradient(135deg, #FFB800, #FFA500);
  color: #000000;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
  background: linear-gradient(135deg, #FFC700, #FFB800);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  color: #000000;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: #000000;
  color: #000000;
}

.btn-outline.contact-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #000000;
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  font-weight: 400;
  letter-spacing: 0.8px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline.contact-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);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-8px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0);
  }

  50% {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.15);
  }
}

.btn-outline.contact-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 60px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.08);
  color: #000000;
}

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

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

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 60px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  border-radius: 0;
  margin: 0;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-text {
  max-width: 500px;
  z-index: 3;
  position: relative;
  margin-top: 120px;
}

.text-slider {
  display: grid;
  margin-bottom: 20px;
}

.text-slide {
  grid-area: 1 / 1;
  pointer-events: none;
  z-index: 1;
}

.text-slide.active {
  pointer-events: auto;
  z-index: 2;
}

.hero-text .subtitle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.text-slide.active .subtitle {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.hero-text h1,
.hero-text h4 {
  font-size: 56px;
  margin: 20px 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.text-slide.active h1,
.text-slide.active h4 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.text-slide.active p {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.hero-form {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.hero-form input {
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.hero-form input::placeholder {
  color: #999;
}

.hero-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(38, 206, 243, 0.3);
  border-color: rgba(38, 206, 243, 0.5);
}

.hero-form .btn-dark {
  background: linear-gradient(135deg, #FFB800, #FFA500);
  color: #000000;
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.hero-form .btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 184, 0, 0.4);
  background: linear-gradient(135deg, #FFC700, #FFB800);
}

.hero-video-btn {
  margin-top: 30px;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 50%, #FFB800 100%);
  border: 2.5px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s ease-out 0.3s both, glow 3s ease-in-out infinite;
}

.btn-video::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.5), 0 0 30px rgba(255, 165, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -2px 10px rgba(0, 0, 0, 0.15);
  }

  50% {
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.6), 0 0 50px rgba(255, 165, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -2px 10px rgba(0, 0, 0, 0.15);
  }
}

.btn-video:hover {
  background: linear-gradient(135deg, #FFC700 0%, #FFB800 50%, #FFC700 100%);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 25px 60px rgba(255, 184, 0, 0.7), 0 0 60px rgba(255, 165, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.btn-video:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-video i {
  font-size: 18px;
  animation: playPulse 2s ease-in-out infinite, playScale 1.5s ease-in-out infinite;
}

.btn-video:hover i {
  animation: playBounce 0.6s ease-in-out;
}

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

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

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes playPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes playScale {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.8));
  }

  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  }
}

@keyframes playBounce {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

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

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



@keyframes zoomInImage {
  from {
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 8s linear;
  transform: scale(1.1);
}

.hero-image img.active {
  opacity: 1;
  transform: scale(1);
}

/* ABOUT US */
.about-us {
  height: auto;
  padding: 45px 80px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-us-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
  height: 100%;
}

.about-us-text {
  flex: 1;
  min-width: 350px;
  animation: slideInLeft 0.8s ease-out;
  overflow: hidden;
  padding-right: 20px;
}

.about-subtitle-wrapper {
  margin-bottom: 6px;
}

.about-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
  color: #FFB800;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 1.5px solid rgba(255, 184, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.1);
}

.about-subtitle:hover {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.25) 0%, rgba(255, 165, 0, 0.15) 100%);
  border-color: rgba(255, 184, 0, 0.6);
  box-shadow: 0 8px 25px rgba(255, 184, 0, 0.2);
  transform: translateY(-3px);
}

.about-us-text h2 {
  font-size: 38px;
  color: #000000;
  margin: 8px 0 12px 0;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #000000 0%, #FFB800 50%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.about-us-text h2:hover {
  transform: scale(1.02);
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 50%, #FFB800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-us-text>p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 16px 16px;
  background: rgba(255, 184, 0, 0.05);
  border-left: 4px solid #FFB800;
  border-radius: 8px;
  transition: all 0.3s ease;
  max-width: 550px;
}

.about-us-text>p:hover {
  background: rgba(255, 184, 0, 0.1);
  color: rgba(0, 0, 0, 0.85);
}

.about-features {
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  animation: slideInLeft 0.8s ease-out;
  animation-fill-mode: both;
  padding: 18px 16px;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 184, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.about-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 184, 0, 0.1), transparent);
  transition: width 0.4s ease;
  z-index: 0;
}

.about-feature-item:nth-child(1) {
  animation-delay: 0s;
}

.about-feature-item:nth-child(2) {
  animation-delay: 0.1s;
}

.about-feature-item:nth-child(3) {
  animation-delay: 0.2s;
}

.about-feature-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  box-shadow: 0 15px 40px rgba(255, 184, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateX(12px) translateY(-4px);
  border-color: rgba(255, 184, 0, 0.5);
  border-left: 5px solid #FFB800;
}

.about-feature-item:hover::before {
  width: 100%;
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-icon-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.feature-icon-box i {
  font-size: 22px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.about-feature-item:hover .feature-icon-box {
  transform: scale(1.2) rotate(-8deg);
  box-shadow: 0 12px 35px rgba(255, 184, 0, 0.5);
}

.about-feature-item:hover .feature-icon-box i {
  transform: scale(1.15);
}

.feature-content h4 {
  font-size: 16px;
  color: #000000;
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.feature-content p {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.4;
  transition: all 0.3s ease;
}

.about-feature-item:hover .feature-content h4 {
  color: #FFB800;
}

.about-feature-item:hover .feature-content p {
  color: rgba(0, 0, 0, 0.8);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
  padding: 30px 0;
  border-top: 2px solid rgba(255, 184, 0, 0.15);
  border-bottom: 2px solid rgba(255, 184, 0, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  min-width: 140px;
  padding: 20px 0 20px 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.stat:nth-child(1) {
  animation-delay: 0.1s;
}

.stat:nth-child(2) {
  animation-delay: 0.2s;
}

.stat:nth-child(3) {
  animation-delay: 0.3s;
}

.stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 0;
  background: linear-gradient(180deg, #FFB800 0%, #FFA500 100%);
  border-radius: 4px;
  transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat:hover::before {
  height: 100%;
}

.stat-number {
  font-size: 52px;
  color: #FFB800;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat:hover .stat-number {
  font-size: 62px;
  transform: scale(1.08);
}

.stat span {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.75);
  margin-top: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.stat:hover span {
  color: #000000;
  letter-spacing: 0.8px;
}

.about-us-image {
  flex: 1;
  min-width: 300px;
  animation: slideInRight 0.8s ease-out;
  height: 100%;
}

.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.about-us-image:hover img {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 30px 70px rgba(255, 184, 0, 0.2);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

/* FEATURES */
/* OUR SERVICES */
.our-services {
  padding: 40px;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.our-services::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.our-services::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 165, 0, 0.08) 100%);
  color: #FFB800;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 1px solid rgba(255, 184, 0, 0.2);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.section-subtitle:hover {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 165, 0, 0.12) 100%);
  border-color: rgba(255, 184, 0, 0.4);
}

.services-header h2 {
  font-size: 28px;
  color: #000000;
  margin: 15px 0;
  font-weight: 700;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.services-header p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.8;
  font-weight: 400;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card::after {
  content: '';
  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.5) 50%, rgba(255, 184, 0, 0.3) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card:nth-child(1) {
  background-image: url('img/ngaz_album_2/buill.jpeg');
}

.service-card:nth-child(2) {
  background-image: url('img/Projectt_1.jpg');
}

.service-card:nth-child(3) {
  background-image: url('img/ngaz_album_2/cons_c.PNG');
}

.service-card:hover::after {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 184, 0, 0.4) 100%);
}

.service-card>* {
  position: relative;
  z-index: 2;
}

.service-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
}

.service-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
  box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
  z-index: 2;
  transition: all 0.4s ease;
}

.service-icon i {
  font-size: 28px;
  color: #ffffff;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
  border-radius: 15px;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(255, 184, 0, 0.4);
}

.service-card:hover .icon-bg {
  transform: translate(-50%, -50%) scale(1.3);
}

.service-card h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #FFD700;
  text-shadow: 0 2px 8px rgba(255, 184, 0, 0.4);
}

.service-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 25px;
  min-height: 70px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 50px;
  border: 2px solid rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  background: rgba(255, 184, 0, 0.1);
}

.service-link:hover {
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
  color: #ffffff;
  border-color: #FFB800;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.service-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .our-services {
    padding: 60px 20px;
  }

  .services-header {
    margin-bottom: 50px;
  }

  .services-header h2 {
    font-size: 36px;
  }

  .services-header p {
    font-size: 15px;
  }

  .services-grid {
    gap: 25px;
  }

  .service-card {
    padding: 30px 20px;
    min-height: 380px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
    min-height: 60px;
  }
}

/* PROJECTS */
.projects {
  padding: 80px 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.projects h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.projects-subtitle {
  font-size: 16px;
  color: #666666;
  font-weight: 400;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.project-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 184, 0, 0.2);
}

.project-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

.project-card:hover .card-overlay {
  opacity: 0.3;
}

.project-card:hover .card-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #f5f5f5;
}

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

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.card-badge.completed {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.card-badge.in-progress {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.card-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 10px));
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-view-btn i {
  font-size: 18px;
  color: #FFB800;
}

.card-view-btn:hover {
  background: #FFB800;
  transform: translate(-50%, -50%) scale(1.1);
}

.card-view-btn:hover i {
  color: #ffffff;
}

.card-content {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-card h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  font-weight: 700;
  line-height: 1.3;
}

.card-location {
  font-size: 14px;
  color: #777777;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-location i {
  color: #FFB800;
  font-size: 12px;
}

.card-details {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666666;
  font-weight: 500;
}

.detail-item i {
  color: #FFB800;
  font-size: 13px;
}

.detail-item small {
  font-size: 12px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #1a1a1a;
}

.rating i {
  color: #FFD700;
  font-size: 14px;
}

.rating span {
  font-size: 14px;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFB800;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.card-link:hover {
  gap: 10px;
  color: #FFC700;
}

.card-link i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(3px);
}

/* PROJECTS RESPONSIVE */
@media (max-width: 1200px) {
  .projects {
    padding: 60px 40px;
  }

  .projects h2 {
    font-size: 36px;
  }

  .project-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .projects {
    padding: 50px 20px;
  }

  .projects::before {
    width: 80vw;
    height: 80vw;
    right: -40%;
    top: -40%;
  }

  .projects-header {
    margin-bottom: 40px;
  }

  .projects h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .projects-subtitle {
    font-size: 14px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-image-wrapper {
    height: 240px;
  }

  .project-card h3 {
    font-size: 20px;
  }

  .card-content {
    padding: 20px 18px;
  }

  .card-details {
    flex-wrap: wrap;
    gap: 12px;
  }

  .detail-item {
    font-size: 11px;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .card-view-btn {
    width: 45px;
    height: 45px;
  }

  .card-view-btn i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .projects {
    padding: 40px 15px;
  }

  .projects h2 {
    font-size: 24px;
  }

  .projects-subtitle {
    font-size: 13px;
  }

  .project-grid {
    gap: 20px;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .project-card h3 {
    font-size: 18px;
  }

  .card-content {
    padding: 16px 14px;
  }

  .card-location {
    font-size: 12px;
  }

  .detail-item {
    font-size: 10px;
  }

  .rating span {
    font-size: 13px;
  }

  .card-link {
    font-size: 12px;
  }

  .card-badge {
    padding: 5px 12px;
    font-size: 10px;
  }
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(100, 100, 100, 0.8) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  margin: 40px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.newsletter-text {
  flex: 1;
  z-index: 2;
}

.newsletter-text h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter-text .hero-form {
  display: flex;
  gap: 12px;
}

.newsletter-text input {
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.newsletter-text input:focus {
  outline: none;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(100, 100, 100, 0.3);
}

.newsletter-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-image img {
  max-width: 100%;
  height: auto;
  width: 400px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.65) 0%, rgba(25, 25, 35, 0.65) 100%),
    url('img/footer.webp') center/cover no-repeat;
  background-attachment: fixed;
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 60px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 184, 0, 0.03) 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 1;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.footer-column {
  animation: fadeInUp 0.8s ease-out;
}

.footer-column h3 {
  font-size: 17px;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #FFB800, #FFD700);
  border-radius: 2px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 400;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  font-weight: 500;
}

.footer-column ul li a:hover {
  color: #FFD700;
  transform: translateX(6px);
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
  border: 1.5px solid rgba(255, 184, 0, 0.4);
  border-radius: 50%;
  color: #FFD700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.4) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-color: #FFB800;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item i {
  color: #FFB800;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item .label {
  font-size: 12px;
  color: #FFD700;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
}

.contact-item p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.3), transparent);
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 40px;
}

.footer-bottom-left,
.footer-bottom-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.footer-bottom-left {
  justify-content: flex-start;
}

.footer-bottom-right {
  justify-content: flex-end;
}

.footer-bottom-center {
  flex: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-center img {
  height: 75px;
  width: auto;
  filter: brightness(1.2) drop-shadow(0 4px 12px rgba(255, 184, 0, 0.3));
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
}

.footer-bottom-center img.fade-out {
  opacity: 0;
}

.footer-bottom-center img.fade-in {
  animation: footerLogoFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes footerLogoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.footer-bottom-center img:hover {
  filter: brightness(1.4) drop-shadow(0 6px 18px rgba(255, 184, 0, 0.5));
  transform: scale(1.08);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.footer-legal {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

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

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 50px 20px;
  }

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

  .footer-bottom-left,
  .footer-bottom-right {
    justify-content: center;
  }

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

  .footer-column h3::after {
    left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-section {
    padding: 25px;
    border-radius: 16px;
  }

  .footer-section h4 {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin: 0 -20px -20px -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    justify-content: center;
    flex: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer {
    padding: 60px 20px 0;
  }
}

/* VIDEO MODAL */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  z-index: 2001;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.modal-close {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 184, 0, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2002;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.modal-close:hover {
  background: rgba(255, 165, 0, 1);
  border-color: #ffffff;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
}

/* IMAGE MODAL STYLES */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal .modal-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* PDF MODAL STYLES */
.pdf-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.pdf-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-content {
  height: 85vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.pdf-wrapper {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
}

.pdf-wrapper object,
.pdf-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    border-radius: 12px;
  }

  .modal-close {
    width: 45px;
    height: 45px;
    font-size: 24px;
    top: 12px;
    left: 12px;
  }

  /* RESPONSIVE NAVBAR */
  .navbar {
    padding: 10px 15px;
    margin: 8px 10px;
  }

  .navbar nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 30, 0.95));
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    padding: 20px 15px;
    border-radius: 0 0 15px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  }

  .navbar nav.active {
    display: flex;
  }

  .navbar nav a {
    margin: 12px 0;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
  }

  .navbar nav a:hover {
    background: rgba(255, 184, 0, 0.2);
  }

  .hamburger {
    display: flex;
  }

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

  .navbar.scrolled nav {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 200, 0, 0.95));
    border-color: rgba(0, 0, 0, 0.3);
  }

  .navbar.scrolled nav a {
    color: #000000 !important;
    text-shadow: none !important;
  }

  .navbar.scrolled nav a:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  /* RESPONSIVE HERO */
  .hero {
    padding: 20px 20px 30px 20px;
    flex-direction: column;
    height: auto;
    min-height: auto;
    position: relative;
    margin-top: 0;
  }

  .hero::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .hero-text {
    max-width: 100%;
    margin-top: 0;
    z-index: 5;
    position: relative;
    padding-top: 30px;
    order: 2;
  }

  .hero-text .subtitle {
    display: inline-block;
    background: rgba(255, 184, 0, 0.95);
    color: #000000;
    font-size: 11px;
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    animation: slideInLeft 0.6s ease-out;
  }

  .hero-text h4 {
    font-size: 26px;
    line-height: 1.3;
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: unset;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin: 15px 0;
    font-weight: 800;
    animation: slideInLeft 0.6s ease-out 0.1s both;
  }

  .hero-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    margin-bottom: 20px;
    animation: slideInLeft 0.6s ease-out 0.2s both;
  }

  .hero-form {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .hero-form input {
    padding: 12px 15px;
    font-size: 14px;
    width: 100%;
  }

  .hero-form .btn-dark {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }

  .hero-video-btn {
    margin-top: 15px;
  }

  .btn-video {
    padding: 12px 28px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
    animation: slideInUp 0.6s ease-out 0.3s both, glow 3s ease-in-out infinite;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 240px;
    margin-top: 20px;
    z-index: 3;
    order: 1;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomInImage 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-delay: 0.5s;
  }
}

/* EXTRA SMALL DEVICES (max-width: 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 15px 15px 20px 15px;
  }

  .hero-text {
    padding-top: 20px;
  }

  .hero-text .subtitle {
    font-size: 10px;
    padding: 6px 12px;
    margin-bottom: 10px;
  }

  .hero-text h4 {
    font-size: 22px;
    margin: 12px 0;
  }

  .hero-text p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .hero-form {
    gap: 8px;
    margin-top: 12px;
  }

  .btn-video i {
    font-size: 14px;
  }

  .btn-video span {
    display: none;
  }

  .btn-video::before {
    display: none;
  }

  .hero-image {
    height: 200px;
    margin-top: 15px;
  }
}

/* CONTACT US - GLASSMORPHISM */
.contact-us {
  padding: 100px 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(245, 247, 250, 0.3) 100%),
    url('img/contact_image.jpeg') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.contact-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-us::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  animation: slideInUp 0.8s ease-out;
}

.contact-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 25%, #FFD700 50%, #FFB800 75%, #FFD700 100%);
  backdrop-filter: blur(20px);
  color: #000000;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 2.5px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(255, 184, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.contact-subtitle:hover {
  background: linear-gradient(135deg, #FFC700 0%, #FFB800 25%, #FFC700 50%, #FFA500 75%, #FFC700 100%);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 12px 45px rgba(255, 184, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.contact-header h2 {
  font-size: 42px;
  color: #ffffff;
  margin: 15px 0;
  font-weight: 800;
  line-height: 1.2;
}

.contact-header p {
  font-size: 16px;
  color: #ffffff;
  max-width: 600px;
  margin: 15px auto 0;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* CONTACT FORM */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  animation: slideInLeft 0.8s ease-out;
  transition: all 0.4s ease;
}

.contact-form-wrapper:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 16px 16px 16px 50px;
  border: 1.5px solid rgba(255, 184, 0, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  color: #333333;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 184, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1);
  padding: 16px 16px 16px 50px;
}

.form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFB800;
  font-size: 18px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group.full-width .form-icon {
  top: 20px;
  transform: translateY(0);
}

.form-group:focus-within .form-icon {
  color: #FFC700;
  font-size: 20px;
}

.btn-submit {
  padding: 16px 32px;
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 50%, #FFB800 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

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

.btn-submit:hover {
  background: linear-gradient(135deg, #FFC700 0%, #FFB800 50%, #FFC700 100%);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 184, 0, 0.4);
}

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

.btn-submit:active {
  transform: translateY(-2px) scale(0.98);
}

/* CONTACT INFO */
.contact-info-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  animation: slideInRight 0.8s ease-out;
}

.info-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 184, 0, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 184, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.info-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.info-card:hover .info-icon {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 12px 35px rgba(255, 184, 0, 0.4);
}

.info-card h3 {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.info-card p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  margin: 6px 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.info-card a {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(255, 184, 0, 0.15);
  color: #FFB800;
  text-decoration: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 184, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.info-card a:hover {
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
  color: #ffffff;
  border-color: #FFB800;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

/* TEAM SECTION */
.team-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #FFB800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-subtitle i {
  font-size: 16px;
}

.team-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.team-header p {
  font-size: 16px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px auto 0;
  width: fit-content;
  max-width: 100%;
}

.team-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(255, 184, 0, 0.2);
  border-color: rgba(255, 184, 0, 0.6);
}

.team-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.8) 0%, rgba(255, 167, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card:hover .team-overlay {
  opacity: 0;
}

.team-content {
  padding: 25px 24px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.team-title {
  font-size: 12px;
  font-weight: 700;
  color: #FFB800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 184, 0, 0.08);
  border-radius: 6px;
}

.btn-cv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #FFB800 0%, #FFD700 100%);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: fit-content;
  margin-top: auto;
}

.btn-cv:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 184, 0, 0.45);
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
}

.btn-cv:active {
  transform: translateY(-1px) scale(0.98);
}

/* RESPONSIVE TEAM */
@media (max-width: 1200px) {
  .team-section {
    padding: 80px 30px;
  }

  .team-grid {
    gap: 28px;
  }
}

@media (max-width: 1024px) {
  .team-section {
    padding: 70px 25px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin: 50px auto 0;
    width: fit-content;
    max-width: 100%;
  }

  .team-header h2 {
    font-size: 42px;
  }

  .team-image-wrapper {
    height: 200px;
  }

  .team-content h3 {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 20px;
  }

  .team-header h2 {
    font-size: 36px;
  }

  .team-header p {
    font-size: 14px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 50px auto 0;
    width: fit-content;
    max-width: 100%;
  }

  .team-image-wrapper {
    height: 200px;
  }

  .team-content {
    padding: 22px 20px;
  }

  .team-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .team-title {
    font-size: 11px;
    margin-bottom: 14px;
    padding: 3px 8px;
  }

  .btn-cv {
    padding: 9px 20px;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .team-section {
    padding: 50px 18px;
  }

  .team-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .team-header p {
    font-size: 13px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px auto 0;
    width: fit-content;
    max-width: 100%;
  }

  .team-image-wrapper {
    height: 240px;
  }

  .team-content {
    padding: 20px 18px;
  }

  .team-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .team-title {
    font-size: 11px;
    margin-bottom: 12px;
    padding: 3px 8px;
  }

  .btn-cv {
    padding: 9px 18px;
    font-size: 11px;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 40px 15px;
  }

  .team-header {
    margin-bottom: 40px;
  }

  .team-subtitle {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .team-header h2 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .team-header p {
    font-size: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 30px auto 0;
    width: fit-content;
    max-width: 100%;
  }

  .team-card {
    border-radius: 16px;
  }

  .team-image-wrapper {
    height: 220px;
  }

  .team-content {
    padding: 18px 16px;
  }

  .team-content h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .team-title {
    font-size: 10px;
    margin-bottom: 10px;
    padding: 3px 7px;
    letter-spacing: 1px;
  }

  .btn-cv {
    padding: 8px 16px;
    font-size: 10px;
    gap: 5px;
  }
}

@media (max-width: 360px) {
  .team-section {
    padding: 30px 12px;
  }

  .team-header h2 {
    font-size: 22px;
  }

  .team-content h3 {
    font-size: 15px;
  }

  .team-image-wrapper {
    height: 180px;
  }

  .team-content {
    padding: 16px 14px;
  }

  .btn-cv {
    padding: 7px 14px;
    font-size: 9px;
  }
}

/* RESPONSIVE CONTACT */
@media (max-width: 1024px) {
  .contact-us {
    padding: 80px 40px;
  }

  .contact-content {
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .contact-us {
    padding: 60px 20px;
  }

  .contact-header h2 {
    font-size: 32px;
  }

  .contact-header p {
    font-size: 14px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-wrapper {
    padding: 35px 25px;
  }

  .contact-info-wrapper {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .contact-us {
    padding: 50px 15px;
  }

  .contact-header h2 {
    font-size: 24px;
  }

  .contact-header p {
    font-size: 13px;
  }

  .contact-form-wrapper {
    padding: 25px 18px;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 14px 14px 45px;
    font-size: 13px;
  }

  .form-icon {
    font-size: 16px;
  }

  .btn-submit {
    padding: 14px 24px;
    font-size: 13px;
  }

  .info-card {
    padding: 20px 16px;
  }

  .info-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .info-card h3 {
    font-size: 16px;
  }

  .info-card p {
    font-size: 13px;
  }

  .info-card a {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* BLOGS SECTION */
.blogs {
  padding: 80px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.blogs::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.blogs-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.blogs h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.blogs-header p {
  font-size: 16px;
  color: #666666;
  font-weight: 400;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 184, 0, 0.2);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, #FFB800, #FFA500);
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.blog-content {
  padding: 30px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #777;
  font-weight: 500;
}

.blog-meta span i {
  color: #FFB800;
  margin-right: 5px;
}

.blog-card h3 {
  font-size: 22px;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.blog-card h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700;
}

.blog-card:hover h3 a {
  color: #FFB800;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFB800;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.blog-read-more i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: #FFC700;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* BLOGS RESPONSIVE */
@media (max-width: 1200px) {
  .blogs {
    padding: 60px 40px;
  }

  .blogs h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .blogs {
    padding: 50px 20px;
  }

  .blogs h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .blogs-header {
    margin-bottom: 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-image-wrapper {
    height: 220px;
  }

  .blog-card h3 {
    font-size: 20px;
  }

  .blog-content {
    padding: 24px 20px;
  }
}

/* ------------------------------------- */
/* INDIVIDUAL BLOG POST PAGE STYLES */
/* ------------------------------------- */

/* Blog Hero */
.blog-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  margin-top: 65px;
  /* Adjust based on navbar height */
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: slideInUp 0.8s ease-out forwards;
}

.blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #FFB800, #FFA500);
  color: #1a1a1a;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.blog-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.blog-hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.blog-hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-hero-meta i {
  color: #FFB800;
}

/* Main Container */
.blog-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-content-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Sidebar Share */
.blog-share-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #ebebeb;
}

.share-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.share-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn.facebook {
  background: #3b5998;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Article Body */
.blog-article {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

.blog-article .lead-text {
  font-size: 24px;
  font-weight: 300;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.blog-article h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin: 50px 0 20px;
  font-weight: 700;
}

.blog-article p {
  margin-bottom: 25px;
}

.blog-article ul {
  margin: 30px 0;
  padding-left: 20px;
}

.blog-article li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 10px;
}

.blog-article li::marker {
  color: #FFB800;
}

.blog-article strong {
  color: #1a1a1a;
  font-weight: 600;
}

.blog-article blockquote {
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: #FFB800;
  padding: 30px 40px;
  margin: 40px 0;
  background: #fafafa;
  border-left: 6px solid #FFB800;
  border-radius: 0 12px 12px 0;
  position: relative;
}

.blog-article blockquote::before {
  content: '"';
  font-size: 60px;
  font-family: serif;
  color: rgba(255, 184, 0, 0.2);
  position: absolute;
  top: -10px;
  left: 20px;
}

/* Blog Tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ebebeb;
}

.blog-tags span {
  background: #f0f0f0;
  color: #555555;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-tags span:hover {
  background: #FFB800;
  color: #1a1a1a;
}

/* Comments Section */
.blog-comments {
  margin-top: 80px;
  border-top: 2px solid #f0f0f0;
  padding-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-comments h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.comment {
  display: flex;
  gap: 20px;
  background: #fafafa;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-body {
  flex: 1;
}

.comment-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.comment-date {
  font-size: 13px;
  color: #999999;
  display: block;
  margin-bottom: 15px;
}

.comment-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 15px;
}

.reply-btn {
  background: none;
  border: none;
  color: #FFB800;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.reply-btn:hover {
  color: #1a1a1a;
}

/* Leave Comment Form */
.leave-comment {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.leave-comment h3 {
  margin-bottom: 10px;
}

.leave-comment>p {
  color: #777777;
  font-size: 14px;
  margin-bottom: 30px;
}

.comment-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.comment-form .form-group {
  flex: 1;
  margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #333;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #FFB800;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1);
}

.comment-form textarea {
  resize: vertical;
}

/* Responsive Blog Details */
@media (max-width: 992px) {
  .blog-content-wrapper {
    flex-direction: column;
  }

  .blog-share-sidebar {
    position: static;
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 32px;
  }

  .blog-article .lead-text {
    font-size: 18px;
  }

  .blog-article h2 {
    font-size: 26px;
  }

  .blog-article blockquote {
    font-size: 18px;
    padding: 20px;
  }

  .comment {
    flex-direction: column;
  }

  .comment-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .leave-comment {
    padding: 30px 20px;
  }
}