/*
 * offer-video.css
 * Styles for /offer-video landing page
 * Extends main.css — uses the same CSS variables & vendor libs
 */

/* ──────────────────────────────────────────────────────────
   Page-level overrides
────────────────────────────────────────────────────────── */
.offer-video-page .header {
   /* solid header — no transparent effect on this page */
   --background-color: #ffffff;
   --nav-color: #161C2D;
}

/* Prevent hero blobs from bleeding into header */
.offer-video-page {
   overflow-x: hidden;
}

/* Shared reusable atoms */
.ov-section-eyebrow {
   display: inline-block;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--accent-color);
   margin-bottom: 10px;
}

.ov-badge-fire {
   display: inline-block;
   background: linear-gradient(90deg, #6A11CB, #2575FC);
   color: #fff;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   padding: 5px 16px;
   border-radius: 20px;
   margin-bottom: 18px;
}

.ov-btn-primary {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: linear-gradient(90deg, #6A11CB, #2575FC);
   color: #fff;
   font-weight: 700;
   font-size: 15px;
   padding: 13px 28px;
   border-radius: 50px;
   text-decoration: none;
   transition: opacity 0.2s, transform 0.2s;
}

.ov-btn-primary:hover {
   opacity: 0.9;
   transform: translateY(-2px);
   color: #fff;
}

.ov-btn-lg {
   font-size: 16px;
   padding: 15px 34px;
}

.ov-btn-outline {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   border: 2px solid rgba(255,255,255,0.6);
   color: #fff;
   font-weight: 600;
   font-size: 14px;
   padding: 11px 24px;
   border-radius: 50px;
   text-decoration: none;
   transition: border-color 0.2s, background 0.2s;
}

.ov-btn-outline:hover {
   border-color: #fff;
   background: rgba(255,255,255,0.12);
   color: #fff;
}

.ov-btn-ghost {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   border: 2px solid rgba(106,17,203,0.3);
   color: #6A11CB;
   font-weight: 600;
   font-size: 14px;
   padding: 11px 24px;
   border-radius: 50px;
   text-decoration: none;
   transition: border-color 0.2s, background 0.2s, color 0.2s;
   background: #fff;
}

.ov-btn-ghost:hover {
   border-color: #6A11CB;
   background: #6A11CB;
   color: #fff;
}

/* ──────────────────────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────────────────────── */
.ov-hero {
   position: relative;
   background: linear-gradient(135deg, #0b1120 0%, #161C2D 50%, #1a1040 100%);
   padding: 100px 0 80px;
   overflow: hidden;
   color: #fff;
}

/* Background blobs */
.ov-hero-blob {
   position: absolute;
   border-radius: 50%;
   filter: blur(80px);
   opacity: 0.18;
   pointer-events: none;
}

.ov-hero-blob-1 {
   width: 500px;
   height: 500px;
   background: #6A11CB;
   top: -180px;
   right: -100px;
}

.ov-hero-blob-2 {
   width: 380px;
   height: 380px;
   background: #2575FC;
   bottom: -120px;
   left: -80px;
}

.ov-hero-eyebrow {
   margin-bottom: 16px;
}

.ov-hero-headline {
   font-size: clamp(32px, 4.5vw, 54px);
   font-weight: 800;
   line-height: 1.15;
   color: #fff;
   margin-bottom: 18px;
   letter-spacing: -0.02em;
}

.ov-headline-highlight {
   background: linear-gradient(90deg, #a78bfa, #60a5fa);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.ov-price-inline {
   color: #fde68a;
   font-weight: 900;
}

.ov-hero-sub {
   color: rgba(255,255,255,0.78);
   font-size: 17px;
   line-height: 1.65;
   margin-bottom: 28px;
}

.ov-hero-sub strong {
   color: #fff;
}

/* Stats */
.ov-hero-stats {
   display: flex;
   align-items: center;
   gap: 0;
   margin-bottom: 32px;
   background: rgba(255,255,255,0.06);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 14px;
   padding: 16px 20px;
   width: fit-content;
}

.ov-stat {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 0 20px;
}

.ov-stat-num {
   font-size: 22px;
   font-weight: 800;
   color: #fde68a;
   line-height: 1;
}

.ov-stat-label {
   font-size: 11px;
   color: rgba(255,255,255,0.6);
   margin-top: 4px;
   text-align: center;
   white-space: nowrap;
}

.ov-stat-divider {
   width: 1px;
   height: 36px;
   background: rgba(255,255,255,0.15);
   flex-shrink: 0;
}

/* Hero actions */
.ov-hero-actions {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   align-items: center;
}

/* Hero Card (right column) */
.ov-hero-card {
   background: #fff;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.ov-hero-card-top {
   background: linear-gradient(135deg, #6A11CB, #2575FC);
   padding: 28px 28px 24px;
   text-align: center;
   position: relative;
}

.ov-card-badge {
   display: inline-block;
   background: rgba(255,255,255,0.2);
   color: #fff;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   padding: 4px 14px;
   border-radius: 20px;
   margin-bottom: 14px;
}

.ov-card-price {
   display: flex;
   align-items: baseline;
   justify-content: center;
   gap: 2px;
   margin-bottom: 4px;
}

.ov-card-currency {
   font-size: 26px;
   font-weight: 700;
   color: #fff;
}

.ov-card-amount {
   font-size: 68px;
   font-weight: 900;
   color: #fff;
   line-height: 1;
   letter-spacing: -3px;
}

.ov-card-gst {
   font-size: 13px;
   color: rgba(255,255,255,0.8);
   align-self: flex-end;
   padding-bottom: 8px;
   margin-left: 4px;
}

.ov-card-subtitle {
   color: rgba(255,255,255,0.82);
   font-size: 13px;
   margin: 0;
}

/* Feature list inside card */
.ov-card-features {
   list-style: none;
   padding: 20px 24px;
   margin: 0;
   border-bottom: 1px solid #f1f5f9;
}

.ov-card-features li {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 14px;
   color: #374151;
   padding: 7px 0;
   border-bottom: 1px solid #f8fafc;
}

.ov-card-features li:last-child {
   border-bottom: none;
}

.ov-card-features li i {
   color: #6A11CB;
   font-size: 15px;
   flex-shrink: 0;
}

.ov-card-cta {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   background: linear-gradient(90deg, #6A11CB, #2575FC);
   color: #fff;
   font-weight: 700;
   font-size: 14.5px;
   padding: 16px 24px;
   text-decoration: none;
   transition: opacity 0.2s;
}

.ov-card-cta:hover {
   opacity: 0.9;
   color: #fff;
}

/* ──────────────────────────────────────────────────────────
   ABOUT / FEATURES SECTION
────────────────────────────────────────────────────────── */
.ov-about {
   padding: 80px 0;
}

.ov-section-header {
   margin-bottom: 10px;
}

.ov-section-title {
   font-size: clamp(24px, 3vw, 36px);
   font-weight: 700;
   color: #161C2D;
   margin-bottom: 14px;
   line-height: 1.25;
}

.ov-section-desc {
   color: #64748b;
   font-size: 16px;
   max-width: 700px;
   margin: 0 auto;
   line-height: 1.7;
}

/* Feature cards */
.ov-feature-card {
   background: #fff;
   border-radius: 16px;
   padding: 28px 24px;
   height: 100%;
   box-shadow: 0 4px 24px rgba(0,0,0,0.06);
   border: 1px solid #f1f5f9;
   transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ov-feature-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 12px 36px rgba(106,17,203,0.12);
}

.ov-feature-icon {
   width: 52px;
   height: 52px;
   border-radius: 14px;
   background: color-mix(in srgb, var(--icon-color) 12%, transparent);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 16px;
}

.ov-feature-icon i {
   font-size: 22px;
   color: var(--icon-color);
}

.ov-feature-card h4 {
   font-size: 17px;
   font-weight: 700;
   color: #161C2D;
   margin-bottom: 10px;
}

.ov-feature-card p {
   font-size: 14px;
   color: #64748b;
   line-height: 1.65;
   margin: 0;
}

/* What you get */
.ov-what-you-get {
   margin-top: 60px;
   background: linear-gradient(135deg, #6A11CB 0%, #2575FC 100%);
   border-radius: 20px;
   padding: 48px 40px;
   color: #fff;
}

.ov-wg-title {
   font-size: clamp(22px, 2.8vw, 30px);
   font-weight: 700;
   color: #fff;
   margin-bottom: 12px;
}

.ov-wg-desc {
   color: rgba(255,255,255,0.8);
   font-size: 15px;
   line-height: 1.65;
   margin: 0;
}

.ov-wg-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
}

.ov-wg-item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   background: rgba(255,255,255,0.1);
   border-radius: 12px;
   padding: 14px 16px;
}

.ov-wg-item i {
   font-size: 18px;
   color: #a7f3d0;
   flex-shrink: 0;
   margin-top: 2px;
}

.ov-wg-item div {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.ov-wg-item strong {
   font-size: 13.5px;
   color: #fff;
   font-weight: 700;
}

.ov-wg-item span {
   font-size: 12px;
   color: rgba(255,255,255,0.7);
}

/* ──────────────────────────────────────────────────────────
   BOOKING SECTION
────────────────────────────────────────────────────────── */
.ov-booking {
   background-color: #0f172a;
   padding: 90px 0;
}

.ov-booking-title {
   font-size: clamp(26px, 3vw, 38px);
   font-weight: 800;
   color: #fff;
   margin-bottom: 12px;
   line-height: 1.2;
}

.ov-booking-subtitle {
   color: rgba(255,255,255,0.72);
   font-size: 15px;
   line-height: 1.65;
   margin-bottom: 28px;
}

.ov-booking-subtitle strong {
   color: #fff;
}

/* Pricing card */
.ov-pricing-card {
   background: rgba(255,255,255,0.06);
   border: 1px solid rgba(255,255,255,0.12);
   border-radius: 16px;
   padding: 22px 24px;
   margin-bottom: 28px;
}

.ov-pricing-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: rgba(255,255,255,0.75);
   font-size: 14.5px;
   padding: 8px 0;
}

.ov-pricing-val {
   font-weight: 600;
   color: rgba(255,255,255,0.9);
}

.ov-pricing-divider {
   height: 1px;
   background: rgba(255,255,255,0.12);
   margin: 6px 0;
}

.ov-pricing-total {
   font-size: 18px;
   font-weight: 800;
   color: #fde68a !important;
   padding-top: 12px;
}

.ov-pricing-total span {
   color: #fde68a;
}

.ov-pricing-note {
   font-size: 11.5px;
   color: rgba(255,255,255,0.45);
   margin: 10px 0 0;
}

/* Process steps */
.ov-steps {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.ov-step {
   display: flex;
   align-items: flex-start;
   gap: 14px;
}

.ov-step-num {
   width: 36px;
   height: 36px;
   min-width: 36px;
   background: linear-gradient(135deg, #6A11CB, #2575FC);
   color: #fff;
   font-weight: 800;
   font-size: 15px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.ov-step div {
   padding-top: 6px;
}

.ov-step strong {
   display: block;
   font-size: 14px;
   color: #fff;
   margin-bottom: 2px;
}

.ov-step p {
   font-size: 13px;
   color: rgba(255,255,255,0.6);
   margin: 0;
}

/* Form card */
.ov-form-card {
   background: #fff;
   border-radius: 20px;
   padding: 36px 32px;
   box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.ov-form-title {
   font-size: 20px;
   font-weight: 800;
   color: #161C2D;
   margin-bottom: 4px;
}

.ov-form-subtitle {
   font-size: 13.5px;
   color: #64748b;
   margin-bottom: 22px;
}

/* Inputs */
.ov-input {
   border: 1.5px solid #e2e8f0;
   border-radius: 10px;
   padding: 11px 14px;
   font-size: 14.5px;
   color: #1e293b;
   transition: border-color 0.2s, box-shadow 0.2s;
}

.ov-input:focus {
   border-color: #6A11CB;
   box-shadow: 0 0 0 3px rgba(106,17,203,0.1);
   outline: none;
}

.ov-input-invalid {
   border-color: #ef4444 !important;
   box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

/* Phone group */
.ov-phone-group {
   display: flex;
   align-items: stretch;
}

.ov-phone-prefix {
   display: flex;
   align-items: center;
   padding: 0 12px;
   background: #f8fafc;
   border: 1.5px solid #e2e8f0;
   border-right: none;
   border-radius: 10px 0 0 10px;
   font-size: 14px;
   font-weight: 600;
   color: #64748b;
   white-space: nowrap;
}

.ov-phone-group .ov-input {
   border-radius: 0 10px 10px 0;
   flex: 1;
}

/* Pricing mini-summary inside form */
.ov-form-price-summary {
   background: #f8f7ff;
   border: 1px solid #ede9fe;
   border-radius: 10px;
   padding: 14px 16px;
   margin-bottom: 18px;
   font-size: 14px;
   color: #374151;
   display: flex;
   flex-direction: column;
   gap: 6px;
}

.ov-total-line {
   font-size: 15px;
   border-top: 1px solid #ede9fe;
   padding-top: 8px;
   margin-top: 2px;
   color: #6A11CB;
}

/* Form error */
.ov-form-error {
   background: #fef2f2;
   border: 1px solid #fecaca;
   border-radius: 10px;
   padding: 12px 16px;
   font-size: 14px;
   color: #dc2626;
   margin-bottom: 16px;
}

/* Submit button */
.ov-submit-btn {
   background: linear-gradient(90deg, #25D366, #128C7E);
   color: #fff;
   font-weight: 700;
   font-size: 15px;
   border: none;
   border-radius: 12px;
   padding: 14px 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   cursor: pointer;
   transition: opacity 0.2s, transform 0.2s;
}

.ov-submit-btn:hover:not(:disabled) {
   opacity: 0.9;
   transform: translateY(-2px);
}

.ov-submit-btn:disabled {
   opacity: 0.7;
   cursor: not-allowed;
}

/* Spinner */
.ov-spinner {
   width: 18px;
   height: 18px;
   border: 2.5px solid rgba(255,255,255,0.4);
   border-top-color: #fff;
   border-radius: 50%;
   animation: ov-spin 0.75s linear infinite;
   display: inline-block;
}

@keyframes ov-spin {
   to { transform: rotate(360deg); }
}

/* ─── Success state ─── */
.ov-success-state {
   text-align: center;
   padding: 10px 0 4px;
}

.ov-success-icon {
   font-size: 52px;
   margin-bottom: 14px;
   animation: ov-pop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes ov-pop {
   from { transform: scale(0.5); opacity: 0; }
   to   { transform: scale(1);   opacity: 1; }
}

.ov-success-state h4 {
   font-size: 22px;
   font-weight: 800;
   color: #059652;
   margin-bottom: 8px;
}

.ov-success-state p {
   color: #374151;
   font-size: 14.5px;
   margin-bottom: 4px;
}

.ov-success-sub {
   color: #64748b;
   font-size: 13px;
}

.ov-success-summary {
   background: #f8f7ff;
   border: 1px solid #ede9fe;
   border-radius: 12px;
   padding: 14px 18px;
   margin: 18px 0;
}

.ov-success-summary-row {
   display: flex;
   justify-content: space-between;
   font-size: 14px;
   color: #374151;
   padding: 5px 0;
}

.ov-summary-total {
   border-top: 1px solid #ede9fe;
   padding-top: 10px;
   margin-top: 4px;
   font-size: 15px;
   color: #6A11CB;
   font-weight: 700;
}

.ov-wa-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: linear-gradient(90deg, #25D366, #128C7E);
   color: #fff;
   font-weight: 700;
   font-size: 14.5px;
   padding: 12px 26px;
   border-radius: 50px;
   text-decoration: none;
   transition: opacity 0.2s;
   margin-top: 4px;
}

.ov-wa-btn:hover { opacity: 0.9; color: #fff; }

/* ──────────────────────────────────────────────────────────
   FINAL CTA SECTION
────────────────────────────────────────────────────────── */
.ov-cta {
   padding: 90px 0;
}

.ov-cta-box {
   position: relative;
   text-align: center;
   background: linear-gradient(135deg, #6A11CB 0%, #2575FC 100%);
   border-radius: 24px;
   padding: 70px 40px;
   overflow: hidden;
   color: #fff;
}

/* Decorative circles */
.ov-cta-circle {
   position: absolute;
   border-radius: 50%;
   border: 1px solid rgba(255,255,255,0.12);
   pointer-events: none;
}

.ov-cta-circle-1 {
   width: 380px;
   height: 380px;
   top: -140px;
   right: -80px;
}

.ov-cta-circle-2 {
   width: 260px;
   height: 260px;
   bottom: -100px;
   left: -60px;
}

.ov-cta-title {
   font-size: clamp(26px, 4vw, 44px);
   font-weight: 800;
   color: #fff;
   margin: 14px 0 16px;
   line-height: 1.2;
   position: relative;
}

.ov-cta-price {
   color: #fde68a;
}

.ov-cta-desc {
   color: rgba(255,255,255,0.8);
   font-size: 16px;
   max-width: 580px;
   margin: 0 auto 30px;
   line-height: 1.65;
   position: relative;
}

.ov-cta-actions {
   display: flex;
   gap: 14px;
   justify-content: center;
   flex-wrap: wrap;
   position: relative;
}

.ov-cta-actions .ov-btn-primary {
   background: #fff;
   color: #6A11CB;
}

.ov-cta-actions .ov-btn-primary:hover {
   background: #f3e8ff;
   color: #4c0d99;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
   .ov-hero { padding: 80px 0 60px; }
   .ov-hero-stats { width: 100%; justify-content: space-evenly; }
   .ov-wg-grid { grid-template-columns: 1fr; }
   .ov-what-you-get { padding: 36px 28px; }
   .ov-form-card { padding: 28px 22px; }
}

@media (max-width: 767px) {
   .ov-hero-stats { flex-wrap: wrap; gap: 0; }
   .ov-stat { flex: 1 0 calc(33% - 1px); padding: 10px 8px; }
   .ov-stat-divider { height: 30px; }
   .ov-hero-actions { flex-direction: column; align-items: flex-start; }
   .ov-hero-actions .ov-btn-primary,
   .ov-hero-actions .ov-btn-outline { width: 100%; justify-content: center; }
   .ov-cta-box { padding: 52px 22px; }
   .ov-cta-actions { flex-direction: column; align-items: center; }
   .ov-cta-actions a { width: 100%; justify-content: center; }
   .ov-booking { padding: 60px 0; }
}

@media (max-width: 576px) {
   .ov-form-card { padding: 24px 18px; border-radius: 16px; }
   .ov-hero-card-top { padding: 22px 18px 18px; }
   .ov-card-amount { font-size: 52px; }
   .ov-hero-headline { font-size: 28px; }
   .ov-stat-num { font-size: 18px; }
   .ov-stat-label { font-size: 10px; }
}

/* ──────────────────────────────────────────────────────────
   Payment Success Modal
────────────────────────────────────────────────────────── */
.ov-modal-content {
   border-radius: 20px;
   border: none;
   overflow: hidden;
   box-shadow: 0 24px 60px rgba(106,17,203,0.2);
}

.ov-modal-topbar {
   height: 5px;
   background: linear-gradient(90deg, #6A11CB, #2575FC);
}

.ov-modal-icon {
   font-size: 52px;
   margin-bottom: 10px;
   animation: ov-pop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.ov-modal-title {
   font-size: 22px;
   font-weight: 800;
   color: #059652;
   margin-bottom: 6px;
}

.ov-modal-subtitle {
   font-size: 14px;
   color: #64748b;
   margin-bottom: 20px;
}

.ov-modal-summary {
   background: #f8f7ff;
   border: 1px solid #ede9fe;
   border-radius: 14px;
   padding: 16px 18px;
   margin-bottom: 4px;
   text-align: left;
}

.ov-modal-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 13.5px;
   color: #374151;
   padding: 6px 0;
   border-bottom: 1px solid #f1f5f9;
}

.ov-modal-row:last-child { border-bottom: none; }

.ov-modal-row span:first-child {
   color: #64748b;
   font-size: 12.5px;
}

.ov-modal-total {
   padding-top: 10px;
   margin-top: 4px;
   font-size: 15px !important;
   color: #6A11CB !important;
   font-weight: 700;
   border-top: 1px solid #ede9fe;
   border-bottom: none !important;
}

.ov-modal-note {
   font-size: 12px;
   color: #94a3b8;
   margin: 0;
}

/* Override submit button for standard form */
.ov-submit-btn {
   background: linear-gradient(90deg, #6A11CB, #2575FC);
   color: #fff;
   font-weight: 700;
   font-size: 15px;
   border: none;
   border-radius: 12px;
   padding: 14px 24px;
   display: block;
   text-align: center;
   cursor: pointer;
   transition: opacity 0.2s, transform 0.2s;
}

.ov-submit-btn:hover {
   opacity: 0.9;
   transform: translateY(-2px);
}