/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: #000000;
  --secondary-bg: #0a0a0a;
  --accent-blue: #4a5568;
  --accent-blue-light: #64748b;
  --accent-blue-dark: #374151;
  --accent-steel: #4a5568;
  --accent-slate: #64748b;
  --accent-gray: #6b7280;
  --text-primary: #f8f8f8;
  --text-secondary: #e8e8e8;
  --text-muted: #b8b8b8;
  --text-bone: #f5f5dc;
  --border-color: #2a2a2a;
  --card-bg: #0f0f0f;
  --card-hover: #1c1c1c;
  --gradient-primary: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  --gradient-hover: linear-gradient(135deg, #2d2d2d, #404040);
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section with 3D Animation */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-section iframe {
  width: 120%;
  height: 120%;
  border: none;
  position: absolute;
  top: -10%;
  left: -10%;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  padding: 2rem;
  max-width: 600px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: slideInRight 1s ease forwards;
  opacity: 0;
}

.hero-title.small {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.1);
}

.hero-title.small:first-child {
  text-align: left;
  margin-left: -2rem;
  animation-delay: 0.1s;
}

.hero-title.main {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.1);
  margin-left: -1.5rem;
  text-align: center;
  animation-delay: 0.3s;
}

.hero-title.small:last-child {
  text-align: right;
  margin-right: -2rem;
  animation-delay: 0.5s;
}

/* Hero Description - Bottom Left */
.hero-description-bottom {
  position: absolute;
  bottom: 80px;
  left: 40px;
  max-width: 300px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
  z-index: 3;
}

.hero-description-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  text-align: justify;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Hero Action Button - Bottom Center */
.hero-action-bottom {
  position: absolute;
  bottom: 40px;
  left: 45%;
  transform: translateX(-50%);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
  z-index: 3;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.15) 0%, rgba(71, 85, 105, 0.1) 50%, rgba(100, 116, 139, 0.15) 100%);
  color: #8fa3b8;
  border: 2px solid rgba(100, 116, 139, 0.5);
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 
    0 0 20px rgba(100, 116, 139, 0.1),
    inset 0 0 20px rgba(100, 116, 139, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.15), transparent);
  transition: left 0.6s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.25) 0%, rgba(71, 85, 105, 0.15) 50%, rgba(100, 116, 139, 0.25) 100%);
  border-color: rgba(100, 116, 139, 0.8);
  box-shadow: 
    0 0 30px rgba(100, 116, 139, 0.3),
    inset 0 0 30px rgba(100, 116, 139, 0.1);
  color: rgba(143, 163, 184, 0.95);
}

.hero-btn .btn-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   CATEGORIES ACCORDION SECTION - NEW DESIGN
   ======================================== */

.categories-accordion-section {
  background: #000000; /* SOLID BLACK */
  padding: 100px 0;
  position: relative;
}

.accordion-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.accordion-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
}

.accordion-main-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, rgba(74, 85, 104, 0.6), rgba(100, 116, 139, 0.4));
  border-radius: 2px;
}

