﻿:root {
  --primary-color: #002868;
  /* Navy Blue */
  --secondary-color: #BF0A30;
  /* Red */
  --text-color: #333333;
  --light-bg: #F5F7FA;
  --white: #FFFFFF;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

.btn-primary:hover {
  background-color: #a00828;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(191, 10, 48, 0.3);
}

.btn-secondary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-secondary:hover {
  background-color: #001f52;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 40, 104, 0.3);
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--secondary-color);
  color: var(--white);
  text-align: center;
  padding: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-image: url('assets/hero-bg-new.jpg');
  /* Placeholder path */
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: var(--white);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 40, 104, 0.9), rgba(0, 40, 104, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 800px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.3;
}

.highlight-danger {
  color: #FFD700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text .subheadline {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Mobile Anchor Button */
.btn-mobile-anchor {
  display: none;
  margin-bottom: 30px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
}

.hero-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: var(--text-color);
}

.capture-form h3 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 40, 104, 0.1);
}


/* Phone Input Wrapper */
.phone-input-wrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.country-selector {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--white);
  cursor: pointer;
  min-width: 120px;
  transition: var(--transition);
}

.country-selector:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 40, 104, 0.1);
}

.phone-input-wrapper input {
  flex: 1;
  min-width: 0;
}

.urgency-tag {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
  background-color: #fff3cd;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ffeeba;
}

/* Social Proof Section */
.social-proof-section {
  padding: 60px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.stats-highlight h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.big-number {
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight: 900;
  display: inline-block;
}

.urgency-text p {
  font-size: 1.2rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

/* Identification Section */
.identification-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.checklist-container {
  max-width: 800px;
  margin: 0 auto 50px;
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.checklist {
  list-style: none;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 1.2rem;
}

.section-footer {
  text-align: center;
}

.section-footer p {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Agenda Section */
.agenda-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.agenda-section .section-title {
  color: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  color: var(--text-color);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
}

.card-header {
  background-color: var(--secondary-color);
  color: var(--white);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Instagram Proof Section */
.instagram-proof-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}

.instagram-media {
  min-width: 326px !important;
}

/* Bio Section */
.bio-section {
  padding: 80px 0;
  background-color: var(--white);
}

.bio-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.bio-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bio-content .section-title {
  text-align: left;
  margin-bottom: 10px;
}

.bio-content h3 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 30px;
}

.bio-text p {
  margin-bottom: 20px;
  text-align: justify;
}

footer {
  background-color: #1a1a1a;
  color: #888;
  text-align: center;
  padding: 40px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .btn-mobile-anchor {
    display: inline-block;
  }

  .event-info {
    align-items: stretch;
    border-left: none;
    background: none;
    padding: 0;
  }

  .bio-container {
    grid-template-columns: 1fr;
  }

  .bio-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .bio-content .section-title,
  .bio-content h3 {
    text-align: center;
  }
}


.checklist {
  list-style: none;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 1.2rem;
}

.section-footer {
  text-align: center;
}

.section-footer p {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Agenda Section */
.agenda-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.agenda-section .section-title {
  color: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  color: var(--text-color);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
}

.card-header {
  background-color: var(--secondary-color);
  color: var(--white);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Instagram Proof Section */
.instagram-proof-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}

.instagram-media {
  min-width: 326px !important;
}

/* Bio Section */
.bio-section {
  padding: 80px 0;
  background-color: var(--white);
}

.bio-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.bio-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bio-content .section-title {
  text-align: left;
  margin-bottom: 10px;
}

.bio-content h3 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 30px;
}

.bio-text p {
  margin-bottom: 20px;
  text-align: justify;
}

footer {
  background-color: #1a1a1a;
  color: #888;
  text-align: center;
  padding: 40px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .btn-mobile-anchor {
    display: inline-block;
  }

  .event-info {
    align-items: stretch;
    border-left: none;
    background: none;
    padding: 0;
  }

  .bio-container {
    grid-template-columns: 1fr;
  }

  .bio-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .bio-content .section-title,
  .bio-content h3 {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Thank You Page Specifics - Premium Redesign */
.thank-you-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #002868;
  /* Fallback */
  background-image: linear-gradient(rgba(0, 40, 104, 0.9), rgba(0, 40, 104, 0.8)), url('assets/hero-bg-new.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px;
}

.thank-you-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  width: 100%;
  text-align: center;
  position: relative;
  /* Glass effect optional or solid white as requested */
}

.thank-you-header {
  margin-bottom: 40px;
}

.thank-you-header h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.thank-you-header .subheadline {
  font-size: 1.2rem;
  color: #555;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.step-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  transition: var(--transition);
}

.step-highlight {
  background-color: rgba(37, 211, 102, 0.05);
  border-color: rgba(37, 211, 102, 0.2);
}

.step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.step-content h3 {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.step-explanation {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  line-height: 1.5;
}

/* WhatsApp Button with Pulse */
.btn-whatsapp {
  display: inline-block;
  background-color: #25D366;
  color: var(--white);
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.signature-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.signature-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.signature-text {
  text-align: left;
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .thank-you-card {
    padding: 25px;
  }

  .thank-you-header h1 {
    font-size: 1.8rem;
  }

  .step-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-icon {
    margin-bottom: 10px;
  }

  .signature-block {
    flex-direction: column;
    text-align: center;
  }

  .signature-text {
    text-align: center;
  }
}