/* =========================
   GLOBAL RESET
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

/* =========================
   BRAND HEADER
========================= */
.brand-header {
    background: #4b1f0e;
    padding: 30px 15px;
}

.brand-name {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.brand-s {
    color: #f4d27a;
    font-weight: 800;
}

.brand-tagline {
    font-size: 14px;
    margin-top: 8px;
    color: #f1e3c6;
}

/* =========================
   FEATURED PRODUCT
========================= */
.featured-product {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.featured-product.empty {
    background: #faf6ef;
    color: #666;
}

.empty-message h2 {
    color: #4b1f0e;
    margin-bottom: 10px;
}

.featured-details {
    text-align: left;
}

.featured-details h2 {
    color: #4b1f0e;
    margin-bottom: 10px;
}

.featured-details p {
    margin-bottom: 8px;
    font-size: 15px;
}

/* =========================
   PRICE DISPLAY
========================= */
.final-price {
    margin-top: 15px;
    font-size: 18px;
    color: #4b1f0e;
}

/* =========================
   SELECT OPTIONS
========================= */
select {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* =========================
   CTA BUTTON
========================= */
.cta-box {
    margin-top: 25px;
    text-align: center;
}

.cta-main-btn {
    background: linear-gradient(135deg, #8a3a16, #4b1f0e);
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.cta-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.cta-subtext {
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}

/* =========================
   STONE CATALOG GRID
========================= */
.stone-catalog {
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.stone-item {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stone-item:hover {
    transform: translateY(-5px);
}

.stone-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.stone-item h3 {
    color: #4b1f0e;
    margin-bottom: 6px;
    font-size: 16px;
}

.stone-item p {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

.stone-item button {
    background: transparent;
    border: 1px solid #4b1f0e;
    color: #4b1f0e;
    padding: 7px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.stone-item button:hover {
    background: #4b1f0e;
    color: #fff;
}

/* =========================
   TRUST & SECTIONS
========================= */
.trust-section {
    max-width: 900px;
    margin: 50px auto;
    background: #faf6ef;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.trust-section h2 {
    text-align: center;
    color: #4b1f0e;
    margin-bottom: 15px;
}

.trust-section ul {
    padding-left: 20px;
}

.trust-section li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #4b1f0e;
    color: #f3e9d3;
    padding: 30px 15px;
    margin-top: 60px;
}

.site-footer strong {
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-note {
    font-size: 12px;
    margin-top: 10px;
    color: #e6d4b2;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 22px;
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
    .featured-details {
        text-align: center;
    }

    .brand-name {
        font-size: 28px;
    }
}

/* =========================
   HOW IT WORKS – FIXED
========================= */
.how-it-works {
    background: #faf6ef;
    padding: 50px 20px;
    margin-top: 50px;
}

.how-it-works h2 {
    color: #4b1f0e;
    font-size: 26px;
    margin-bottom: 30px;
}

.steps {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.step {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #4b1f0e;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    margin: 0 auto 15px;
    font-weight: bold;
}

.step h4 {
    color: #4b1f0e;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #555;
}

/* =========================
   COMMITMENT SECTION
========================= */
.assurance-section {
    background: #ffffff;
    padding: 45px 20px;
}

.assurance-section h2 {
    color: #4b1f0e;
    margin-bottom: 20px;
}

.assurance-list {
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.assurance-item {
    background: #faf6ef;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

/* =========================
   DISCLAIMER – READABLE
========================= */
.disclaimer-section {
    background: #faf6ef;
    padding: 30px 20px;
}

.disclaimer-section p {
    max-width: 900px;
    margin: auto;
    font-size: 13px;
    color: #444;
    line-height: 1.7;
}

/* =========================
   FOOTER – CLEAN
========================= */
.site-footer {
    background: #4b1f0e;
    color: #f3e9d3;
    padding: 30px 20px;
    text-align: center;
}

.site-footer p {
    margin: 8px 0;
}

.site-footer strong {
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-note {
    font-size: 12px;
    color: #e6d4b2;
}

/* =========================
   PROCEED TO ORDER – BUTTON
========================= */
.order-btn {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #6b2d12, #4b1f0e);
    color: #fff !important;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* Hover effect */
.order-btn:hover {
    background: linear-gradient(135deg, #7a3416, #5a2412);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

/* Active (click) feel */
.order-btn:active {
    transform: scale(0.98);
}

/* Optional icon spacing */
.order-btn::after {
    content: " ➜";
    font-weight: bold;
}


{
    margin: 0;
    background-color: #071c27;
    color: #ffffff;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

button {
    font-family: inherit;
}
/* =========================
   WHY WHALESTOWER SECTION
   ========================= */

.trust-section {
    background: #fff8ee;   /* warm cream */
    padding: 60px 40px;
    border-radius: 18px;
    max-width: 1100px;
    margin: 80px auto;
    color: #2b1a0f;        /* DARK readable text */
}

/* Heading */
.trust-section h2 {
    text-align: center;
    color: #3b1d0f;
    font-size: 28px;
    margin-bottom: 30px;
}

/* Ensure WHALESTOWER inside heading is connected */
.trust-section .brand-anim {
    letter-spacing: 0;
}

/* Bullet list */
.trust-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each point */
.trust-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: #2b1a0f;  /* FORCE visibility */
}

/* Checkmark color */
.trust-section li::before {
    content: "✔ ";
    color: #d4af37; /* gold */
    font-weight: bold;
}



.featured-product {
  height: auto;
  overflow: visible;
}

.featured-details p {
  color: #333;
}

.long-desc {
  margin: 10px 0 20px;
  line-height: 1.6;
}



/* ===============================
   NAVAGRAHA 3D SHOWCASE (PREMIUM)
================================ */

.stone-showcase {
  position: relative;
  height: 100vh;
  background: radial-gradient(circle at top, #0b2a3a 0%, #071c27 60%);
  overflow: hidden;
  perspective: 1400px;
  isolation: isolate;
}

.showcase-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ===== CENTRAL VEL MURUGA ===== */
.showcase-center {
  position: absolute;
  inset: auto 0 0 0;
  margin: auto;
  height: clamp(820px, 99vh, 1000px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
  pointer-events: none;
}

.showcase-center {
  padding-bottom: 10vh;
  transform: translateY(16vh);
}


.showcase-center img {
  height: clamp(600px, 60vh, 900px);
  width: auto;
  max-width: 90vw;
  object-fit: contain;
}

/* ===== ROTATION SYSTEM ===== */
.rotation-ring {
  position: absolute;
  top: 2%;
  left: 50%;
  transform-style: preserve-3d;
  animation: navagrahaSpin 28s linear infinite;
  z-index: 2;
}

/* ===== INDIVIDUAL GOD PANELS ===== */
.showcase-item {
  position: absolute;
  inset: 0;
  transform:
    rotateY(calc((var(--position) - 1) * (360deg / var(--quantity))))
    translateZ(clamp(220px, 32vw, 520px));
}

.showcase-item img {
  width: clamp(90px, 14vw, 180px);
  height: clamp(120px, 20vw, 260px);
  object-fit: contain;
  will-change: transform;
}

/* ===== ANIMATION ===== */
@keyframes navagrahaSpin {
  from {
    transform: translateX(-50%) rotateY(0deg);
  }
  to {
    transform: translateX(-50%) rotateY(360deg);
  }
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {

  .stone-showcase {
    height: 70vh;
  }

  .showcase-center {
    padding-bottom: -1vh;
    transform: translateY(23vh);
  }

  .rotation-ring {
    top: 1%;
  }

  .showcase-item {
    transform:
      rotateY(calc((var(--position) - 1) * (360deg / var(--quantity))))
      translateZ(200px);
  }

  .showcase-item img {
    width: 95px;
    height: 200px;
  }
}




.showcase-center::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(212,175,55,0.45) 0%,
    rgba(212,175,55,0.25) 35%,
    rgba(212,175,55,0.12) 55%,
    transparent 70%
  );
  border-radius: 50%;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}



@media (max-width: 768px) {
  .showcase-center::before {
    width: 270px;
    height: 270px;
    top: 27%;
  }
}

.contact-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0b1d26, #000);
  text-align: center;
}

.contact-title {
  font-size: 28px;
  color: #f5c542;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 15px;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  background: #111;
  border: 1px solid #f5c542;
  border-radius: 14px;
  padding: 20px;
  width: 260px;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(245, 197, 66, 0.3);
}

.contact-card .icon {
  font-size: 28px;
}

.contact-card h4 {
  margin: 0;
  font-size: 18px;
  color: #f5c542;
}

.contact-card p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #ccc;
}

/* Specific accents */
.contact-card.whatsapp {
  border-color: #25d366;
}

.contact-card.email {
  border-color: #f5c542;
}

.contact-card.location {
  border-color: #4aa3ff;
}

/* Mobile friendly */
@media (max-width: 600px) {
  .contact-card {
    width: 100%;
    max-width: 320px;
  }
}
