/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #8b0000;
  --dark-red: #5c0000;
  --light-red: #b22222;
  --accent-red: #dc143c;
  --white: #ffffff;
  --black: #1a202c;
  --gray-light: #f7fafc;
  --gray-medium: #e2e8f0;
  --gray-dark: #4a5568;
  --gold: #d69e2e;

  --font-heading: "Cinzel", serif;
  --font-body: "Montserrat", sans-serif;

  --shadow-light: 0 4px 6px rgba(139, 0, 0, 0.1);
  --shadow-medium: 0 10px 25px rgba(139, 0, 0, 0.15);
  --shadow-heavy: 0 20px 40px rgba(139, 0, 0, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--black);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(139, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.navbar.scrolled {
  background: rgba(139, 0, 0, 0.98);
  box-shadow: var(--shadow-medium);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-shield {
  width: 45px;
  height: 45px;
  background: var(--accent-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-light);
}

.logo-shield::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 15px;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  display: block;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent-red);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle::before {
  content: "▼ ";
  font-size: 10px;
  margin-right: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-red);
  min-width: 280px;
  border-radius: 8px;
  box-shadow: var(--shadow-heavy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1001;
  border: 1px solid var(--accent-red);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--accent-red);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: var(--transition);
}

/* Split Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-video video.loaded {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(92, 0, 0, 0.85) 100%);
  z-index: 2;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

/* Split Hero Layout */
.hero-split {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: relative;
}

.hero-left {
  text-align: right;
  padding-right: 60px;
}

.hero-right {
  text-align: left;
  padding-left: 60px;
}

/* Hero Divider */
.hero-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  position: relative;
  z-index: 4;
}

.divider-line {
  width: 2px;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
}

.divider-logo {
  margin: -10px 0;
  position: relative;
}

.unified-shield {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(15px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.unified-shield::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.unified-text {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Content */
.hero-content {
  max-width: 500px;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  margin-bottom: 25px;
}

.hero-shield {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-shield.red-shield {
  background: rgba(45, 107, 95, 0.3);
  border: 2px solid var(--accent-red);
}

.hero-shield::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.hero-logo-text {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.3;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-left .hero-buttons {
  justify-content: flex-end;
}

.hero-right .hero-buttons {
  justify-content: flex-start;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-red);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  background: var(--gray-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-red);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.btn-outline:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  font-size: 14px;
  opacity: 0.8;
  z-index: 3;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--white);
  margin: 10px auto;
  position: relative;
  animation: scroll 2s infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

@keyframes scroll {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px; /* Account for fixed navbar */
  }

  .hero-split {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px 60px;
    gap: 40px;
  }

  .hero-side {
    flex: none;
    padding: 20px;
    width: 100%;
  }

  .hero-left,
  .hero-right {
    text-align: center;
    padding: 20px;
  }

  .hero-divider {
    width: 100%;
    flex-direction: row;
    margin: 20px 0;
    order: 2; /* Place divider between the two sides */
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 3;
  }

  .divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
  }

  .unified-shield {
    width: 60px;
    height: 60px;
    margin: 0 20px;
  }

  .unified-text {
    font-size: 24px;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .hero-buttons {
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    min-width: 220px;
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 90px;
  }

  .hero-video video {
    display: none;
  }

  .hero-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    z-index: 1;
  }

  .hero-split {
    padding: 30px 15px 40px;
    gap: 30px;
  }

  .hero-side {
    padding: 15px;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .hero-shield {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .hero-logo-text {
    font-size: 28px;
  }

  .unified-shield {
    width: 50px;
    height: 50px;
  }

  .unified-text {
    font-size: 20px;
  }

  .divider-line {
    width: 60px;
  }

  .btn {
    min-width: 200px;
    padding: 11px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
  }

  .hero-split {
    padding: 20px 10px 30px;
    gap: 25px;
  }

  .hero-side {
    padding: 10px;
  }

  .hero-title {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .hero-shield {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }

  .hero-logo-text {
    font-size: 24px;
  }

  .unified-shield {
    width: 45px;
    height: 45px;
  }

  .unified-text {
    font-size: 18px;
  }

  .divider-line {
    width: 50px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 180px;
  }

  .hero-buttons {
    gap: 12px;
  }
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--gray-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--gray-dark);
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid var(--gray-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-red);
  margin-bottom: 20px;
  font-weight: 600;
}

.service-list {
  list-style: none;
  margin-bottom: 30px;
}

.service-list li {
  padding: 8px 0;
  color: var(--gray-dark);
  position: relative;
  padding-left: 20px;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

.service-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-red);
}

/* Red Peruana Areas Section */
.red-areas {
  padding: 100px 0;
  background: var(--gray-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.area-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border-top: 4px solid var(--primary-red);
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.area-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.area-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  font-weight: 600;
}

.area-description {
  color: var(--gray-dark);
  line-height: 1.6;
}

/* Mission Vision Section */
.mission-vision {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mv-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.mv-text {
  line-height: 1.8;
  opacity: 0.95;
}

/* Courses Section */
.courses {
  padding: 100px 0;
  background: var(--white);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.course-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.course-image {
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-content {
  padding: 25px;
}

.course-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  font-weight: 600;
}

.course-description {
  color: var(--gray-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.course-duration {
  background: var(--gray-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.course-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-red);
}

/* Projects Section */
.projects {
  padding: 100px 0;
  background: var(--gray-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.project-image {
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 25px;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  font-weight: 600;
}

.project-description {
  color: var(--gray-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-status {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-date {
  color: var(--gray-dark);
  font-size: 0.9rem;
}

.blog-category {
  background: var(--primary-red);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-excerpt {
  color: var(--gray-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--accent-red);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--gray-light);
  text-align: center;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--gray-light);
  border-radius: 15px;
  position: relative;
  z-index: 2;
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-details h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-red);
}

.contact-details p {
  color: var(--gray-dark);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--gray-medium);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--primary-red);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--white);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  background: var(--light-red);
}

.social-link svg {
  transition: var(--transition);
}

.social-link:hover svg {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-medium);
  padding: 8px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 10px;
  font-weight: 500;
  padding: 8px 4px;
  border-radius: 8px;
  transition: var(--transition);
  min-width: 60px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--primary-red);
  background: rgba(139, 0, 0, 0.1);
}

.mobile-nav-item svg {
  margin-bottom: 4px;
}

.mobile-nav-item span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 10px;
  }

  .nav-link {
    font-size: 12px;
    padding: 6px 8px;
  }

  .dropdown-menu {
    min-width: 250px;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 8px;
  }

  .nav-link {
    font-size: 11px;
    padding: 5px 6px;
    letter-spacing: 0.2px;
  }

  .dropdown-menu {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: none;
  }

  .hero-video video {
    display: none;
  }

  .hero-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    z-index: 1;
  }

  .business-toggle {
    top: 100px;
    flex-direction: column;
    width: 90%;
    max-width: 300px;
  }

  .toggle-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-tagline {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .service-card,
  .mv-card,
  .area-card {
    padding: 25px;
  }

  .services-grid,
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .business-toggle {
    top: 90px;
  }

  .toggle-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
}

/* Pause video on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-video video {
    animation-play-state: paused;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}
