/* Custom CSS for Haji Aman Website */

:root {
  --primary-color: #ff6b35;
  --primary-dark: #e55a2b;
  --primary-light: #ff8c66;
  --secondary-color: #ffffff;
  --accent-color: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --success-color: #28a745;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.display-4 {
  font-weight: 800;
  line-height: 1.1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(255, 107, 53, 0.3) 100%);
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 2rem 0;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-warning {
  background: linear-gradient(135deg, #ffc107, #ff8f00);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-warning:hover {
  background: linear-gradient(135deg, #ff8f00, #ffc107);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #000;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.feature-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service Highlight */
.service-highlight {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.service-main-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-main-icon i {
  font-size: 40px;
  color: white;
}

.service-highlight h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.8rem;
}

.service-features {
  margin-top: 30px;
}

.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
}

.service-item span {
  font-weight: 500;
  color: #2c3e50;
}

/* Service Mini Cards */
.service-mini {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f8f9fa;
}

.service-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-mini-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-mini-icon i {
  font-size: 24px;
  color: white;
}

.service-mini h5 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-mini p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
  transform: translateX(-50%);
}

.process-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-item:nth-child(even) {
  flex-direction: row-reverse;
}

.process-item:nth-child(even) .process-content {
  text-align: right;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: var(--shadow);
}

.process-content {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: calc(50% - 50px);
  margin-left: auto;
  margin-right: auto;
}

.process-item:nth-child(odd) .process-content {
  margin-right: 50px;
}

.process-item:nth-child(even) .process-content {
  margin-left: 50px;
}

.process-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.process-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Mobile Timeline - Vertical Layout */
@media (max-width: 768px) {
  .process-timeline::before {
    left: 30px;
    transform: none;
  }

  .process-item {
    flex-direction: row !important;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .process-item:nth-child(even) {
    flex-direction: row !important;
  }

  .process-number {
    position: static;
    left: auto;
    transform: none;
    width: 50px;
    height: 50px;
    font-size: 1rem;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 5px;
  }

  .process-content {
    width: calc(100% - 70px);
    margin: 0;
    padding: 1.5rem;
    text-align: left !important;
  }

  .process-item:nth-child(odd) .process-content,
  .process-item:nth-child(even) .process-content {
    margin: 0;
    text-align: left !important;
  }

  .process-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .process-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .process-timeline {
    padding: 1rem 0;
  }

  .process-timeline::before {
    left: 25px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    margin-right: 15px;
  }

  .process-content {
    width: calc(100% - 55px);
    padding: 1.25rem;
  }

  .process-content h4 {
    font-size: 1rem;
  }

  .process-content p {
    font-size: 0.85rem;
  }
}

/* Testimonial Featured */
.testimonial-featured {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.testimonial-featured .video-container {
  margin-bottom: 30px;
}

.testimonial-featured-content h4 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.testimonial-featured-content .lead {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Testimonial Mini */
.testimonial-mini {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-mini-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.platform-icon.tiktok {
  background: linear-gradient(135deg, #ff0050, #000);
}

.platform-icon i {
  color: white;
  font-size: 20px;
}

.testimonial-mini h6 {
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-mini p {
  color: #666;
  font-size: 0.9rem;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100% !important;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Education Content */
.education-content h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 2rem;
}

.education-features {
  margin: 30px 0;
}

.education-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 0;
}

.education-item span {
  font-weight: 500;
  color: #2c3e50;
  font-size: 1.1rem;
}

.education-videos {
  margin-top: 30px;
}

.education-visual {
  position: relative;
}

.education-visual .video-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 250px;
}

/* Education Section */
.education-featured {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.education-featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.education-featured-video {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.education-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.education-featured:hover .education-video-thumb {
  transform: scale(1.05);
}

.education-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.education-featured:hover .education-play-overlay {
  opacity: 1;
}

.education-play-overlay i {
  color: white;
  font-size: 4rem;
}

.education-featured-content {
  padding: 30px;
}

.education-featured-content h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.education-featured-content p {
  color: #7f8c8d;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Media Featured */
.media-featured {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.media-main-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.media-main-icon i {
  font-size: 40px;
  color: white;
}

.media-featured h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.8rem;
}

.media-highlights {
  margin-top: 30px;
}

.media-highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
}

.media-highlight-item span {
  font-weight: 500;
  color: #2c3e50;
}

/* Media Mini Cards */
.media-mini {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.media-mini-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.media-mini-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.media-mini-icon.kompasiana {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
}

.media-mini-icon.kop {
  background: linear-gradient(135deg, #43a047, #2e7d32);
}

.media-mini-icon.radar {
  background: linear-gradient(135deg, #e53935, #c62828);
}

.media-mini-icon i {
  color: white;
  font-size: 20px;
}

.media-mini h6 {
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 600;
}

.media-mini p {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Main CTA Card */
.cta-main-card {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.2);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-main-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.feature-item i {
  color: #ffc107;
  font-size: 1.2rem;
}

.cta-action {
  position: relative;
  z-index: 2;
}

.price-badge {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 5px;
}

.price-amount {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffc107;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 193, 7, 0.4);
  color: #000;
}

/* Contact Method Cards */
.contact-methods {
  margin-top: 30px;
}

.contact-method-card {
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 1.8rem;
  color: white;
}

.contact-method-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.contact-content p {
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.contact-number {
  font-weight: 600;
  color: #28a745;
  font-size: 1rem;
}

.contact-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.contact-method-card:hover .contact-btn {
  opacity: 1;
  transform: scale(1);
}

.contact-btn:hover {
  background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
  color: white;
  transform: scale(1.1);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trust-item i {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 5px;
}

.trust-item span {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

/* Legacy contact-item styles for backward compatibility */
.contact-item {
  text-align: center;
  padding: 20px;
}

.contact-item i {
  color: #28a745;
  margin-bottom: 15px;
}

.contact-item h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.contact-item p {
  color: #6c757d;
  margin-bottom: 0;
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  border-top: 4px solid #28a745;
}

.footer-content .footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #28a745;
}

.footer-content .footer-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.social-media-icons {
  text-align: right;
}

.social-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.social-icons-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  /* background: rgba(255, 255, 255, 0.1); */
  /* border: 2px solid rgba(255, 255, 255, 0.3); */
  color: rgba(255, 255, 255, 0.8);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

/* TikTok */
/* .social-icon.tiktok {
  border-color: #ff0050;
  color: #ff0050;
} */

/* Instagram */
.social-icon.instagram,
.social-icon.instagram-alt {
  border-color: #e4405f;
  color: #e4405f;
}

/* YouTube */
.social-icon.youtube {
  border-color: #ff0000;
  color: #ff0000;
}

/* Website */
.social-icon.website {
  border-color: #28a745;
  color: #28a745;
}

/* Company Profile */
.social-icon.company-profile {
  border-color: #007bff;
  color: #007bff;
}

/* Catalog Haji */
.social-icon.catalog-haji {
  border-color: #6f42c1;
  color: #6f42c1;
}

/* Catalog Umroh */
.social-icon.catalog-umroh {
  border-color: #fd7e14;
  color: #fd7e14;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* TikTok Hover */
.social-icon.tiktok:hover {
  box-shadow: 0 8px 16px rgba(255, 0, 80, 0.2);
}

/* Instagram Hover */
.social-icon.instagram:hover,
.social-icon.instagram-alt:hover {
  box-shadow: 0 8px 16px rgba(228, 64, 95, 0.2);
}

/* YouTube Hover */
.social-icon.youtube:hover {
  box-shadow: 0 8px 16px rgba(255, 0, 0, 0.2);
}

/* Website Hover */
.social-icon.website:hover {
  box-shadow: 0 8px 16px rgba(40, 167, 69, 0.2);
}

/* Company Profile Hover */
.social-icon.company-profile:hover {
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.2);
}

/* Catalog Haji Hover */
.social-icon.catalog-haji:hover {
  box-shadow: 0 8px 16px rgba(111, 66, 193, 0.2);
}

/* Catalog Umroh Hover */
.social-icon.catalog-umroh:hover {
  border-color: #fd7e14;
  color: #fd7e14;
  box-shadow: 0 8px 16px rgba(253, 126, 20, 0.2);
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* TikTok */
.social-icon.tiktok:hover {
  border-color: #ff0050;
  color: #ff0050;
  box-shadow: 0 8px 16px rgba(255, 0, 80, 0.2);
}

/* Instagram */
.social-icon.instagram:hover,
.social-icon.instagram-alt:hover {
  border-color: #e4405f;
  color: #e4405f;
  box-shadow: 0 8px 16px rgba(228, 64, 95, 0.2);
}

/* YouTube */
.social-icon.youtube:hover {
  border-color: #ff0000;
  color: #ff0000;
  box-shadow: 0 8px 16px rgba(255, 0, 0, 0.2);
}

/* Website */
.social-icon.website:hover {
  border-color: #28a745;
  color: #28a745;
  box-shadow: 0 8px 16px rgba(40, 167, 69, 0.2);
}

/* Company Profile */
.social-icon.company-profile:hover {
  border-color: #007bff;
  color: #007bff;
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.2);
}

/* Catalog Haji */
.social-icon.catalog-haji:hover {
  border-color: #6f42c1;
  color: #6f42c1;
  box-shadow: 0 8px 16px rgba(111, 66, 193, 0.2);
}

/* Catalog Umroh */
.social-icon.catalog-umroh:hover {
  border-color: #fd7e14;
  color: #fd7e14;
  box-shadow: 0 8px 16px rgba(253, 126, 20, 0.2);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .social-media-icons {
    text-align: center;
    margin-top: 30px;
  }

  .social-icons-container {
    justify-content: center;
    gap: 12px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-content {
    text-align: center;
  }
}

/* Footer */
footer {
  background: #1a1a1a !important;
}

.social-links a {
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    padding: 1rem 0;
  }

  .hero-content h1 {
    font-size: 2.5rem !important;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(255, 107, 53, 0.4) 100%);
  }
}

@media (max-width: 576px) {
  .hero-content {
    text-align: center;
  }

  .hero-features {
    align-items: center;
  }

  .feature-item {
    justify-content: center;
  }

  .display-4 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Badge styling */
.badge {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

/* Button hover effects */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Enhanced Highlight Card */
.highlight-card-enhanced {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.highlight-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.highlight-content {
  padding-right: 30px;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.highlight-badge i {
  margin-right: 8px;
  font-size: 0.8rem;
}

.highlight-content h3 {
  color: #2c3e50;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight-content .lead {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Visual Circle */
.highlight-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-circle {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.inner-circle {
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inner-circle i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 10px;
}

.inner-circle span {
  font-weight: 700;
  color: #2c3e50;
  font-size: 1.2rem;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.floating-icon i {
  color: #ff6b35;
  font-size: 1.2rem;
}

.floating-icon:nth-child(1) {
  animation-delay: 0s;
}
.floating-icon:nth-child(2) {
  animation-delay: 0.5s;
}
.floating-icon:nth-child(3) {
  animation-delay: 1s;
}
.floating-icon:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Enhanced Minimal Features */
.minimal-feature-enhanced {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f8f9fa;
  position: relative;
  overflow: hidden;
}

.minimal-feature-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.minimal-feature-enhanced:hover::before {
  transform: scaleX(1);
}

.minimal-feature-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.minimal-icon-enhanced {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}

.minimal-icon-enhanced::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.minimal-icon-enhanced i {
  font-size: 2rem;
  color: white;
}

.minimal-feature-enhanced h5 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.3rem;
}

.minimal-feature-enhanced p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 25px;
  margin-top: 20px;
}

.feature-highlight i {
  color: #28a745;
  margin-right: 8px;
  font-size: 0.9rem;
}

.feature-highlight span {
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Video Thumbnail Styles */
.video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 107, 53, 0.9);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  background: rgba(255, 107, 53, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.tiktok-play {
  background: rgba(0, 0, 0, 0.8);
}

.tiktok-play:hover {
  background: rgba(0, 0, 0, 0.9);
}

.testimonial-card .btn,
.education-card .btn {
  margin-top: 10px;
}

/* Media Section */
.media-featured {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.media-featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.media-featured-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media-featured:hover .media-img {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-featured:hover .media-overlay {
  opacity: 1;
}

.media-overlay i {
  color: white;
  font-size: 3rem;
}

.media-featured-content {
  padding: 30px;
}

.media-source {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #ff6b35;
  font-weight: 600;
}

.media-source i {
  font-size: 1.2rem;
}

.media-featured-content h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.media-featured-content .lead {
  color: #7f8c8d;
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.media-mini {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.media-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.media-mini-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.media-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media-mini:hover .media-thumb {
  transform: scale(1.05);
}

.mini-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-mini:hover .mini-media-overlay {
  opacity: 1;
}

.mini-media-overlay i {
  color: white;
  font-size: 2rem;
}

.media-mini-content {
  padding: 20px;
}

.media-source-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #ff6b35;
  font-weight: 600;
  font-size: 0.9rem;
}

.media-source-mini i {
  font-size: 1rem;
}

.media-mini-content h6 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1rem;
}

.media-mini-content p {
  color: #7f8c8d;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Legacy media card styles for backward compatibility */
.media-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.media-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.media-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.media-content h5 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.media-content p {
  color: #7f8c8d;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Responsive Design for Enhanced Components */
@media (max-width: 768px) {
  .highlight-card-enhanced {
    padding: 30px 20px;
  }

  .highlight-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .highlight-content h3 {
    font-size: 1.8rem;
  }

  .stats-row {
    gap: 20px;
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .visual-circle {
    width: 200px;
    height: 200px;
  }

  .inner-circle {
    width: 140px;
    height: 140px;
  }

  .inner-circle i {
    font-size: 2rem;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
  }

  .floating-icon i {
    font-size: 1rem;
  }
}
