/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, #fefefe 0%, #fff 100%);
  color: #333;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
  padding: 1.2rem 0;
  transition: padding 0.3s ease;
}

.header.scrolled .navbar {
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-img {
  height: 55px;
  width: auto;
  transition: height 0.3s ease;
}

.header.scrolled .logo-img {
  height: 45px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #333;
}

.register-btn {
  background: linear-gradient(135deg, #ea1a1a 0%, #b81616 100%);
  color: white !important;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.register-btn::after {
  display: none;
}

.register-btn:hover {
  background: linear-gradient(135deg, #222 0%, #333 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url(img/bg.jpg);
  background-size: cover;
}

.hero-background {
  position: absolute;
  background-color: #1a1a1ab7;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  backdrop-filter: blur(4px);
  background-position: center;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(234, 26, 26, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(234, 26, 26, 0.03) 0%,
      transparent 50%
    );
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(236, 236, 236, 0.1) 0%,
    rgba(233, 233, 233, 0.05) 100%
  );
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(234, 26, 26, 0.2);
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #eee;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #ccc;
  font-style: italic;
}

.hero-subtitle .highlight {
  background: linear-gradient(135deg, #ea1a1a 0%, #b81616 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #eee;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #eee;
  font-weight: 500;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ea1a1a 0%, #b81616 100%);
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover .btn-arrow {
  transform: translateX(5px);
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image-container:hover {
  transform: translateY(-10px);
}

.hero-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-main-image {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 2rem 2rem;
  color: white;
}

.overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-side-title {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ea1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.section-header h2 {
  color: #333;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(
    ellipse at center top,
    rgba(234, 26, 26, 0.03) 0%,
    transparent 70%
  );
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text-section {
  padding-right: 2rem;
}

.about-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ea1a1a 0%, #b81616 100%);
  margin-bottom: 1.5rem;
}

.about-tagline {
  font-size: 1.1rem;
  color: #ea1a1a;
  font-weight: 600;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #e1e5e9;
}

.about-stats .stat-item {
  text-align: center;
}

.about-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ea1a1a;
  display: block;
  margin-bottom: 0.5rem;
}

.about-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.about-cards-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ea1a1a 0%, #b81616 100%);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ea1a1a 0%, #b81616 100%);
  color: white;
  border-radius: 15px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.about-card:hover .card-icon {
  transform: scale(1.1);
}

.about-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.about-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.values-list-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.value-item-compact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

.value-item-compact i {
  color: #ea1a1a;
  font-size: 0.8rem;
}

/* Projects Section */
.projects {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(234, 26, 26, 0.02) 0%,
    transparent 100%
  );
  z-index: 1;
}

.projects .container {
  position: relative;
  z-index: 2;
}

/* Projects Gallery Swiper */
.projects-gallery {
  margin-bottom: 5rem;
}

.projectsSwiper {
  padding: 2rem 0 3rem;
  overflow: visible;
}

.project-slide {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.project-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-slide:hover .project-slide-image {
  transform: scale(1.05);
}

.project-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-slide:hover .project-slide-overlay {
  transform: translateY(0);
}

.project-slide-overlay h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.project-slide-overlay p {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0;
}

/* Swiper Navigation Buttons */
.projectsSwiper .swiper-button-next,
.projectsSwiper .swiper-button-prev {
  color: #ea1a1a;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.projectsSwiper .swiper-button-next:after,
.projectsSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.projectsSwiper .swiper-button-next:hover,
.projectsSwiper .swiper-button-prev:hover {
  background: #ea1a1a;
  color: white;
  transform: scale(1.1);
}

/* Swiper Pagination */
.projectsSwiper .swiper-pagination {
  bottom: 0;
}

.projectsSwiper .swiper-pagination-bullet {
  background: #ea1a1a;
  opacity: 0.3;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.projectsSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.projects-showcase {
  display: grid;
  gap: 4rem;
  margin-top: 3rem;
}

.project-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(234, 26, 26, 0.1);
}

.project-feature:last-child {
  border-bottom: none;
}

.project-feature:nth-child(even) {
  direction: rtl;
}

.project-feature:nth-child(even) > * {
  direction: ltr;
}

.project-visual {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.project-visual:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.project-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(234, 26, 26, 0.1) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-visual:hover::before {
  opacity: 1;
}

.project-main-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-main-image {
  transform: scale(1.05);
}

.project-details {
  padding: 1rem 0;
}

.project-category {
  display: inline-block;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-details h3 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.project-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.project-highlights {
  list-style: none;
  margin-bottom: 2.5rem;
}

.project-highlights li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #555;
}

.project-highlights li::before {
  content: "✓";
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

.project-actions {
  display: flex;
  gap: 1rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.project-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.project-link-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background: transparent;
  color: #333;
  text-decoration: none;
  border: 2px solid #333;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-link-secondary:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
}

/* Project Stats */
.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(234, 26, 26, 0.05) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ea1a1a;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ea1a1a;
}

/* Footer */
.footer {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 4rem 0 0;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(234, 26, 26, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(234, 26, 26, 0.05) 0%,
      transparent 50%
    );
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #ea1a1a;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-contact .contact-item i {
  color: #ea1a1a;
  width: 16px;
}

.footer-cta {
  margin-top: 1rem;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-section h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
}

.project-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  color: #ccc;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.project-link:hover {
  background: rgba(0, 0, 0, 0.1);
  border-left-color: #333;
  transform: translateX(5px);
}

.project-link i {
  color: #333;
  font-size: 1.2rem;
  width: 20px;
}

.project-link span {
  font-weight: 600;
  color: white;
}

.project-link small {
  color: #999;
  font-size: 0.8rem;
  margin-top: 2px;
}

.values-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.value-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.value-badge:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.value-badge i {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #999;
  margin: 0;
  font-size: 0.9rem;
}

.footer-actions {
  display: flex;
  gap: 1.5rem;
}

.footer-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.footer-action:hover {
  color: #ea1a1a;
  background: rgba(234, 26, 26, 0.1);
}

/* Register Page Styles */
.register-section {
  padding: 120px 0 80px;
  background-color: #f8f9fa;
  min-height: 100vh;
}

.register-container {
  max-width: 1200px;
  margin: 0 auto;
}

.register-header {
  text-align: center;
  margin-bottom: 3rem;
}

.register-header h1 {
  color: #333;
  margin-bottom: 1rem;
}

.register-content {
  display: grid;
  justify-content: center;
  gap: 3rem;
}

.register-info h3 {
  color: #333;
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  background-color: #ea1a1a;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefits-list h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.register-form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1000px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 2px;
}

.terms-link {
  color: #ea1a1a;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

.register-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e5e9;
}

.login-link {
  color: #ea1a1a;
  text-decoration: none;
  font-weight: 500;
}

.login-link:hover {
  text-decoration: underline;
}

/* Mobile Responsive - 768px and below */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Typography adjustments */
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Navigation */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero Section */
  .hero-container {
    padding: 100px 15px 60px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .overlay-content h3 {
    font-size: 1.1rem;
  }

  .overlay-content p {
    font-size: 0.85rem;
  }

  .value-item h4 {
    font-size: 1.1rem;
  }

  .value h4 {
    font-size: 1rem;
  }

  .core-values h3 {
    font-size: 1.6rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-buttons {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 180px;
    font-size: 0.8rem;
    justify-content: center;
  }

  /* Sections */
  .about,
  .projects,
  .contact {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-side-title {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }

  /* About Section Mobile */
  .about-main-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text-section {
    padding-right: 0;
    text-align: center;
  }

  .about-header h2 {
    font-size: 1.4rem;
  }

  .about-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .about-tagline {
    font-size: 0.9rem;
  }

  .about-description p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-stats .stat-number {
    font-size: 2rem;
  }

  .about-stats .stat-label {
    font-size: 0.8rem;
  }

  .about-cards-section {
    gap: 1.5rem;
  }

  .about-card {
    padding: 2rem;
  }

  .about-card h4 {
    font-size: 1.1rem;
  }

  .about-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .values-list-compact {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .value-item-compact {
    font-size: 0.8rem;
  }

  /* Projects Gallery Mobile */
  .projects-gallery {
    margin-bottom: 3rem;
  }

  .project-slide {
    height: 280px;
  }

  .project-slide-overlay {
    padding: 1.5rem;
  }

  .project-slide-overlay h4 {
    font-size: 1.1rem;
  }

  .project-slide-overlay p {
    font-size: 0.85rem;
  }

  .projectsSwiper .swiper-button-next,
  .projectsSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .projectsSwiper .swiper-button-next:after,
  .projectsSwiper .swiper-button-prev:after {
    font-size: 14px;
  }

  /* Projects Showcase */
  .project-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .project-feature:nth-child(even) {
    direction: ltr;
  }

  .project-visual {
    order: 1;
  }

  .project-details {
    order: 2;
  }

  .project-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-actions {
    flex-direction: column;
    align-items: center;
  }

  .project-actions .project-link,
  .project-actions .project-link-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
    justify-content: center;
  }

  /* Contact */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-actions {
    justify-content: center;
  }

  /* Register Page */
  .register-section {
    padding: 100px 0 60px;
  }

  .register-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .register-info {
    order: 2;
  }

  .register-form-container {
    order: 1;
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benefits-list li {
    padding: 1rem;
  }

  .benefit-icon {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
}

/* Medium mobile devices - 600px and below */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .section-header p {
    font-size: 0.85rem;
  }

  .about-header h2 {
    font-size: 1.3rem;
  }

  .about-tagline {
    font-size: 0.85rem;
  }

  .about-description p {
    font-size: 0.85rem;
  }

  .about-card h4 {
    font-size: 1rem;
  }

  .about-card p {
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.85rem;
  }
}

/* Additional mobile adjustments for very small screens */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo-img {
    height: 30px;
  }

  .hero {
    padding: 90px 15px 50px;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .about-text p {
    font-size: 0.85rem;
  }

  .section-header p {
    font-size: 0.8rem;
  }

  .about-header h2 {
    font-size: 1.2rem;
  }

  .about-tagline {
    font-size: 0.8rem;
  }

  .about-description p {
    font-size: 0.8rem;
  }

  .about-stats .stat-number {
    font-size: 1.8rem;
  }

  .about-stats .stat-label {
    font-size: 0.75rem;
  }

  .about-card {
    padding: 1.5rem;
  }

  .about-card h4 {
    font-size: 0.95rem;
  }

  .about-card p {
    font-size: 0.8rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .value-item-compact {
    font-size: 0.75rem;
  }

  .value-item h4,
  .value h4 {
    font-size: 0.95rem;
  }

  .core-values h3 {
    font-size: 1.3rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .project-details,
  .contact-form,
  .register-form-container {
    padding: 1rem;
  }

  .value {
    padding: 1.5rem;
  }

  .project-slide {
    height: 250px;
  }

  .project-slide-overlay {
    padding: 1rem;
  }

  .project-slide-overlay h4 {
    font-size: 1rem;
  }

  .project-slide-overlay p {
    font-size: 0.8rem;
  }

  .projectsSwiper .swiper-button-next,
  .projectsSwiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .projectsSwiper .swiper-button-next:after,
  .projectsSwiper .swiper-button-prev:after {
    font-size: 12px;
  }

  .project-visual {
    margin: 0 -15px;
    border-radius: 15px;
  }

  .project-main-image {
    height: 250px;
  }
}

/* Advanced Animations and Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 26, 26, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(234, 26, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 26, 26, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(234, 26, 26, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(234, 26, 26, 0.8);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Floating Animation for Icons */

.value-icon:nth-child(odd) {
  animation-delay: 0.5s;
}

.feature-icon:nth-child(even) {
  animation-delay: 1s;
}

/* Hover Glow Effects */
.btn-primary:hover,
.project-link:hover,
.footer-btn:hover {
  animation: glow 2s ease-in-out infinite;
}

/* Shimmer Effect for Buttons */
.btn::after {
  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;
}

.btn:hover::after {
  left: 100%;
}

/* Parallax Scroll Effect */
.hero-pattern,
.footer-pattern {
  animation: float 6s ease-in-out infinite;
}

/* Stagger Animation Delays */
.project-feature:nth-child(1) {
  animation-delay: 0.1s;
}
.project-feature:nth-child(2) {
  animation-delay: 0.2s;
}
.project-feature:nth-child(3) {
  animation-delay: 0.3s;
}
.project-feature:nth-child(4) {
  animation-delay: 0.4s;
}

.value:nth-child(1) {
  animation-delay: 0.1s;
}
.value:nth-child(2) {
  animation-delay: 0.2s;
}
.value:nth-child(3) {
  animation-delay: 0.3s;
}
.value:nth-child(4) {
  animation-delay: 0.4s;
}
.value:nth-child(5) {
  animation-delay: 0.5s;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Button Styles */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Parallax Effect */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ea1a1a 0%, #d11616 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #d11616 0%, #b91414 100%);
}

/* Selection Color */
::selection {
  background: rgba(234, 26, 26, 0.2);
  color: #333;
}

::-moz-selection {
  background: rgba(234, 26, 26, 0.2);
  color: #333;
}
/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  color: white;
}

.whatsapp-btn i {
  font-size: 1.5rem;
}

.whatsapp-tooltip {
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* WhatsApp Animation */
@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }
}

.whatsapp-btn {
  animation: whatsappPulse 2s ease-in-out infinite;
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-tooltip {
    display: none;
  }

  .whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}
