/* IKATAN BANGKA BERAGAM - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #18226D;
  --accent-teal: #0FB3A6;
  --white: #FFFFFF;
  --light-beige: #F6EFE4;
  --text-dark: #111827;
  --yellow-accent: #F9C70C;
  --text-light: #6B7280;
  --bg-light: #F9FAFB;
  --border-light: #E5E7EB;
  --gradient-primary: linear-gradient(135deg, #18226D 0%, #0FB3A6 100%);
  --gradient-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header Styles */
.navbar-custom {
  background: var(--gradient-primary) !important;
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: var(--white) !important;
  font-weight: 600;
  text-decoration: none;
  z-index: 1001;
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: static;
  transform: none;
  background: none;
  height: auto;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: row;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-block;
  width: auto;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-teal) !important;
}

.hotline-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.hotline-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: var(--transition);
}

.hotline-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hotline-btn:hover::before {
  left: 100%;
}

.secondary-bar {
  background-color: var(--primary-blue);
  padding: 8px 0;
  text-align: center;
}

.secondary-bar .btn {
  background-color: var(--accent-teal);
  color: var(--white);
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Banner Styles */
.banner-section {
  margin: 0;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.carousel-custom {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

/* Replace Bootstrap carousel visuals with custom slider visuals */
.custom-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 49vw; /* 21:9 */
  max-height: 600px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}
.custom-slider .slides { display:flex; height:100%; transition: transform .5s ease; will-change: transform; }
.custom-slider .slide { min-width:100%; }
.custom-slider .slide img { width:100%; height:auto; display:block; }
.custom-slider .nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(0,0,0,.18); color:#fff; border:0; width:44px; height:44px; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:2; }
.custom-slider .nav:hover { background: rgba(0,0,0,.28); }
.custom-slider .nav.prev{ left:12px; }
.custom-slider .nav.next{ right:12px; }
/* Dots removed by request */

.carousel-overlay {
  display: none; /* Hide all overlay content */
}

.carousel-overlay .logo-large {
  width: 80px;
  height: 80px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.carousel-overlay .logo-large:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.carousel-overlay .logo-large .main-text {
  font-size: 20px;
  line-height: 1;
}

.carousel-overlay .logo-large .sub-text {
  font-size: 10px;
  line-height: 1;
}

.carousel-overlay h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-overlay p {
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  margin: 0 5px;
}

.carousel-indicators button.active {
  background-color: var(--white);
}

/* Hero Section */
.hero-section {
  margin: 3rem 0;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Unified Buttons Section */
.unified-buttons-section {
  margin-top: 3rem;
  padding: 2rem 0;
  background: var(--gradient-light);
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
}

.unified-buttons-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="button-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23button-grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Action Buttons Grid */
.action-buttons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.action-image-btn {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  transition: var(--transition);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.action-image-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.action-image-btn img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius);
  max-width: 100%;
}

.action-text-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  gap: 1.5rem;
  margin: 0 auto 2rem auto;
  position: relative;
  z-index: 1;
}
.action-text-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.12s cubic-bezier(.29,1.01,1,-0.68), box-shadow 0.2s;
  padding: 0 8px;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.action-text-card:hover {
  transform: translateY(-7px) scale(1.045);
  box-shadow: var(--shadow-lg);
}
.action-text-card .card-title {
  color: #fff;
  font-size: 1.28rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.13;
  word-break: break-word;
  margin-bottom: 6px;
}
.action-text-card.tiktok { background: #55acee; }
.action-text-card.iuran { background: #f35d7c; }
.action-text-card.download { background: #ff9800; }
.action-text-card.agenda { background: #7c59ff; }

@media (max-width: 991px) {
  .action-text-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
  }
  .action-text-card { height: 160px; border-radius: 20px; font-size: 1.08rem; }
  .action-text-card .card-title { font-size: 1rem; }
}

/* Icons inside action text cards */
.action-logo {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 8px auto 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.store-badge-small {
  display: block;
  height: 36px;
  margin: 10px auto 0 auto;
  border-radius: 6px;
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
}


/* News Section */
.news-section {
  margin: 4rem 0;
}

/* Desktop News Grid - 3 columns */
@media (min-width: 992px) {
  .news-section .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .news-section .col-lg-4 {
    width: auto;
    margin-bottom: 0;
    padding: 0;
  }
}

/* Tablet News Grid - 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
  .news-section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .news-section .col-lg-4,
  .news-section .col-md-6 {
    width: auto;
    margin-bottom: 0;
    padding: 0;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 3rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-teal);
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 1.5rem;
  position: relative;
}

.news-card h5 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.news-card .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: var(--transition);
}

.news-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.news-card .btn:hover::before {
  left: 100%;
}

.see-more-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 18px 36px;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.see-more-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: var(--transition);
}

.see-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.see-more-btn:hover::before {
  left: 100%;
}

/* Accordion Section */
.accordion-section {
  margin: 4rem 0;
  padding: 40px 0;
  background: var(--gradient-light);
  border-radius: var(--border-radius-lg);
}

.accordion-custom .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.accordion-custom .accordion-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.accordion-custom .accordion-header button {
  background: var(--white);
  color: var(--primary-blue);
  border: none;
  font-weight: 700;
  font-size: 18px;
  padding: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.accordion-custom .accordion-header button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.accordion-custom .accordion-header button:not(.collapsed) {
  background: var(--gradient-primary);
  color: var(--white);
}

.accordion-custom .accordion-header button:not(.collapsed)::after {
  transform: scaleX(1);
}

.accordion-custom .accordion-header button:focus {
  box-shadow: none;
  border: none;
}

.accordion-custom .accordion-body {
  background-color: var(--white);
  color: var(--text-dark);
  padding: 1.5rem;
  border-top: 1px solid var(--primary-blue);
}

/* Footer */
.footer-custom {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 4px solid var(--accent-teal);
  position: relative;
  overflow: hidden;
}

.footer-custom::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="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
  opacity: 0.3;
}

.footer-custom h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.footer-custom p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Larger contact info */
.footer-custom .contact-info p,
.footer-custom .contact-info a {
  font-size: 18px;
}
.footer-custom .contact-info i { font-size: 18px; }
.footer-custom .contact-info .hotline-link { color: var(--accent-teal); text-decoration: none; }
.footer-custom .contact-info .hotline-link:hover { color: #fff; }

.footer-custom a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.footer-custom a:hover {
  color: var(--white);
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon i {
  position: relative;
  z-index: 1;
}

/* Mobile Responsive Design */
@media (max-width: 767px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop menu */
  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .navbar-menu.active {
    transform: translateX(0);
  }
  
  /* Mobile navigation list */
  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    display: block;
    width: 100%;
  }
  
  /* Mobile logo */
  .logo-img {
    height: 45px;
    max-width: 200px;
  }
  
  /* Mobile hotline button */
  .hotline-btn {
    margin-top: 1rem;
    padding: 12px 24px;
    font-size: 16px;
  }
}
  
  /* Hide carousel controls on mobile */
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  
  .carousel-indicators {
    display: none !important;
  }
  
  /* Make carousel scrollable on mobile */
  .carousel-inner {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .carousel-item {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
  }
  
  .unified-buttons-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }
  
  /* Mobile: 2 columns grid */
  .action-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 100%;
    align-items: center;
    justify-items: center;
  }
  
  .action-image-btn {
    max-width: 100%;
  }
  
  .action-image-btn img {
    height: 100px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .news-card img {
    height: 150px;
  }
  
  /* Mobile grid layout - 2 columns with tight spacing */
  .news-section .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
    margin: 0 !important;
  }
  
  .news-section .col-lg-4,
  .news-section .col-md-6,
  .news-section .col-sm-6 {
    width: auto !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
  
  .news-card-body {
    padding: 0.75rem;
  }
  
  .news-card h5 {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
  
  .news-card p {
    font-size: 12px;
    margin-bottom: 0.75rem;
    -webkit-line-clamp: 2;
  }
  
  .news-card .btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .carousel-item {
    height: 42.86vw; /* Maintain 21:9 ratio on mobile */
    max-height: 300px;
  }
  
  .hero-image {
    height: auto;
    max-height: 60vh;
  }

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .carousel-overlay h1 {
    font-size: 1.5rem;
  }
  
  .carousel-overlay .logo-large {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }
  
  .carousel-overlay .logo-large .main-text {
    font-size: 16px;
  }
  
  .carousel-overlay .logo-large .sub-text {
    font-size: 8px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .accordion-custom .accordion-header button {
    font-size: 16px;
    padding: 1rem;
  }
}

/* Mobile App Showcase Section */
.app-showcase-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-content {
  padding-right: 2rem;
}

.app-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.app-description {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-teal);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border-left-color: var(--primary-blue);
}

.feature-item i {
  font-size: 1.4rem;
  color: var(--accent-teal);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-content strong {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.3;
}

.feature-content small {
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.2;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-download-btn {
  transition: transform 0.3s ease;
}

.app-download-btn:hover {
  transform: scale(1.05);
}

.download-badge {
  height: 60px;
  border-radius: 8px;
}

/* App Image Styles */
.app-showcase-section .col-lg-6 img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* Responsive Design for App Showcase */
@media (max-width: 768px) {
  .app-showcase-section {
    margin: 3rem 0;
    padding: 2rem 0;
  }
  
  .app-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .app-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .app-description {
    text-align: center;
    font-size: 1rem;
  }
  
  .app-features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
  
  .feature-content strong {
    font-size: 13px;
  }
  
  .feature-content small {
    font-size: 11px;
  }
  
  .app-buttons {
    justify-content: center;
  }
  
}

@media (max-width: 576px) {
  .app-title {
    font-size: 1.8rem;
  }
  
  .app-screenshot {
    max-width: 85%;
  }
  
  .download-badge {
    height: 50px;
  }
}
