/* ===============================================
   DEWATA SPAREPART HP & TOOLS
   Modern Light Design CSS
   =============================================== */

/* CSS Variables */
:root {
  overflow-x: hidden;
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #f97316;
  --accent-color: #06b6d4;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 50%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0f2fe 100%);
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

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

/* Navbar */
.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  color: white;
}

.brand-icon i {
  font-size: 1.25rem;
}

/* Brand Logo Image */
.brand-logo {
  height: 87px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.brand-text {
  color: var(--text-primary);
}

.brand-highlight {
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(37, 99, 235, 0.1);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../img/hero-phone.png') center/cover no-repeat;
  padding-top: 80px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 77%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  font-size: 1rem;
  color: #3b82f6; /* Bright accent color */
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.highlight-text {
  color: #60a5fa; /* Lighter blue for dark background */
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  transition: var(--transition-normal);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
  background: #1d4ed8;
  color: white;
}

.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-normal);
}

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

.btn-outline-light-custom i {
  font-size: 1.25rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Fonts */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
     font-size: 1.25rem;
  }
}

/* Section Common Styles */
section {
  position: relative;
  padding: 100px 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-badge i {
  font-size: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: var(--bg-white);
}

.about-image-wrapper {
  position: relative;
  padding: 2rem;
}

.about-image-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  color: white;
  box-shadow: var(--shadow-lg);
}

.exp-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

.about-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Category Section */
.category-section {
  background: var(--bg-section);
}

.category-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
  background: var(--gradient-primary);
}

.category-card:hover h3,
.category-card:hover p {
  color: white;
}

.category-card:hover .category-icon {
  background: white;
}

.category-card:hover .category-icon i {
  color: var(--primary-color);
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
}

.category-icon i {
  font-size: 2.5rem;
  color: white;
}

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Mesin Service HP Section */
.mesin-service-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #e0f2fe 100%);
  padding: 100px 0;
}

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

.mesin-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(37, 99, 235, 0.08);
  transition: var(--transition-normal);
  overflow: hidden;
}

.mesin-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
}

.mesin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
  border-color: var(--primary-color);
  background: linear-gradient(to right, white, #f0f9ff);
}

.mesin-card:hover::before {
  opacity: 1;
  width: 6px;
}

.mesin-card.featured {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

.mesin-card.featured::before {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  opacity: 1;
}

.mesin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.mesin-card:hover .mesin-icon {
  background: var(--gradient-primary);
}

.mesin-card:hover .mesin-icon i {
  color: white;
}

.mesin-card.featured .mesin-icon {
  background: rgba(245, 158, 11, 0.2);
}

.mesin-card.featured .mesin-icon i {
  color: #d97706;
}

.mesin-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.mesin-content {
  flex: 1;
}

.mesin-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.mesin-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.mesin-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
}

.mesin-badge.pro {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

/* Brands Section */
.brands-section {
  background: var(--bg-white);
  padding: 80px 0;
}

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

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.brand-item:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.brand-item:hover span {
  color: white;
}

.brand-item span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

/* Phone Brands Section */
.phone-brands-section {
  background: var(--bg-section);
  padding: 80px 0;
}

.phone-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.phone-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.phone-brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.phone-brand-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

/* .phone-brand-card span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
} */

.brand-logo-img {
  width: 80%;
  object-fit: contain;
  transition: var(--transition-normal);
}

.phone-brand-card:hover .brand-logo-img {
  transform: scale(1.1);
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  transform: scale(0.5);
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 50%;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Mobile Responsive Gallery (Slider) */
@media (max-width: 991px) {
  .gallery-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-right: -12px; /* Offset container padding */
    margin-left: -12px;
    padding-left: 12px; /* Restore visual padding */
    padding-right: 12px;
    scrollbar-width: none; /* Firefox */
  }

  .gallery-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }

  .gallery-item {
    flex: 0 0 100%; /* Slider card width */
    scroll-snap-align: center;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
  }

  .gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .indicator {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    opacity: 0.5;
    transition: var(--transition-fast);
  }

  .indicator.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 10px;
    opacity: 1;
  }
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  padding: 80px 0;
}

.cta-wrapper {
  text-align: center;
  color: white;
}

.cta-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

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

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

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--primary-color);
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--primary-dark);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

.btn-cta-secondary i {
  font-size: 1.25rem;
}

/* Contact Section */
.contact-section {
  background: var(--bg-white);
}

.contact-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
  background: var(--gradient-primary);
}

.contact-card:hover h3,
.contact-card:hover p,
.contact-card:hover a {
  color: white;
}

.contact-card:hover .contact-icon {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card:hover .contact-icon.whatsapp i {
  color: #25d366;
}

.contact-card:hover .contact-icon.email i {
  color: var(--primary-color);
}

.contact-card:hover .contact-icon.location i {
  color: #ea4335;
}

.contact-card:hover a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}

.contact-icon.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-icon.email {
  background: var(--gradient-primary);
}

.contact-icon.location {
  background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

.contact-icon i {
  font-size: 1.75rem;
  color: white;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.contact-card a:hover {
  text-decoration: underline;
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Footer */
.footer-section {
  background: var(--text-primary);
  color: white;
  padding: 80px 0 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .brand-icon {
  background: var(--gradient-primary);
}

.footer-logo .brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.footer-logo .brand-highlight {
  color: var(--primary-light);
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-contact i {
  font-size: 1rem;
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: var(--transition-normal);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

  .hero-image-container {
    margin-top: 3rem;
  }

  .floating-card.card-1 {
    left: 10px;
  }

  .floating-card.card-2 {
    right: 10px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

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

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .about-image-wrapper {
    margin-bottom: 2rem;
  }

  .about-image-main img {
    height: 300px;
  }

  .cta-wrapper h2 {
    font-size: 1.75rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .back-to-top {
    bottom: 85px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1rem;
  }

  .brand-icon {
    width: 35px;
    height: 35px;
  }

  .hero-title {
    font-size: 1.75rem;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  margin: auto;
  display: block;
  width: auto;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  animation-name: zoomIn;
  animation-duration: 0.4s;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--primary-light);
  transform: scale(1.1);
}

@media only screen and (max-width: 700px) {
  .lightbox-content {
    max-width: 95%;
  }
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 35px;
  }
}
