/* Theme: Ocimum Estates Premium Stylesheet - Poppins Font Edition */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy-dark: #103957;
  --navy-medium: #103957;
  --navy-light: #183754;
  --teal-accent: #01b8c6;
  --teal-hover: #009aa6;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy-dark);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: var(--transition);
}

/* Containers */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

/* Header Section */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  background: linear-gradient(to bottom, rgba(7, 22, 37, 0.6) 0%, rgba(7, 22, 37, 0) 100%);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Button CTA Styles */
.btn-cta {
  background-color: var(--teal-accent);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0, 184, 198, 0.3);
}

.btn-cta:hover {
  background-color: var(--teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 184, 198, 0.4);
}

.btn-cta:active {
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background: url('assets/ocimum/hero_web.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 0;
  }

  .brand-logo {
    height: 40px;
  }

  .btn-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
  }

  .hero-section {
    background-image: url('assets/ocimum/hero_mob.jpg');
  }

  .hero-content {
    transform: translateY(-80px);
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 32px;
  }

  .btn-cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}



.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  transform: translateY(-120px);
}

.hero-logo {
  max-width: clamp(120px, 15vw, 180px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  margin-top: -60px;
  margin-bottom: 24px;
}

/* Intro Section */
.intro-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: var(--white);
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.intro-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-header-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.intro-logo {
  height: clamp(95px, 6vw, 95px);
  width: auto;
  object-fit: contain;
}

.intro-divider {
  width: 2px;
  height: clamp(38px, 4.5vw, 48px);
  background-color: #cbd5e1;
  /* slate-300 divider */
}

.intro-brand-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--navy-dark);
}

.intro-brand-title span {
  display: block;
}

.intro-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.intro-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 0;
}

/* Flat Perspective Card Showcase - Slider Mode (5 visible cards) */
.card-showcase {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 360px;
  perspective: 1200px;
}

.showcase-card {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s, z-index 0.8s;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Flat Card Showcase Slider Position Classes (5 cards) */
.showcase-card.card-center {
  z-index: 10;
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 1;
  pointer-events: auto;
}

.showcase-card.card-left-1 {
  z-index: 7;
  transform: translate(-108%, -50%) scale(0.95);
  opacity: 0.9;
  pointer-events: auto;
}

.showcase-card.card-left-2 {
  z-index: 5;
  transform: translate(-160%, -50%) scale(0.75);
  opacity: 0.6;
  pointer-events: auto;
}

.showcase-card.card-right-1 {
  z-index: 7;
  transform: translate(8%, -50%) scale(0.95);
  opacity: 0.9;
  pointer-events: auto;
}

.showcase-card.card-right-2 {
  z-index: 5;
  transform: translate(60%, -50%) scale(0.75);
  opacity: 0.6;
  pointer-events: auto;
}

.showcase-card.card-hidden {
  z-index: 1;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  pointer-events: none;
}

/* Card Showcase Auto-slider Hover Interactive pause styling */
.card-showcase:hover .showcase-card.card-center {
  transform: translate(-50%, -53%) scale(1.35);
  box-shadow: 0 30px 60px rgba(7, 22, 37, 0.25);
}

.card-showcase:hover .showcase-card.card-left-1 {
  transform: translate(-115%, -50%) scale(0.98);
}

.card-showcase:hover .showcase-card.card-left-2 {
  transform: translate(-172%, -50%) scale(0.78);
}

.card-showcase:hover .showcase-card.card-right-1 {
  transform: translate(15%, -50%) scale(0.98);
}

.card-showcase:hover .showcase-card.card-right-2 {
  transform: translate(72%, -50%) scale(0.78);
}

/* Section: Iconic Presence */
.iconic-presence-section {
  background-color: var(--navy-medium);
  padding: clamp(60px, 10vw, 20px) 0;
  color: var(--white);
  overflow: hidden;
}

.iconic-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .iconic-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .iconic-left {
    order: 2;
  }

  .iconic-right {
    order: 1;
  }
}

