/* GLOBAL STYLING */
:root {
    --primary: #FDE2E4;
    --secondary: #F8F1EB;
    --accent: #dba2e7;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
    --text-on-primary: #2B2B2B;
    --text-on-dark: #212529;
    --text-on-about: #514848;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: white;
}

@media (max-width: 768px) {
    body {
        padding-left: 10px;
        padding-right: 20px;
    }
}



.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 20px;
    color: var(--primary);
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    border-bottom: 4px solid var(--secondary);
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark);
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-on-primary);
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-accent {
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
}

.btn-accent:hover {
    background: var(--success);
    color: var(--dark);
}

.text-center {
    text-align: center;
    display: grid;
}

/* Header Styles */
header {
    background: var(--primary);
    color: var(--text-on-primary);
    padding: 10px 0;
    /* position: sticky; */
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-on-primary);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: var(--text-on-primary);
    font-size: 3.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-on-primary);
    position: relative;
    z-index: 2;
}

.hero-content {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 15px;
    max-width: 900px;
    margin: 50px auto 0;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.hero-content h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hero-content ul {
    text-align: left;
    margin-left: 20px;
    margin-top: 20px;
    color: var(--text-on-primary);
    list-style-type: none;
}

.hero-content li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.hero-content li:before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits {
    background: var(--light);
    position: relative;
}

.benefits:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 18, 139, 0.1), transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 5px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 106, 231, 0.15);
}

.benefit-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--text-on-dark);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-on-dark);
}



/* Call Process Section */
.call-process {
    background: white;
    position: relative;
}

.call-process:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03), transparent);
}

.process-steps {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    background: rgba(0, 106, 231, 0.05);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--text-on-dark);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    background: var(--accent);
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-on-primary);
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, rgba(0, 18, 139, 0.03), rgba(0, 106, 231, 0.03));
    padding: 20px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 50px auto;
    background: #ddd;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1.8rem;
    flex-direction: column;
}


/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-on-primary);
    padding: 30px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0px;
    margin-top: 60px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Calendar Section Styling */
.calendar-section {
    padding: 3rem 1rem;
    background-color: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.calendar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.calendar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calendar-info {
    flex: 1;
}

.calendar-info h3 {
    font-size: 1.5rem;
    color: #1933f4;
    margin-bottom: 1rem;
}

.calendar-info p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefits-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}

.benefits-box h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefits-box ul {
    list-style-type: none;
    padding-left: 0;
}

.benefits-box li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #34495e;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-box li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
}

.calendar-embed {
    flex: 1;
}

.cal-embed-container {
    width: 100%;
    min-height: 600px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    overflow: hidden;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .calendar-content {
        flex-direction: row;
    }

    .calendar-info {
        max-width: 400px;
    }

    .calendar-header h2 {
        font-size: 2.5rem;
    }
}

/* CTA Section */
.cta-section {
    Background: linear-gradient(135deg, #FDE2E4, #F8F1EB);
    color: var(--text-on-primary);
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: rgb(252, 210, 217);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box h2 {
    color: #ffff;
    border-bottom: none;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-box p {
    color: #ffff;
    opacity: 0.9;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}





/* Responsive Adjustments */
@media (max-width: 1024px) {
    section {
        padding: 70px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 0px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-image {
        flex: 1;
        min-width: 300px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-content {
        padding: 20px;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .benefit-item,
    .testimonial-card {
        padding: 30px 20px;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .cta-box {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .hero-content li {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .calendar-container {
        padding: 30px 20px;
    }

}


/* ABOUT STYLING STARTS HERE */

.about-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-on-about);
    padding: 80px 0;
    text-align: center;
}

.about-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 30px;
    max-width: 900px;
    margin: 30px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.bio-title {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    padding: 0 15px;
}

.faq-item {
    background: var(--primary);
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-left: 6px solid var(--secondary);
}

.faq-question {
    font-weight: 700;
    color: var(--text-on-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-answer {
    margin-top: 10px;
    color: var(--text-on-about);
    line-height: 1.6;
    display: none;
}

.bio-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 4px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0;
    }

    .about-card {
        padding: 18px;
    }
}



/* Payment page stars here */

/* Base styles from previous thank-you page */
.pricing-box {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.plogo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    color: #27ae60;
    margin: 1rem 0;
}

.strike {
    text-decoration: line-through;
    color: #ff0000;
    font-size: 1.5rem;
}

.guarantee {
    color: #27ae60;
    font-weight: bold;
}

/* BEFORE : AFTER SECTION */

/* Before After Section */
.before-after {
    padding: 60px 0;
    background: var(--light);
}

.before-after-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.before-after-grid .before-box,
.before-after-grid .after-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.before-box h3 {
    color: #d9534f;
    /* red tone for before */
    margin-bottom: 15px;
}

.after-box h3 {
    color: var(--text-on-primary);
    /* green tone for after */
    margin-bottom: 15px;
}

.before-after-grid ul {
    list-style: disc inside;
    line-height: 1.6;
    color: var(--dark);
    padding-left: 0;
}

.before-after-closer {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-on-primary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .before-after-grid {
        gap: 20px;
    }
}



/* COUNTDOWN AND STICKY FOOTER STARTS HERE */

.countdown-banner {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--text-on-primary);
    padding: 12px 0;
    text-align: center;
 position: sticky;
    top: 0;
    z-index: 101;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.countdown-text {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.countdown-timer {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.countdown-timer span {
    display: inline-block;
    min-width: 30px;
}

/* Sticky Footer */

.sticky-footer {
    background: linear-gradient(135deg, var(--secondary), var(--secondary));
    color: var(--text-on-primary);
    padding: 15px;
    position: sticky;
    bottom: 0;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.sticky-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #e20000;
    font-size: 1.2rem;
}

.discounted-price {
    color: #000000;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-note {
    font-size: 1rem;
    opacity: 0.9;
    color: red;
}

.footer-right {
    flex-shrink: 0;
}

.btn-footer {
    display: inline-block;
    background: var(--accent);
    color: var(--text-on-primary);
    padding: 15px 400px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.btn-footer:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sticky-footer .container {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-footer {

        padding: 15px 25px;
    }

    .footer-right {
        width: 100%;
    }

    .btn-footer {
        width: 100%;
        text-align: center;
    }
}

/* Breaking the Silence Section */
.breaking-silence {
  position: relative;
  overflow: hidden;
}

.breaking-silence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.main-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-heading span {
  font-size: 2.2rem;
  display: block;
  margin-top: 10px;
}

.subheading {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  height: 3px;
  background: white;
  width: 100px;
  margin: 0 auto 40px;
  opacity: 0.7;
}

.author p {
  margin: 5px 0;
  opacity: 0.9;
}

.author-name {
  font-weight: 600;
  font-size: 1.5rem;
}

.author-role {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* GRID LAYOUT */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.info-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.info-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.info-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.highlight {
  color: #FFD700;
}

/* CTA BUTTON */
.btn {
  background: #FF6B6B;
  color: white;
  padding: 18px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
  background: #FF5252;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .main-heading span {
    font-size: 1.8rem;
  }

  .subheading {
    font-size: 1.1rem;
  }

  .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
}