.accordion-subtitle {
  text-align: center;
  font-size: 18px;
  color: #b8b8b8;
  margin-bottom: 60px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Accordion Wrapper */
.accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Accordion Item */
.accordion-item {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.accordion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 85, 104, 0.08) 0%, rgba(100, 116, 139, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.accordion-item.active::before {
  opacity: 1;
}

.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(74, 85, 104, 0.4);
}

.accordion-item.active {
  transform: translateY(-8px);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(74, 85, 104, 0.6);
}

/* Accordion Header */
.accordion-header {
  display: flex;
  align-items: center;
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.accordion-header:hover {
  background: rgba(74, 85, 104, 0.08);
}

/* Accordion Icon */
.accordion-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(74, 85, 104, 0.7) 0%, rgba(100, 116, 139, 0.6) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  box-shadow: 
    0 10px 25px rgba(74, 85, 104, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.accordion-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.6s ease;
}

.accordion-item.active .accordion-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 
    0 15px 35px rgba(74, 85, 104, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.accordion-item.active .accordion-icon::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.accordion-icon i {
  font-size: 32px;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

/* Title Section */
.accordion-title-section {
  flex: 1;
}

.accordion-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.accordion-item.active .accordion-title {
  color: rgba(100, 116, 139, 0.9);
}

.accordion-preview {
  font-size: 14px;
  color: #b8b8b8;
  font-weight: 400;
  line-height: 1.4;
}

/* Toggle Arrow */
.accordion-toggle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 85, 104, 0.15);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.accordion-item.active .accordion-toggle {
  background: rgba(74, 85, 104, 0.25);
  transform: scale(1.1);
}

.accordion-toggle i {
  font-size: 18px;
  color: rgba(100, 116, 139, 0.8);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.accordion-item.active .accordion-content {
  max-height: 400px;
}

.accordion-content-inner {
  padding: 0 30px 40px 30px;
  border-top: 1px solid rgba(74, 85, 104, 0.3);
  margin-top: 20px;
  padding-top: 30px;
}

.accordion-description {
  font-size: 16px;
  color: #c0c0c0;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

/* Feature Items */
.accordion-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(74, 85, 104, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(74, 85, 104, 0.15);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(74, 85, 104, 0.15);
  border-color: rgba(74, 85, 104, 0.4);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 18px;
  color: rgba(100, 116, 139, 0.8);
  width: 20px;
  text-align: center;
}

.feature-item span {
  font-size: 14px;
  color: #e0e0e0;
  font-weight: 500;
}

/* CTA Button */
.accordion-action {
  text-align: center;
  margin-top: 60px;
}

.accordion-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 45px;
  background: linear-gradient(135deg, rgba(74, 85, 104, 0.7) 0%, rgba(55, 65, 81, 0.8) 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 
    0 20px 40px rgba(74, 85, 104, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.accordion-cta-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.6s ease;
}

.accordion-cta-btn:hover::before {
  left: 100%;
}

.accordion-cta-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 30px 60px rgba(74, 85, 104, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.8) 0%, rgba(74, 85, 104, 0.9) 100%);
}

.accordion-cta-btn i {
  transition: transform 0.3s ease;
}

.accordion-cta-btn:hover i {
  transform: translateX(5px);
}

/* ========================================
   MODERN COMPANIES SECTION - BLACK BACKGROUND
   ======================================== */

.modern-companies-section {
  background: #000000; /* SOLID BLACK */
  padding: 80px 0;
  min-height: 100vh;
}

.modern-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.modern-section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
}

.modern-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, rgba(74, 85, 104, 0.6), rgba(100, 116, 139, 0.4));
  border-radius: 2px;
}

/* Modern Companies Grid */
.modern-companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* Modern Company Card */
.modern-company-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  height: 480px;
}

.modern-company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 85, 104, 0.12) 0%, rgba(100, 116, 139, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.modern-company-card:hover::before {
  opacity: 1;
}

.modern-company-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(74, 85, 104, 0.5);
}

.modern-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Card Header with Banner Image */
.modern-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.modern-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(0.8) contrast(1.1);
}

.modern-company-card:hover .modern-banner-image {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

/* Category Tag - BLUE/GRAY THEME */
.modern-category-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #4a5568 0%, #64748b 50%, #6b7280 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 
    0 8px 25px rgba(74, 85, 104, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 3;
  transition: all 0.4s ease;
}

.modern-company-card:hover .modern-category-tag {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, rgba(74, 85, 104, 0.8) 0%, rgba(100, 116, 139, 0.7) 100%);
  box-shadow: 
    0 12px 35px rgba(74, 85, 104, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Card Content */
.modern-card-content {
  padding: 30px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  position: relative;
}

.modern-card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(74, 85, 104, 0.4) 50%, transparent 100%);
}

.modern-text-block {
  flex: 1;
}

.modern-company-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.modern-company-description {
  font-size: 14px;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

/* Card Footer */
.modern-card-footer {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-profile-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.modern-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74, 85, 104, 0.3);
  transition: all 0.4s ease;
}

