.elementor-69 .elementor-element.elementor-element-5dfefa6{--display:flex;}/* Start custom CSS for html, class: .elementor-element-37904ce */:root {
  --primary-color: #d81b60; /* Vibrant Deep Pink */
  --primary-light: #ff5c8d;
  --secondary-color: #f8bbd0; /* Soft Pink */
  --accent-color: #ffd54f; /* Gold for premium feel */
  --text-dark: #2c3e50;
  --text-light: #607d8b;
  --bg-light: #fdfafb;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(216, 27, 96, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
  color: var(--white);
}

/* Navbar */
.navbar {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  display: flex;
  align-items: center;
  gap: 50px;
  min-height: 80vh;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2r;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Trust Section (KKM) */
.trust-section {
  background: var(--white);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-light);
  padding: 15px 30px;
  border-radius: 50px;
  border: 1px solid var(--secondary-color);
}

.trust-badge i {
  color: #4CAF50;
  font-size: 1.5rem;
}

.trust-text h4 {
  font-size: 1.1rem;
  margin: 0;
}
.trust-text p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Gallery / Inventory Photos (CHIP Requirement) */
.gallery {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--white), var(--secondary-color));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 20px 0;
}

.price span {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
}

.package-name {
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Legal Pages Styling */
.legal-content {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.legal-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 15px;
  color: #444;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

/* Footer - CRITICAL FOR CHIP */
.footer {
  background: #111827;
  color: #f3f4f6;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-widget h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.company-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #9ca3af;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image img {
    transform: none;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
}/* End custom CSS */