.iconic-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.iconic-left h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.iconic-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.9;
}

.iconic-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Decorative Teal Circle */
.circle-text-wrap {
  width: min(440px, 85vw);
  height: min(440px, 85vw);
  background-color: var(--teal-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 184, 198, 0.25);
  animation: circleFloat 6s ease-in-out infinite;
}

.circle-text {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

@keyframes circleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Banner Image Section */
.banner-image-section {
  position: relative;
  height: 520px;
  background: url('assets/ocimum/img1.jpg') center/cover no-repeat;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

/* Section: Tailor-made Requirements */
.tailor-made-section {
  padding: clamp(60px, 10vw, 20px) 0;
  background-color: var(--white);
}

.tailor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .tailor-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.tailor-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-dark-wrap {
  width: min(440px, 85vw);
  height: min(440px, 85vw);
  background-color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px;
  box-shadow: 0 25px 50px rgba(7, 22, 37, 0.2);
  animation: circleFloat 6s ease-in-out infinite;
  animation-delay: 1s;
}

.circle-dark-text {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.tailor-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.6;
}

.bullet-dot {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  flex-shrink: 0;
  margin-top: 0;
  user-select: none;
}

.bullet-icon {
  width: 24px;
  height: 24px;
  color: var(--teal-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Section: World-class Amenities */
.amenities-section {
  background: linear-gradient(rgba(7, 22, 37, 0.15),
      rgba(7, 22, 37, 0.20)), url('assets/ocimum/bg.jpg') center/cover no-repeat;
  padding: clamp(80px, 10vw, 120px) 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.amenities-section-title {
  color: var(--white);
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.3;
  margin-bottom: 28px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

.amenities-section-title span {
  display: block;
}

.amenities-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .amenities-content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.amenities-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}



.amenities-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.amenities-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.amenities-bullet-item .bullet-dot {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  flex-shrink: 0;
  margin-top: 0;
  user-select: none;
}

.amenities-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

@media (max-width: 576px) {
  .amenities-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .amenity-card-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .amenity-card-title {
    font-size: 0.85rem;
  }
}

.amenity-card {
  background-color: transparent;
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-5px);
}

.amenity-card-icon-wrapper {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.amenity-card-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.amenity-card:hover .amenity-card-icon-wrapper {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 184, 198, 0.35);
}

.amenity-card-title {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Section: At the Centre of Opportunity */
.map-section {
  padding: 0;
  background-color: var(--white);
  overflow: hidden;
}

.map-section-header {
  background-color: #ebf0f4;
  /* light blue-grey banner */
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(7, 22, 37, 0.08);
}

.map-section-title {
  color: var(--navy-dark);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}

.map-image-wrapper {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.map-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section: Prime Location Ribbon */
.prime-location-ribbon {
  background-color: var(--teal-accent);
  padding: clamp(40px, 8vw, 20px) 0;
  color: var(--white);
}

.ribbon-section-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 45px;
}

.ribbon-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 768px) {
  .ribbon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 30px 10px;
  }
}

.ribbon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.ribbon-icon-circle {
  width: 90px;
  height: 90px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.ribbon-icon-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.ribbon-item:hover .ribbon-icon-circle {
  transform: scale(1.08);
}

.ribbon-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-top: 5px;
}

.ribbon-value {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 400;
  color: var(--white);
}

/* Section: Site Plan */
.site-plan-section {
  padding: 0;
  background-color: var(--white);
  overflow: hidden;
}

.site-plan-image-wrapper {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.site-plan-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.site-plan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(16px, 3vw, 36px) clamp(20px, 4vw, 50px);
  pointer-events: none;
}

.site-plan-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 12px 20px;
  border-radius: 4px;
}

.compass-icon {
  width: 36px;
  height: 36px;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.site-plan-tag {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dark);
  line-height: 1.3;
}

.site-plan-logo {
  background-color: rgba(255, 255, 255, 0.92);
  padding: 10px 16px;
  border-radius: 4px;
}

.site-plan-logo img {
  height: clamp(32px, 4vw, 48px);
  width: auto;
  display: block;
}

/* Footer Section */
.site-footer {
  background-color: #122738;
  color: var(--white);
  padding: 40px 24px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-cols {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--teal-accent);
  border-bottom-color: var(--teal-accent);
}

@media (max-width: 768px) {
  .footer-cols {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.footer-company-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.footer-company-address,
.footer-company-license {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.footer-copyright-bar {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 14px 24px;
}

.footer-copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
  text-align: center;
}

/* Modal Popup Callback Form */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 22, 37, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop[hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
  /* absolute override for hidden attr */
}

.callback-modal {
  background-color: #1a3a52;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: modalScaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--white);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.modal-close:hover {
  background-color: var(--teal-accent);
  color: var(--navy-dark);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.field-group input {
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.field-group input:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--teal-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 184, 198, 0.15);
}

.field-group input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.field-error {
  font-size: 0.8rem;
  color: #f87171;
  min-height: 18px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-row input {
  accent-color: var(--teal-accent);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.submit-button {
  background-color: var(--teal-accent);
  color: var(--white);
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 184, 198, 0.2);
}

.submit-button:hover:not(:disabled) {
  background-color: var(--teal-hover);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.callback-success-message {
  display: none;
  background-color: rgba(0, 184, 198, 0.1);
  border: 1px solid rgba(0, 184, 198, 0.2);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: var(--teal-accent);
  font-size: 0.95rem;
  margin-top: 10px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.callback-form.is-submitted .field-group,
.callback-form.is-submitted .checkbox-row,
.callback-form.is-submitted .submit-button {
  display: none;
}

.callback-form.is-submitted .callback-success-message {
  display: block;
}

/* Scroll Reveal animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   Juventus Page Specific Styles
   ========================================== */
.site-header-juventus {
  position: relative;
  background: #103957;
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}

.juventus-main {
  background-color: var(--white);
  padding: 60px 0;
  min-height: 50vh;
}

.juventus-container {
  max-width: 900px;
  padding: 0 15px;
}

.juventus-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 30px;
  line-height: 1.2;
}

.juventus-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  font-weight: 300;
  text-align: justify;
}

.juventus-intro-p {
  margin-bottom: 24px;
}

.juventus-details-p {
  margin-bottom: 40px;
}

.juventus-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  font-size: 1.05rem;
}

.juventus-link:hover {
  color: var(--teal-accent);
  border-bottom-color: var(--teal-accent);
}

.juventus-subtitle {
    color: var(--navy-dark);
    font-size: clamp(1.5rem, 3.0vw, 2.0rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-bottom: 15px;
    text-align: left;
}

.juventus-pdf-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.juventus-pdf-icon {
  flex-shrink: 0;
  margin-top: -2px;
}

.juventus-divider {
  border: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin-top: 25px;
  margin-bottom: 35px;
}

/* Juventus Page Tab Buttons Container */
.juventus-tabs-headers {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 16px;
}

/* Individual Tab Button */
.juventus-tab-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-light);
  background: var(--bg-light);
  border: 1px solid rgba(16, 57, 87, 0.15);
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.juventus-tab-btn svg {
  transition: transform 0.3s;
}

.juventus-tab-btn:hover {
  background: var(--white);
  border-color: var(--teal-accent);
  color: var(--teal-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 184, 198, 0.15);
}

/* Active Tab Button */
.juventus-tab-btn.active {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(16, 57, 87, 0.25);
}

.juventus-tab-btn.active:hover {
  background: var(--navy-light);
  color: var(--white);
  border-color: var(--navy-light);
}

/* Content Panes */
.juventus-tab-pane {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  animation: tabFadeIn 0.4s ease;
  display: block;
}

/* Hide pane when hidden attribute is present */
.juventus-tab-pane[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .juventus-tabs-headers {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: none;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }

  .juventus-tabs-headers::-webkit-scrollbar {
    display: none;
  }

  .juventus-tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}