.modern-company-card:hover .modern-avatar {
  border-color: rgba(74, 85, 104, 0.8);
  transform: scale(1.1);
}

.modern-publish-date {
  font-size: 13px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Load More Section - BLUE THEME */
.modern-load-more {
  text-align: center;
  margin-top: 50px;
}

.modern-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, rgba(74, 85, 104, 0.7) 0%, rgba(55, 65, 81, 0.8) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 
    0 15px 35px rgba(74, 85, 104, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.modern-load-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.6s ease;
}

.modern-load-btn:hover::before {
  left: 100%;
}

.modern-load-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 25px 50px rgba(74, 85, 104, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.8) 0%, rgba(74, 85, 104, 0.9) 100%);
}

.modern-load-btn::after {
  content: "→";
  transition: transform 0.3s ease;
}

.modern-load-btn:hover::after {
  transform: translateX(5px);
}

/* ========================================
   RESPONSIVE DESIGN FOR ACCORDION
   ======================================== */

@media (max-width: 1024px) {
  .accordion-container {
    padding: 0 30px;
  }
  
  .accordion-header {
    padding: 25px;
  }
  
  .accordion-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  
  .accordion-icon i {
    font-size: 28px;
  }
  
  .accordion-title {
    font-size: 22px;
  }
  
  .accordion-preview {
    font-size: 13px;
  }
  
  .accordion-content-inner {
    padding: 0 25px 35px 25px;
  }
  
  .accordion-description {
    font-size: 15px;
  }
  
  .feature-item {
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .categories-accordion-section {
    padding: 80px 0;
  }
  
  .accordion-container {
    padding: 0 20px;
  }
  
  .accordion-wrapper {
    max-width: 100%;
  }
  
  .accordion-header {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .accordion-icon {
    margin-right: 0;
    width: 50px;
    height: 50px;
  }
  
  .accordion-icon i {
    font-size: 24px;
  }
  
  .accordion-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .accordion-preview {
    font-size: 12px;
  }
  
  .accordion-toggle {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .accordion-toggle i {
    font-size: 16px;
  }
  
  .accordion-content-inner {
    padding: 0 20px 30px 20px;
  }
  
  .accordion-description {
    font-size: 14px;
  }
  
  .accordion-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-item {
    padding: 10px 14px;
  }
  
  .feature-item i {
    font-size: 16px;
  }
  
  .feature-item span {
    font-size: 13px;
  }
  
  .accordion-cta-btn {
    padding: 16px 35px;
    font-size: 12px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .accordion-container {
    padding: 0 15px;
  }
  
  .accordion-header {
    padding: 18px;
  }
  
  .accordion-icon {
    width: 45px;
    height: 45px;
  }
  
  .accordion-icon i {
    font-size: 20px;
  }
  
  .accordion-title {
    font-size: 18px;
  }
  
  .accordion-preview {
    font-size: 11px;
  }
  
  .accordion-toggle {
    width: 35px;
    height: 35px;
    top: 18px;
    right: 18px;
  }
  
  .accordion-toggle i {
    font-size: 14px;
  }
  
  .accordion-content-inner {
    padding: 0 18px 25px 18px;
  }
  
  .accordion-description {
    font-size: 13px;
  }
  
  .accordion-cta-btn {
    padding: 14px 30px;
    font-size: 11px;
    gap: 10px;
  }
}

/* ========================================
   RESPONSIVE DESIGN FOR HERO SECTION
   ======================================== */

@media (max-width: 1024px) {
  .hero-content {
    right: 5%;
    max-width: 550px;
  }
  
  .hero-description-bottom {
    left: 30px;
    bottom: 70px;
    max-width: 280px;
  }
  
  .hero-description-bottom p {
    font-size: 10px;
  }
  
  .hero-action-bottom {
    left: 42%;
  }
  
  .hero-btn {
    padding: 16px 35px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    position: absolute;
    top: 60%;
    left: 55%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
    padding: 1.5rem;
  }
  
  .hero-title.small:first-child {
    text-align: center;
    margin-left: 1rem !important;
  }
  
  .hero-title.main {
    margin-left: 0.5rem !important;
  }
  
  .hero-title.small:last-child {
    text-align: center;
    margin-right: -0.5rem !important;
  }
  
  .hero-description-bottom {
    left: 20px;
    bottom: 100px;
    max-width: 250px;
  }
  
  .hero-description-bottom p {
    font-size: 9px;
    line-height: 1.3;
  }
  
  .hero-action-bottom {
    bottom: 50px;
    left: 47%;
  }
  
  .hero-btn {
    padding: 15px 30px;
    font-size: 12px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    max-width: 95%;
    padding: 1rem;
    left: 52%;
  }
  
  .hero-title.small {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  
  .hero-title.main {
    font-size: clamp(3rem, 8vw, 5rem);
  }
  
  .hero-title.small:first-child {
    margin-left: 0.5rem !important;
  }
  
  .hero-title.main {
    margin-left: 0.2rem !important;
  }
  
  .hero-title.small:last-child {
    margin-right: -0.2rem !important;
  }
  
  .hero-description-bottom {
    left: 15px;
    bottom: 90px;
    max-width: 200px;
  }
  
  .hero-description-bottom p {
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: 0.2px;
  }
  
  .hero-action-bottom {
    bottom: 40px;
    left: 48%;
  }
  
  .hero-btn {
    padding: 14px 28px;
    font-size: 11px;
    gap: 8px;
  }
}

/* ========================================
   RESPONSIVE DESIGN FOR MODERN CARDS
   ======================================== */

@media (max-width: 1200px) {
  .modern-companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  
  .modern-container {
    padding: 0 30px;
  }
  
  .modern-company-card {
    height: 460px;
  }
  
  .modern-card-header {
    height: 180px;
  }
  
  .modern-card-content {
    height: 280px;
    padding: 25px;
  }
  
  .modern-company-title {
    font-size: 20px;
  }
  
  .modern-company-description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .modern-companies-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .modern-container {
    padding: 0 20px;
  }
  
  .modern-companies-section {
    padding: 60px 0;
  }
  
  .modern-company-card {
    height: 440px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .modern-card-header {
    height: 160px;
  }
  
  .modern-card-content {
    height: 280px;
    padding: 22px;
  }
  
  .modern-company-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .modern-company-description {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  
  .modern-category-tag {
    font-size: 10px;
    padding: 8px 16px;
    top: 15px;
    left: 15px;
  }
  
  .modern-avatar {
    width: 40px;
    height: 40px;
  }
  
  .modern-publish-date {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .modern-container {
    padding: 0 15px;
  }
  
  .modern-companies-grid {
    gap: 25px;
  }
  
  .modern-company-card {
    height: 420px;
  }
  
  .modern-card-header {
    height: 140px;
  }
  
  .modern-card-content {
    height: 280px;
    padding: 20px;
  }
  
  .modern-company-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .modern-company-description {
    font-size: 11px;
    -webkit-line-clamp: 2;
  }
  
  .modern-category-tag {
    font-size: 9px;
    padding: 6px 12px;
    top: 12px;
    left: 12px;
  }
  
  .modern-card-footer {
    margin-top: 20px;
    padding-top: 20px;
  }
  
  .modern-avatar {
    width: 36px;
    height: 36px;
  }
  
  .modern-publish-date {
    font-size: 11px;
  }
  
  .modern-load-btn {
    padding: 15px 30px;
    font-size: 12px;
  }
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg));
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.footer-content .italic {
  font-style: italic;
  color: #888888;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-cta {
  text-align: right;
}

.triunfaje {
  color: #cccccc;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #666666, #555555);
  color: var(--text-primary);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-footer:hover {
  background: linear-gradient(135deg, #777777, #666666);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 102, 102, 0.3);
}

.btn-footer::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn-footer:hover::after {
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: #999999;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Container for other sections */
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
}