/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

ul {
  list-style: none;
}

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

/* ===== VARIABLES CSS ===== */
:root {
  --primary-color: #be3030;
  --secondary-color: #a02828;
  --accent-color: #d94545;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

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

.btn-secondary {
  background-color: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  background-color: #d97706;
  border-color: #d97706;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.logo {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  transition: all 0.3s ease;
  object-fit: contain;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.nav-logo:hover .logo-text {
  color: var(--primary-color);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(190, 48, 48, 0.05);
}

.nav-link.active {
  color: var(--primary-color);
  background-color: rgba(190, 48, 48, 0.1);
  font-weight: 600;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-button {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(190, 48, 48, 0.3);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cta-button::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 ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(190, 48, 48, 0.4);
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.active {
  background: linear-gradient(135deg, var(--secondary-color), #8b1e1e);
  box-shadow: 0 4px 15px rgba(190, 48, 48, 0.4);
}

.cta-button.active:hover {
  background: linear-gradient(135deg, #8b1e1e, var(--secondary-color));
}

.translate-widget {
  opacity: 0.8;
  transition: var(--transition);
}

.translate-widget:hover {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  z-index: 1001;
}

.hamburger:hover {
  background-color: rgba(190, 48, 48, 0.1);
}

.bar {
  width: 25px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0 4rem;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(190, 48, 48, 0.05) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(217, 69, 69, 0.05) 0%,
    transparent 70%
  );
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-graphic {
  width: 450px;
  height: 350px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(190, 48, 48, 0.3);
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.hero-graphic::before {
  content: "💰";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-graphic::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shine 3s ease-in-out infinite;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #e0f2fe 30%,
    #f8fafc 70%,
    #dbeafe 100%
  );
  position: relative;
  overflow: hidden;
}

.advantages::before {
  content: "";
  background: radial-gradient(
      circle at 20% 80%,
      rgba(190, 48, 48, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(217, 69, 69, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(190, 48, 48, 0.05) 0%,
      transparent 50%
    );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.advantages::after {
  content: "";
  background: radial-gradient(
      circle at 60% 60%,
      rgba(190, 48, 48, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(217, 69, 69, 0.05) 0%,
      transparent 50%
    );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.advantages .container {
  position: relative;
  z-index: 2;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(190, 48, 48, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 0;
}

.advantage-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(190, 48, 48, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}

.advantage-card:hover::after {
  opacity: 1;
  width: 150px;
  height: 150px;
}

.advantage-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(190, 48, 48, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(190, 48, 48, 0.1);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1.8rem;
  display: inline-block;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(248, 250, 252, 0.8)
  );
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(190, 48, 48, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(190, 48, 48, 0.15),
    0 6px 15px rgba(0, 0, 0, 0.08);
}

.advantage-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--primary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantage-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== SERVICES SECTION ===== */
.services-detailed {
  padding: 4rem 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse .service-content {
  direction: ltr;
}

.service-content {
  padding: 2rem;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-graphic {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.service-1 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.service-2 {
  background: linear-gradient(135deg, #10b981, #059669);
}

.service-3 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-4 {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials-preview {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.testimonials-full {
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.client-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #d97706);
}

.client-info h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.client-title {
  font-size: 0.9rem;
  opacity: 0.8;
}

.client-company {
  font-size: 0.9rem;
  opacity: 0.7;
}

.rating {
  margin-left: auto;
}

.testimonial-content blockquote {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.funding-amount,
.funding-type {
  background-color: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-card.featured .funding-amount,
.testimonial-card.featured .funding-type {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 3rem 0;
  background-color: var(--primary-color);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 4rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  padding: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-details p {
  color: var(--text-light);
}

.company-info {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.company-info h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.company-info ul {
  list-style: none;
}

.company-info li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* ===== FORMS ===== */
.contact-form-container,
.form-container {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
}

.form-section .section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  color: var(--text-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-white);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-help {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.error-message {
  color: var(--error-color);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  position: relative;
}

.btn-loading {
  display: none;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.submit-info {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.form-messages {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  display: none;
}

.form-messages.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  display: block;
}

.form-messages.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  display: block;
}

/* ===== PROCESS STEPS SECTION ===== */
.process-steps-section {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== FUNDING FORM SECTION ===== */
.funding-form-section {
  padding: 4rem 0;
}

.funding-form {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== SECURITY SECTION ===== */
.security-section {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.security-content {
  text-align: center;
}

.security-content h2 {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.security-item {
  text-align: center;
  padding: 1.5rem;
}

.security-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.security-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.security-item p {
  color: var(--text-light);
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.map-container {
  margin-top: 2rem;
}

.map-placeholder {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.map-content p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 4rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== VIDEO TESTIMONIAL ===== */
.video-testimonial {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.video-container {
  margin-top: 2rem;
}

.video-placeholder {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 4rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
}

.play-button {
  font-size: 4rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  transform: scale(1.1);
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  padding: 4rem 0;
}

.legal-sections {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
}

.legal-section h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.legal-section h3 {
  color: var(--text-dark);
  margin: 1.5rem 0 1rem;
  font-size: 1.2rem;
}

.legal-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-info ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-info li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.legal-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

.cta-section .btn:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.cta-section .btn-outline {
  background-color: transparent;
  color: white;
  border-color: white;
}

.cta-section .btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-contact {
  margin-top: 1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #9ca3af;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* ===== GTRANSLATE WIDGET ===== */
#gtranslate_wrapper {
  display: inline-block;
  min-width: 160px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px 8px;
  background: white;
  font-size: 14px;
  color: #333;
  z-index: 10000;
}

#gtranslate_wrapper_mobile {
  margin-top: 1rem;
}

.gtranslate_wrapper a {
  color: #333 !important;
}

.gtranslate_wrapper a:hover {
  background-color: #f0f0f0 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .nav-container {
    padding: 0 1.5rem;
    height: 70px;
  }

  .logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
    padding: 8rem 2rem 4rem;
    gap: 2rem;
    justify-content: flex-start;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-menu .nav-link {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 1.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: rgba(190, 48, 48, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(190, 48, 48, 0.2);
    border-color: rgba(190, 48, 48, 0.2);
  }

  /* Mobile CTA Button in Menu */
  .nav-menu .mobile-cta-btn {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    ) !important;
    color: white !important;
    margin-top: 2rem;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px rgba(190, 48, 48, 0.3) !important;
    border: none !important;
  }

  .nav-menu .mobile-cta-btn:hover {
    background: linear-gradient(
      135deg,
      var(--secondary-color),
      var(--primary-color)
    ) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(190, 48, 48, 0.4) !important;
  }

  .hamburger {
    display: flex;
  }

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

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 5rem 0 3rem;
    margin-top: 60px;
    min-height: calc(100vh - 60px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-graphic {
    width: 320px;
    height: 240px;
    margin: 0 auto;
  }

  .hero-graphic::before {
    font-size: 4rem;
  }

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

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

  .service-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-item.reverse {
    direction: ltr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    grid-column: span 1;
  }

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

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

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

  .advantages-grid,
  .process-steps,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 15px;
  }

  .translate-widget {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo {
    width: 55px;
    height: 55px;
    border-radius: 12px;
  }

  .hero {
    padding: 3rem 0 2rem;
    min-height: 50vh;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: -40px;
  }

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

  .hero-buttons {
    gap: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

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

  .advantages {
    padding: 4rem 0;
  }

  .advantages-grid {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .advantage-card {
    padding: 2rem;
  }

  .advantage-icon {
    font-size: 3rem;
    padding: 0.8rem;
  }

  .advantage-card h3 {
    font-size: 1.4rem;
  }

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

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

  .hero-graphic {
    width: 280px;
    height: 200px;
  }

  .form-section {
    padding: 1rem;
  }

  .contact-form-container,
  .form-container {
    padding: 1rem;
  }
}

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

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

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .footer,
  .cta-section,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }

  .page-header {
    background: none !important;
    color: black !important;
  }
}
