/* Money Magnet - Custom Styles */

/* Color Variables */
:root {
  --primary-blue: #043E61;
  --primary-gold: #CEB369;
  --white: #ffffff;
  --dark: #1a1a1a;
  --light-gray: #f8f9fa;
  --success-green: #28a745;
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* General Body Styles */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

/* ========================================
   CONTACT BAR SECTION
======================================== */
.contact-bar {
  background: linear-gradient(135deg, var(--primary-blue), #065a87);
  color: var(--white);
  padding: 12px 0;
  font-size: 14px;
}

.contact-bar .contact-item a {
  color: var(--white);
  transition: all 0.3s ease;
}

.contact-bar .contact-item a:hover {
  color: var(--primary-gold);
  transform: translateY(-1px);
}

.contact-bar .social-link {
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-bar .social-link:hover {
  background: var(--primary-gold);
  color: var(--primary-blue);
  transform: translateY(-2px) scale(1.1);
}

@media (max-width: 768px) {
  .contact-bar .contact-info {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .contact-bar .social-links {
    justify-content: flex-start !important;
    margin-top: 10px;
  }
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23CEB369;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23043E61;stop-opacity:0.05"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)"/></svg>');
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  padding: 2rem 0;
}

.hero-badge {
  display: inline-block;
}

.badge-text {
  background: linear-gradient(135deg, var(--primary-gold), #d4c373);
  color: var(--primary-blue);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-secondary);
  margin: 1.5rem 0;
}

.title-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.title-sub {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-gold);
  font-weight: 500;
  font-style: italic;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
  margin: 2rem 0;
  line-height: 1.7;
}

.hero-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature-item i {
  color: var(--success-green);
  margin-right: 12px;
  font-size: 1.1rem;
}

.hero-cta {
  margin-top: 3rem;
}

.price-display {
  background: linear-gradient(135deg, var(--primary-blue), #065a87);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(4, 62, 97, 0.3);
}

.price-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.price-amount {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
}

.price-note {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.btn-cta {
  background: linear-gradient(135deg, var(--success-green), #34ce57);
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
  color: white;
}

/* Hero Image */
.hero-image {
  text-align: center;
  padding: 2rem;
}

.product-showcase {
  position: relative;
  display: inline-block;
}

.product-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  animation: float 3s ease-in-out infinite;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  animation: floatElement 4s ease-in-out infinite;
  pointer-events: none;
}

.element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.element-2 { top: 20%; right: 10%; animation-delay: 1s; }
.element-3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.element-4 { bottom: 20%; right: 20%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
  50% { transform: translateY(-15px) scale(1.1); opacity: 1; }
}

@media (max-width: 768px) {
  .title-main { font-size: 2.5rem; }
  .title-sub { font-size: 1.2rem; }
  .hero-description { font-size: 1rem; }
  .product-image { max-width: 300px; }
}

/* ========================================
   PRODUCT SECTION
======================================== */
.product-section {
  background: white;
  padding: 5rem 0;
}

.product-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-detail-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-detail-image:hover {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-gold);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-gold);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
  background: linear-gradient(135deg, var(--primary-blue), #065a87);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.benefit-content h5 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   HOW TO USE SECTION
======================================== */
.how-to-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 5rem 0;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gold);
  color: var(--primary-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  background: linear-gradient(135deg, var(--primary-blue), #065a87);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  font-size: 2rem;
}

.step-card h4 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

.usage-tips {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: 3rem;
}

.usage-tips h5 {
  color: var(--primary-blue);
  font-weight: 600;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.tip-badge {
  background: linear-gradient(135deg, var(--primary-gold), #d4c373);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
  background: white;
  padding: 5rem 0;
}

.about-content .lead {
  font-size: 1.3rem;
  color: var(--primary-blue);
  font-weight: 500;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.5rem;
}

.about-highlight {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-gold);
  margin: 2rem 0;
  position: relative;
}

.about-highlight i {
  color: var(--primary-gold);
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.about-highlight p {
  margin-left: 3rem;
  font-style: italic;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.manifesto {
  background: var(--primary-blue);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.manifesto h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.manifesto p {
  color: white !important;
}

.signature {
  font-family: var(--font-secondary);
  font-style: italic;
  margin-top: 1.5rem !important;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.energy-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate 20s linear infinite;
}

.energy-circle::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: white;
}

.circle-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--primary-blue);
}

.circle-content h3 {
  font-family: var(--font-secondary);
  font-weight: 700;
  margin: 0.5rem 0;
}

.circle-content p {
  color: var(--primary-gold) !important;
  font-weight: 600;
  margin: 0.5rem 0 !important;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), #065a87);
  color: white;
  padding: 5rem 0;
}

.cta-title {
  font-family: var(--font-secondary);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.cta-features .row {
  margin-bottom: 3rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.cta-feature i {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.final-cta {
  text-align: center;
}

.price-highlight {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.special-price {
  font-size: 1.5rem;
  color: var(--primary-gold);
  font-weight: 700;
}

.special-price strong {
  font-size: 2.5rem;
  color: white;
}

.price-highlight small {
  display: block;
  opacity: 0.7;
  text-decoration: line-through;
  margin-top: 0.5rem;
}

.cta-note {
  font-size: 0.95rem;
  opacity: 0.8;
}

.cta-note i {
  color: var(--primary-gold);
  margin-right: 0.5rem;
}

/* ========================================
   FOOTER SECTION
======================================== */
.footer-section {
  background: linear-gradient(135deg, var(--primary-blue), #032d47);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-section h5 {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h5:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-gold);
}

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

.footer-section .footer-links li {
  margin-bottom: 8px;
}

.footer-section .footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section .footer-links li a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
  display: inline-block;
}

.footer-section .footer-contact p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section .footer-socials a {
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.footer-section .footer-socials a:hover {
  background: var(--primary-gold);
  color: var(--primary-blue);
  transform: translateY(-3px) scale(1.1);
}

.footer-section .query-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 8px;
}

.footer-section .query-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section .query-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
  color: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(206, 179, 105, 0.25);
}

.footer-section .query-form .btn {
  background: linear-gradient(135deg, var(--primary-gold), #d4c373);
  border: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--primary-blue);
}

.footer-section .query-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(206, 179, 105, 0.3);
}

.footer-section .footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0 20px;
}

.footer-section .copyright-text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), #d4c373);
  color: var(--primary-blue);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(206, 179, 105, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

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

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(206, 179, 105, 0.4);
}

.scroll-to-top i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 992px) {
  .section-title { font-size: 2rem; }
  .cta-title { font-size: 2.2rem; }
  .energy-circle { width: 250px; height: 250px; }
  .energy-circle::before { width: 230px; height: 230px; }
}

@media (max-width: 768px) {
  .hero-section { min-height: auto; padding: 3rem 0; }
  .section-title { font-size: 1.8rem; }
  .cta-title { font-size: 1.8rem; }
  .benefits-grid { gap: 1rem; }
  .tips-grid { justify-content: center; }
  .energy-circle { width: 200px; height: 200px; }
  .energy-circle::before { width: 180px; height: 180px; }
  .price-display { margin: 1rem 0; }
}

/* ========================================
   SMOOTH SCROLLING
======================================== */
html {
  scroll-behavior: smooth;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   ACCESSIBILITY
======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
*:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .contact-bar,
  .scroll-to-top,
  .footer-section {
    display: none;
  }
}
