/*
Theme Name: TinyVision
Theme URI: https://tinyvisions.com
Author: TinyVisions
Author URI: https://tinyvisions.com
Description: A custom lightweight theme for Tiny Visions — fast, modern, and built on brand.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tinyvision
Tags: custom-logo, custom-menu, featured-images, footer-widgets, full-width-template
*/

/* ============================================
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* ---------- Colors ---------- */
  --tv-primary: #033B62;
  --tv-secondary: #00BFFF;
  --tv-secondary-lt: #81DFFF;
  --tv-secondary-acc: #FC713A;

  --tv-accent-1: #FFC0CB;
  --tv-accent-2: #81DFFF;
  --tv-accent-3: #FFA07A;
  --tv-accent-4: #90EE90;

  --tv-white: #ffffff;
  --tv-black: #1a1a1a;
  --tv-gray-50: #f8f9fa;
  --tv-gray-100: #f0f1f3;
  --tv-gray-200: #e1e3e6;
  --tv-gray-300: #c5c8cd;
  --tv-gray-400: #9a9fa7;
  --tv-gray-500: #6c7280;
  --tv-gray-600: #4b5563;
  --tv-gray-700: #374151;

  /* ---------- Typography ---------- */
  --tv-font-heading: 'Baloo Chettan 2', cursive;
  --tv-font-body: 'Raleway', sans-serif;

  --tv-fs-h1: clamp(2.25rem, 5vw, 3.5rem);
  /* 56px */
  --tv-fs-h2: clamp(2rem, 4.5vw, 3rem);
  /* 48px */
  --tv-fs-h3: clamp(1.75rem, 4vw, 2.5rem);
  /* 40px */
  --tv-fs-h4: clamp(1.5rem, 3vw, 2rem);
  /* 32px */
  --tv-fs-h5: clamp(1.25rem, 2.5vw, 1.5rem);
  /* 24px */
  --tv-fs-h6: clamp(1.125rem, 2vw, 1.25rem);
  /* 20px */

  --tv-fs-lg: 1.25rem;
  /* 20px */
  --tv-fs-md: 1.125rem;
  /* 18px */
  --tv-fs-base: 1rem;
  /* 16px */
  --tv-fs-sm: 0.875rem;
  /* 14px */

  /* ---------- Spacing ---------- */
  --tv-space-xs: 0.25rem;
  --tv-space-sm: 0.5rem;
  --tv-space-md: 1rem;
  --tv-space-lg: 1.5rem;
  --tv-space-xl: 2rem;
  --tv-space-2xl: 3rem;
  --tv-space-3xl: 4rem;
  --tv-space-4xl: 6rem;

  /* ---------- Radii ---------- */
  --tv-radius-sm: 4px;
  --tv-radius-md: 8px;
  --tv-radius-lg: 16px;
  --tv-radius-pill: 9999px;
  --tv-radius-round: 50%;

  /* ---------- Shadows ---------- */
  --tv-shadow-sm: 0 1px 3px rgba(3, 59, 98, 0.08);
  --tv-shadow-md: 0 4px 12px rgba(3, 59, 98, 0.1);
  --tv-shadow-lg: 0 8px 30px rgba(3, 59, 98, 0.12);

  /* ---------- Container ---------- */
  --tv-container-max: 1200px;
  --tv-container-pad: 1.5rem;

  /* ---------- Transition ---------- */
  --tv-transition: 0.25s ease;
}

/* ============================================
   1. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--tv-font-body);
  font-size: var(--tv-fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--tv-black);
  background: var(--tv-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:hover,
a:focus {
  color: var(--tv-secondary);
}

ul,
ol {
  list-style: none;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tv-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--tv-primary);
  margin-bottom: 0.5em;
}

h1 {
  font-size: var(--tv-fs-h1);
}

h2 {
  font-size: var(--tv-fs-h2);
}

h3 {
  font-size: var(--tv-fs-h3);
}

h4 {
  font-size: var(--tv-fs-h4);
}

h5 {
  font-size: var(--tv-fs-h5);
}

h6 {
  font-size: var(--tv-fs-h6);
}

p {
  margin-bottom: 1.25em;
}

.text-lg {
  font-size: var(--tv-fs-lg);
}

.text-md {
  font-size: var(--tv-fs-md);
}

.text-base {
  font-size: var(--tv-fs-base);
}

.text-sm {
  font-size: var(--tv-fs-sm);
}

blockquote {
  border-left: 4px solid var(--tv-secondary);
  padding: var(--tv-space-md) var(--tv-space-lg);
  margin: var(--tv-space-xl) 0;
  background: var(--tv-gray-50);
  font-style: italic;
  font-size: var(--tv-fs-md);
  color: var(--tv-gray-600);
  border-radius: 0 var(--tv-radius-md) var(--tv-radius-md) 0;
}

/* ============================================
   3. LAYOUT
   ============================================ */
.tv-container {
  width: 100%;
  max-width: var(--tv-container-max);
  margin: 0 auto;
  padding: 0 var(--tv-container-pad);
}

.tv-section {
  padding: var(--tv-space-4xl) 0;
}

.tv-grid {
  display: grid;
  gap: var(--tv-space-xl);
}

.tv-flex {
  display: flex;
  gap: var(--tv-space-md);
}

/* ============================================
   4. BUTTONS
   ============================================ */
.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--tv-font-body);
  font-weight: 700;
  font-size: var(--tv-fs-base);
  padding: 0.75em 2em;
  border: 2px solid transparent;
  border-radius: var(--tv-radius-pill);
  cursor: pointer;
  transition: all var(--tv-transition);
  text-decoration: none;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .tv-btn {
    padding: 0.75em 1em;
  }
}

.tv-btn:focus-visible {
  outline: 3px solid var(--tv-secondary-lt);
  outline-offset: 2px;
}

/* Primary */
.tv-btn--primary {
  background: var(--tv-primary);
  color: var(--tv-white);
  border-color: var(--tv-primary);
}

.tv-btn--primary:hover {
  background: #04506e;
  border-color: #04506e;
  color: var(--tv-white);
  box-shadow: var(--tv-shadow-md);
  transform: translateY(-1px);
}

.tv-btn--primary:active {
  background: var(--tv-primary);
  border-color: var(--tv-secondary);
  transform: translateY(0);
}

.tv-btn--primary:disabled,
.tv-btn--primary.disabled {
  background: var(--tv-gray-400);
  border-color: var(--tv-gray-400);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Secondary */
.tv-btn--secondary {
  background: var(--tv-secondary);
  color: var(--tv-white);
  border-color: var(--tv-secondary);
}

.tv-btn--secondary:hover {
  background: #00a8e0;
  border-color: #00a8e0;
  color: var(--tv-white);
  box-shadow: var(--tv-shadow-md);
  transform: translateY(-1px);
}

.tv-btn--secondary:active {
  background: var(--tv-secondary);
  border-color: var(--tv-primary);
  transform: translateY(0);
}

/* Outline */
.tv-btn--outline {
  background: transparent;
  color: var(--tv-primary);
  border-color: var(--tv-primary);
}

.tv-btn--outline:hover {
  background: var(--tv-primary);
  color: var(--tv-white);
}

/* White (for colored backgrounds) */
.tv-btn--white {
  background: var(--tv-white);
  color: var(--tv-secondary-acc);
  border-color: var(--tv-white);
}

.tv-btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #e55e2a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* Full width variant */
.tv-btn--full {
  width: 100%;
}

/* Small variant */
.tv-btn--sm {
  font-size: var(--tv-fs-sm);
  padding: 0.5em 1.5em;
}

/* WP button styles */
.wp-block-button__link {
  background: var(--tv-primary);
  color: var(--tv-white);
  border-radius: var(--tv-radius-pill);
  padding: 0.75em 2em;
  font-family: var(--tv-font-body);
  font-weight: 700;
  transition: all var(--tv-transition);
}

.wp-block-button__link:hover {
  background: #04506e;
  color: var(--tv-white);
}

/* ============================================
   5. HEADER
   ============================================ */
.tv-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #02385d;
  /* Solid dark blue */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  transition: box-shadow var(--tv-transition);
}

.tv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--tv-container-pad);
  max-width: var(--tv-container-max);
  margin: 0 auto;
}

.tv-logo-link {
  display: flex;
  align-items: center;
}

.tv-logo-link img {
  height: 60px;
  width: 60px;
  border-radius: var(--tv-radius-round);
}

.tv-header__logo .site-title {
  font-family: var(--tv-font-heading);
  font-size: var(--tv-fs-h5);
  color: var(--tv-white);
  font-weight: 700;
}

/* Desktop Nav */
.tv-nav ul {
  display: flex;
  gap: var(--tv-space-2xl);
  align-items: center;
}

.tv-nav a {
  font-weight: 700;
  font-size: 15px;
  /* Adjusting font size per design */
  color: var(--tv-white);
  text-decoration: none;
  position: relative;
  padding: 0.25em 0;
}

.tv-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: #ff6b35;
  /* Orange underline matching design */
  border-radius: 2px;
  transition: width var(--tv-transition);
}

.tv-nav a:hover::after,
.tv-nav .current-menu-item a::after {
  width: 100%;
}

.tv-nav .current-menu-item a {
  color: var(--tv-white);
}

/* Header CTA */
.tv-header__cta .tv-btn {
  font-size: var(--tv-fs-sm);
  padding: 0.5em 1.5em;
}

/* Mobile Toggle */
.tv-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--tv-space-sm);
  z-index: 1001;
}

.tv-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tv-white);
  margin: 5px 0;
  transition: all var(--tv-transition);
  border-radius: 2px;
}

.tv-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.tv-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.tv-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   6. FOOTER
   ============================================ */
.tv-footer {
  background: var(--tv-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--tv-space-4xl) 0 var(--tv-space-xl);
}

.tv-footer a {
  color: var(--tv-secondary-lt);
}

.tv-footer a:hover {
  color: var(--tv-white);
}

.tv-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--tv-space-2xl);
  margin-bottom: var(--tv-space-3xl);
}

.tv-footer__about p {
  font-size: var(--tv-fs-sm);
  line-height: 1.8;
  max-width: 320px;
}

.tv-footer h4 {
  color: var(--tv-white);
  font-size: var(--tv-fs-md);
  margin-bottom: var(--tv-space-lg);
  position: relative;
}

.tv-footer h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: var(--tv-secondary);
  margin-top: var(--tv-space-sm);
  border-radius: 2px;
}

.tv-footer ul li {
  margin-bottom: var(--tv-space-sm);
}

.tv-footer ul a {
  font-size: var(--tv-fs-sm);
  transition: all var(--tv-transition);
}

.tv-footer ul a:hover {
  padding-left: 4px;
}

.tv-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--tv-space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--tv-fs-sm);
}

.tv-footer__social {
  display: flex;
  gap: var(--tv-space-md);
}

.tv-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--tv-radius-round);
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--tv-transition);
}

.tv-footer__social a:hover {
  background: var(--tv-secondary);
  transform: translateY(-2px);
}

/* ============================================
   7. PAGE / POST CONTENT
   ============================================ */
.tv-content {
  padding: var(--tv-space-3xl) 0;
}

.tv-content__article {
  max-width: 780px;
  margin: 0 auto;
}

.tv-content__article p,
.tv-content__article ul,
.tv-content__article ol {
  margin-bottom: 1.25em;
}

.tv-content__article ul,
.tv-content__article ol {
  padding-left: 1.5em;
}

.tv-content__article ul {
  list-style: disc;
}

.tv-content__article ol {
  list-style: decimal;
}

.tv-content__article li {
  margin-bottom: 0.35em;
}

.tv-content__article img {
  border-radius: var(--tv-radius-md);
  margin: var(--tv-space-xl) 0;
}

.entry-title {
  margin-bottom: var(--tv-space-md);
}

.entry-meta {
  font-size: var(--tv-fs-sm);
  color: var(--tv-gray-500);
  margin-bottom: var(--tv-space-xl);
  display: flex;
  gap: var(--tv-space-lg);
  flex-wrap: wrap;
}

.entry-meta a {
  color: var(--tv-secondary);
}

.entry-meta a:hover {
  color: var(--tv-primary);
}

/* Featured image */
.tv-featured-image {
  margin-bottom: var(--tv-space-xl);
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
}

.tv-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  margin: 0;
}

/* Post nav */
.tv-post-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--tv-gray-200);
  padding-top: var(--tv-space-xl);
  margin-top: var(--tv-space-3xl);
}

.tv-post-nav a {
  font-weight: 600;
}

/* ============================================
   8. BLOG LISTING
   ============================================ */
.tv-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--tv-space-2xl);
}

.tv-card {
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  box-shadow: var(--tv-shadow-sm);
  transition: all var(--tv-transition);
}

.tv-card:hover {
  box-shadow: var(--tv-shadow-lg);
  transform: translateY(-4px);
}

.tv-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.tv-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tv-card:hover .tv-card__thumb img {
  transform: scale(1.04);
}

.tv-card__body {
  padding: var(--tv-space-lg);
}

.tv-card__body h3 {
  font-size: var(--tv-fs-h5);
  margin-bottom: var(--tv-space-sm);
}

.tv-card__body h3 a {
  color: var(--tv-primary);
}

.tv-card__body h3 a:hover {
  color: var(--tv-secondary);
}

.tv-card__excerpt {
  color: var(--tv-gray-600);
  font-size: var(--tv-fs-sm);
  line-height: 1.7;
  margin-bottom: var(--tv-space-md);
}

.tv-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--tv-fs-sm);
  color: var(--tv-gray-400);
}

/* Pagination */
.tv-pagination {
  display: flex;
  justify-content: center;
  gap: var(--tv-space-sm);
  margin-top: var(--tv-space-3xl);
}

.tv-pagination a,
.tv-pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--tv-space-md);
  border-radius: var(--tv-radius-pill);
  font-weight: 600;
  font-size: var(--tv-fs-sm);
  transition: all var(--tv-transition);
}

.tv-pagination a {
  background: var(--tv-gray-100);
  color: var(--tv-primary);
}

.tv-pagination a:hover {
  background: var(--tv-primary);
  color: var(--tv-white);
}

.tv-pagination .current {
  background: var(--tv-primary);
  color: var(--tv-white);
}

/* ============================================
   9. SIDEBAR / WIDGETS
   ============================================ */
.tv-sidebar .widget {
  margin-bottom: var(--tv-space-2xl);
  padding: var(--tv-space-lg);
  background: var(--tv-gray-50);
  border-radius: var(--tv-radius-md);
}

.tv-sidebar .widget-title {
  font-family: var(--tv-font-heading);
  font-size: var(--tv-fs-h6);
  color: var(--tv-primary);
  margin-bottom: var(--tv-space-md);
  padding-bottom: var(--tv-space-sm);
  border-bottom: 2px solid var(--tv-secondary);
}

/* ============================================
   10. 404 PAGE
   ============================================ */
.tv-404 {
  text-align: center;
  padding: var(--tv-space-4xl) 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tv-404__code {
  font-family: var(--tv-font-heading);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--tv-secondary-lt);
  line-height: 1;
  margin-bottom: var(--tv-space-md);
}

.tv-404 h1 {
  font-size: var(--tv-fs-h2);
  margin-bottom: var(--tv-space-md);
}

.tv-404 p {
  color: var(--tv-gray-500);
  font-size: var(--tv-fs-md);
  margin-bottom: var(--tv-space-xl);
  max-width: 480px;
}

/* ============================================
   11. FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
  font-family: var(--tv-font-body);
  font-size: var(--tv-fs-base);
  padding: 0.65em 1em;
  border: 1.5px solid var(--tv-gray-300);
  border-radius: var(--tv-radius-md);
  background: var(--tv-white);
  color: var(--tv-black);
  transition: border-color var(--tv-transition), box-shadow var(--tv-transition);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--tv-secondary);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}

/* ============================================
   12. WP BLOCKS OVERRIDES
   ============================================ */
.wp-block-image img {
  border-radius: var(--tv-radius-md);
}

.wp-block-separator {
  border-color: var(--tv-gray-200);
}

.wp-block-quote {
  border-left-color: var(--tv-secondary);
}

.has-text-align-center {
  text-align: center;
}

/* ============================================
   13. UTILITY CLASSES
   ============================================ */
.tv-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.tv-text-primary {
  color: var(--tv-primary);
}

.tv-text-secondary {
  color: var(--tv-secondary);
}

.tv-text-accent {
  color: var(--tv-secondary-acc);
}

.tv-bg-primary {
  background-color: var(--tv-primary);
}

.tv-bg-secondary {
  background-color: var(--tv-secondary);
}

.tv-bg-light {
  background-color: var(--tv-gray-50);
}

/* ============================================
   14. RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .tv-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  /* Mobile nav */
  .tv-mobile-toggle {
    display: block;
  }

  .tv-nav,
  .tv-header__cta {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--tv-primary);
    box-shadow: var(--tv-shadow-lg);
    padding: 5rem var(--tv-space-xl) var(--tv-space-xl);
    transition: right 0.35s ease;
    z-index: 1000;
    flex-direction: column;
  }

  .tv-nav.active {
    right: 0;
  }

  .tv-nav ul {
    flex-direction: column;
    gap: var(--tv-space-md);
  }

  .tv-header__cta {
    display: none;
  }

  .tv-nav.active~.tv-header__cta {
    display: flex;
    right: 0;
    top: auto;
    bottom: 2rem;
    height: auto;
    position: fixed;
    width: 280px;
    padding: 0 var(--tv-space-xl);
  }

  /* Overlay */
  .tv-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .tv-overlay.active {
    display: block;
  }

  /* Footer */
  .tv-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--tv-space-xl);
  }

  .tv-footer__bar {
    flex-direction: column;
    gap: var(--tv-space-md);
    text-align: center;
  }

  /* Posts */
  .tv-posts-grid {
    grid-template-columns: 1fr;
  }

  /* Content */
  .tv-content__article {
    padding: 0 var(--tv-space-md);
  }
}

/* ============================================
   15. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tv-animate {
  animation: fadeInUp 0.5s ease forwards;
}

/* WP Admin bar offset */
.admin-bar .tv-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .tv-header {
    top: 46px;
  }
}

/* ============================================
   16. HOMEPAGE — HERO
   ============================================ */
.tv-hero {
  position: relative;
  background: linear-gradient(160deg, #022d4f 0%, var(--tv-primary) 40%, #044a6e 100%);
  color: var(--tv-white);
  padding: var(--tv-space-2xl) 0 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .tv-hero {
    height: 710px
  }
}

/* Inner pages: lighter blue hero */
.tv-hero--inner {
  background: #81DFFF;
  min-height: auto;
  padding: var(--tv-space-2xl) 0 0;
  color: #033B62;
}

.tv-hero--inner .tv-hero__title,
.tv-hero--inner .tv-hero__subtitle {
  color: #033B62;
}

.tv-hero>.tv-container {
  flex: 1;
  display: flex;
  align-items: center;
}

.tv-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--tv-space-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: var(--tv-space-4xl);
}

.tv-hero__title {
  color: var(--tv-white);
  font-size: var(--tv-fs-h1);
  line-height: 1.15;
  margin-bottom: var(--tv-space-lg);
}

@media (max-width: 480px) {
  .tv-hero__title {
    font-size: 2rem;
  }
}


.tv-hero__subtitle {
  font-size: var(--tv-fs-base);
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  margin-bottom: var(--tv-space-xl);
  line-height: 1.7;
}

.tv-hero__actions {
  display: flex;
  gap: var(--tv-space-lg);
  align-items: center;
  flex-wrap: wrap;
}

/* Accent (orange) button */
.tv-btn--accent {
  background: var(--tv-secondary-acc);
  color: var(--tv-white);
  border-color: var(--tv-secondary-acc);
}

.tv-btn--accent:hover {
  background: #e55e2a;
  border-color: #e55e2a;
  color: var(--tv-white);
  box-shadow: 0 4px 16px rgba(252, 113, 58, 0.35);
  transform: translateY(-1px);
}

/* Text link style */
.tv-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: var(--tv-white);
  font-weight: 700;
  font-size: var(--tv-fs-base);
  transition: all var(--tv-transition);
}

.tv-hero__link:hover {
  color: var(--tv-secondary-lt);
}

.tv-hero__link svg {
  transition: transform var(--tv-transition);
}

.tv-hero__link:hover svg {
  transform: translateX(4px);
}

/* Thought-bubble showcase */
.tv-hero__showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cloud Showcase — Image Based */
.tv-hero__cloud-shadow {
  filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.25));
  animation: tv-float 6s ease-in-out infinite;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-hero__cloud-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../../uploads/2026/03/cloud-box.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Main Showcase image */
.tv-hero__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: url('../../uploads/2026/03/cloud-box.png');
  mask-image: url('../../uploads/2026/03/cloud-box.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transform: scale(0.92);
  /* Fits drawing inside the white frame area */
  transition: transform 0.5s ease;
}

.tv-hero__bubble:hover .tv-hero__main-img {
  transform: scale(0.96);
}

.tv-hero__bubble:hover .tv-hero__main-img {
  transform: scale(1.05);
}

@keyframes tv-float {

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

  33% {
    transform: translateY(-10px) rotate(1deg);
  }

  66% {
    transform: translateY(-5px) rotate(-1deg);
  }
}

/* Bottom clouds */
.tv-hero__clouds {
  position: relative;
  z-index: 0;
  margin-top: auto;
  line-height: 0;
  pointer-events: none;
  margin-top: -210px;
}

.tv-hero__clouds img {
  width: 100%;
  height: auto;
  display: block;
}

/* Inner page clouds — lighter cloud on #81DFFF background */
.tv-hero__clouds--inner {
  margin-top: -100px;
  background-color: var(--tv-white);
}

/* ============================================
   16b. HOMEPAGE — TRUST BAR
   ============================================ */
.tv-trust-bar {
  background: var(--tv-primary);
  padding: var(--tv-space-lg) 0;
}

.tv-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tv-space-xl);
  align-items: center;
}

.tv-trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--tv-space-md);
}

.tv-trust-bar__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--tv-white);
  border-radius: var(--tv-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.tv-trust-bar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tv-trust-bar__text {
  color: var(--tv-white);
  font-size: var(--tv-fs-sm);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   17. HOMEPAGE — HOW IT WORKS
   ============================================ */
.tv-howit {
  position: relative;
  overflow: visible;
  padding-bottom: var(--tv-space-xl);
  margin-bottom: 0;
}

.tv-howit__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--tv-space-3xl);
  align-items: center;
}

.tv-howit__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-howit__circle {
  width: 180px;
  height: 180px;
  border-radius: var(--tv-radius-round);
  background: var(--tv-secondary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tv-howit__circle img {
  width: 65%;
  height: auto;
  object-fit: contain;
  top: -60px;
  position: relative;
  right: -50px;
}

.tv-howit__title {
  font-size: var(--tv-fs-h3);
  margin-bottom: var(--tv-space-lg);
}

.tv-howit__desc {
  color: var(--tv-gray-600);
  margin-bottom: var(--tv-space-xl);
  line-height: 1.8;
  max-width: 600px;
}

/* ============================================
   REUSABLE: WAVE SECTION DIVIDER
   ============================================ */
.tv-wave {
  position: relative;
  z-index: 5;
  margin-bottom: -150px;
  line-height: 0;
  pointer-events: none;
}

.tv-wave img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1100px) {
  .tv-wave {
    margin-bottom: -115px;
  }
}

@media (max-width: 768px) {
  .tv-wave {
    margin-bottom: -80px;
  }
}

@media (max-width: 400px) {
  .tv-wave {
    margin-bottom: -60px;
  }
}

/* ============================================
   18. HOMEPAGE — PROCESS STEPS
   ============================================ */
.tv-process {
  background: #81DFFF;
  padding-top: calc(var(--tv-space-4xl) + 80px);
}

.tv-process__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--tv-space-xl);
  margin-bottom: var(--tv-space-3xl);
}

.tv-process__label {
  display: inline-block;
  font-size: var(--tv-fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tv-secondary);
  margin-bottom: var(--tv-space-xs);
}

.tv-process__title {
  margin-bottom: var(--tv-space-sm);
}

.tv-process__subtitle {
  color: var(--tv-gray-500);
  max-width: 500px;
}

.tv-process__header-cta {
  flex-shrink: 0;
  padding-top: var(--tv-space-lg);
}

.tv-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--tv-space-xl);
}

.tv-process__card {
  background: var(--tv-white);
  border-radius: 60px;
  border: 2px dashed var(--tv-gray-300);
  padding: var(--tv-space-2xl) var(--tv-space-xl) 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--tv-transition);
}

.tv-process__card:hover {
  border-color: var(--tv-secondary-lt);
  box-shadow: var(--tv-shadow-md);
  transform: translateY(-4px);
}

.tv-process__card-title {
  font-size: 1.8rem;
  margin-bottom: var(--tv-space-md);
}

.tv-process__card-desc {
  color: var(--tv-gray-600);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: var(--tv-space-lg);
  flex: 1;
}

.tv-process__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-weight: 700;
  font-size: var(--tv-fs-sm);
  color: var(--tv-secondary-acc);
  margin-bottom: var(--tv-space-xl);
  transition: all var(--tv-transition);
}

.tv-process__card-link:hover {
  color: #e55e2a;
}

.tv-process__card-link svg {
  transition: transform var(--tv-transition);
}

.tv-process__card-link:hover svg {
  transform: translateX(4px);
}

.tv-process__card-cloud {
  margin: 0 calc(-1 * var(--tv-space-xl));
  line-height: 0;
}

.tv-process__card-cloud img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   18. ABOUT PAGE — ABOUT ME
   ============================================ */
.tv-about-me {
  padding: var(--tv-space-4xl) 0;
}

.tv-about-me__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--tv-space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .tv-about-me__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tv-about-me__image-wrap {
  display: flex;
  justify-content: center;
}

.tv-about-me__image-frame {
  border: 2px dashed #90ee90;
  padding: 12px;
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  max-width: 400px;
  width: 100%;
}

.tv-about-me__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--tv-radius-lg) - 8px);
  object-fit: cover;
}

.tv-about-me__content {
  display: flex;
  flex-direction: column;
}

.tv-about-me__title {
  color: var(--tv-primary);
  font-size: var(--tv-fs-h2);
  margin-bottom: var(--tv-space-sm);
}

.tv-about-me__subtitle {
  color: var(--tv-primary);
  font-size: var(--tv-fs-h4);
  font-weight: 600;
  margin-bottom: var(--tv-space-lg);
}

.tv-about-me__text p {
  color: var(--tv-gray-600);
  line-height: 1.8;
  margin-bottom: 1.25em;
  font-size: var(--tv-fs-base);
}

/* ============================================
   19. HOMEPAGE — STATS
   ============================================ */
.tv-stats {
  background: var(--tv-primary) url('/tinyvision-merged/tinyvision-new/wp-content/uploads/2026/03/blue-with-character-bg.png') center / cover no-repeat;
  color: var(--tv-white);
  padding: var(--tv-space-3xl) 0;
  position: relative;
}

.tv-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 59, 98, 0.6);
  pointer-events: none;
}

.tv-stats>.tv-container {
  position: relative;
  z-index: 1;
}

.tv-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tv-space-xl);
  text-align: center;
}

.tv-stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--tv-radius-md);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  margin: 0 auto var(--tv-space-lg);
  padding: 10px;
}

.tv-stats__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tv-stats__icon--pink {
  background: rgba(255, 192, 203, 0.25);
  border-color: rgba(255, 192, 203, 0.6);
}

.tv-stats__icon--blue {
  background: rgba(129, 223, 255, 0.25);
  border-color: rgba(129, 223, 255, 0.6);
}

.tv-stats__icon--orange {
  background: rgba(252, 113, 58, 0.25);
  border-color: rgba(252, 113, 58, 0.6);
}

.tv-stats__icon--green {
  background: rgba(144, 238, 144, 0.25);
  border-color: rgba(144, 238, 144, 0.6);
}

.tv-stats__number {
  display: block;
  font-family: var(--tv-font-heading);
  font-size: var(--tv-fs-h2);
  font-weight: 800;
  margin-bottom: var(--tv-space-xs);
}

.tv-stats__label {
  display: block;
  font-size: var(--tv-fs-sm);
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   20. HOMEPAGE — GALLERY
   ============================================ */
.tv-gallery {
  padding-bottom: var(--tv-space-xl);
  overflow: visible;
}

.tv-gallery__header {
  text-align: center;
  margin: 0 auto var(--tv-space-3xl);
}

.tv-gallery__label {
  display: inline-block;
  font-size: var(--tv-fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tv-secondary);
  margin-bottom: var(--tv-space-xs);
}

.tv-gallery__title {
  margin-bottom: var(--tv-space-md);
}

.tv-gallery__subtitle {
  color: var(--tv-gray-500);
}

/* Mosaic grid layout */
.tv-gallery__mosaic {
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 90px;
  gap: 16px; */
  columns: 250px;
  column-gap: 16px;
  margin-bottom: var(--tv-space-3xl);
}

.tv-gallery__item {
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  padding: 5px;
  background: var(--tv-white);
  transition: transform var(--tv-transition), box-shadow var(--tv-transition);
  position: relative;
  margin-bottom: 20px;
}

.tv-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--tv-shadow-md);
}

.tv-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: calc(var(--tv-radius-lg) - 5px);
  object-fit: cover;
}

/* Hover overlay ("View image") */
.tv-gallery__hover {
  position: absolute;
  inset: 5px;
  background: rgba(3, 59, 98, 0.6);
  border-radius: calc(var(--tv-radius-lg) - 5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all var(--tv-transition);
}

.tv-gallery__item:hover .tv-gallery__hover {
  opacity: 1;
  visibility: visible;
}

.tv-gallery__hover-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.tv-gallery__hover span {
  font-size: var(--tv-fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- Responsive Overrides for smaller screens ---- */
/* @media (max-width: 768px) {
  .tv-gallery__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .tv-gallery__item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
} */

/* ---- Grid positions (matching exact design layout 4x10 grid) ---- */
/* Row 1/2 */
.tv-gallery__item--1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.tv-gallery__item--2 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.tv-gallery__item--3 {
  grid-column: 4 / 5;
  grid-row: 1 / 4;
}

/* Row 3/4 */
.tv-gallery__item--4 {
  grid-column: 1 / 2;
  grid-row: 3 / 5;
}

.tv-gallery__item--5 {
  grid-column: 2 / 3;
  grid-row: 3 / 5;
}

.tv-gallery__item--6 {
  grid-column: 3 / 4;
  grid-row: 3 / 7;
}

.tv-gallery__item--7 {
  grid-column: 4 / 5;
  grid-row: 4 / 6;
}

/* Row 5 to 8 */
.tv-gallery__item--8 {
  grid-column: 1 / 2;
  grid-row: 5 / 11;
}

.tv-gallery__item--9 {
  grid-column: 2 / 3;
  grid-row: 5 / 7;
}

.tv-gallery__item--10 {
  grid-column: 2 / 4;
  grid-row: 7 / 9;
}

.tv-gallery__item--11 {
  grid-column: 4 / 5;
  grid-row: 6 / 9;
}

/* Row 9/10 */
.tv-gallery__item--12 {
  grid-column: 2 / 3;
  grid-row: 9 / 11;
}

.tv-gallery__item--13 {
  grid-column: 3 / 4;
  grid-row: 9 / 11;
}

.tv-gallery__item--14 {
  grid-column: 4 / 5;
  grid-row: 9 / 11;
}

/* ---- Frame styles ---- */
/* Solid teal rounded */
.tv-gallery__item--solid-teal {
  border: 2px solid #a8d8d8;
  border-radius: 16px;
}

/* Thick solid green */
.tv-gallery__item--solid-green {
  border: 5px solid #90ee90;
  border-radius: 20px;
  padding: 8px;
}

/* Light blue dashed */
.tv-gallery__item--dashed-blue {
  border: 2px dashed #81dfff;
}

/* Subtle solid (beige/gray) */
.tv-gallery__item--solid-subtle {
  border: 2px solid var(--tv-gray-200);
  border-radius: 16px;
}

/* Pink dashed */
.tv-gallery__item--dashed-pink {
  border: 2px dashed #f5a0a0;
}

/* Thick solid orange */
.tv-gallery__item--solid-orange {
  border: 5px solid #FC713A;
  border-radius: 20px;
  padding: 8px;
}

.tv-gallery__cta {
  text-align: center;
  margin-bottom: var(--tv-space-2xl);
}

/* ============================================
   21. HOMEPAGE — FAQ
   ============================================ */
.tv-faq {
  background: #e0f4fd;
  padding-top: calc(var(--tv-space-4xl) + 180px);
}

.tv-faq__header {
  text-align: center;
  margin: 0 auto var(--tv-space-3xl);
}

.tv-faq__label {
  display: inline-block;
  font-size: var(--tv-fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tv-secondary);
  margin-bottom: var(--tv-space-xs);
}

.tv-faq__title {
  margin-bottom: var(--tv-space-md);
}

.tv-faq__subtitle {
  color: var(--tv-gray-500);
}

.tv-faq__list {
  max-width: 860px;
  margin: 0 auto;
}

.tv-faq__item {
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  border: 2px solid #81dfff;
  margin-bottom: var(--tv-space-md);
  overflow: hidden;
  transition: box-shadow var(--tv-transition);
}

.tv-faq__item:hover {
  box-shadow: var(--tv-shadow-sm);
}

.tv-faq__item[open] {
  box-shadow: var(--tv-shadow-md);
}

.tv-faq__question {
  display: flex;
  align-items: center;
  gap: var(--tv-space-md);
  padding: var(--tv-space-lg) var(--tv-space-xl);
  cursor: pointer;
  font-weight: 700;
  font-size: var(--tv-fs-base);
  list-style: none;
  color: var(--tv-primary);
  transition: background var(--tv-transition);
}

.tv-faq__question::-webkit-details-marker {
  display: none;
}

.tv-faq__question::marker {
  display: none;
  content: '';
}

.tv-faq__q-text {
  flex: 1;
}

.tv-faq__q-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tv-faq__q-icon::before,
.tv-faq__q-icon::after {
  content: '';
  position: absolute;
  background: var(--tv-primary);
  border-radius: 2px;
  transition: transform var(--tv-transition);
}

/* Horizontal bar */
.tv-faq__q-icon::before {
  width: 20px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical bar (rotates away when open) */
.tv-faq__q-icon::after {
  width: 3px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tv-faq__item[open] .tv-faq__q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Dashed separator + answer */
.tv-faq__answer {
  padding: 0 var(--tv-space-xl) var(--tv-space-lg);
  border-top: 2px dashed #81dfff;
  margin: 0 var(--tv-space-lg);
  padding-top: var(--tv-space-md);
  color: var(--tv-gray-600);
  line-height: 1.8;
  font-size: var(--tv-fs-sm);
}

.tv-faq__answer p {
  margin-bottom: 0;
}

/* ============================================
   22. HOMEPAGE — TESTIMONIALS
   ============================================ */
.tv-testimonials__header {
  text-align: center;
  margin: 0 auto var(--tv-space-3xl);
}

.tv-testimonials__label {
  display: inline-block;
  font-size: var(--tv-fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tv-secondary);
  margin-bottom: var(--tv-space-xs);
}

.tv-testimonials__title {
  margin-bottom: var(--tv-space-md);
}

.tv-testimonials__subtitle {
  color: var(--tv-gray-500);
}

/* Slider */
.tv-testimonials__slider {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.tv-testimonials__slide {
  display: none;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--tv-space-xl);
  align-items: stretch;
}

.tv-testimonials__slide--active {
  display: grid;
}

/* Image side */
.tv-testimonials__image {
  border-radius: var(--tv-radius-lg);
  padding: 8px;
  overflow: hidden;
}

.tv-testimonials__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--tv-radius-lg) - 8px);
  display: block;
}

.tv-testimonials__image--red {
  border: 3px dashed #f5a0a0;
}

/* Quote card side */
.tv-testimonials__card {
  border-radius: var(--tv-radius-lg);
  padding: var(--tv-space-2xl);
  display: flex;
  flex-direction: column;
}

.tv-testimonials__card--green {
  border: 3px dashed #90ee90;
}

.tv-testimonials__card-top {
  display: flex;
  align-items: center;
  gap: var(--tv-space-md);
  margin-bottom: var(--tv-space-xl);
}

.tv-testimonials__sun {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.tv-testimonials__counter {
  flex: 1;
  text-align: center;
  color: var(--tv-gray-500);
  font-size: var(--tv-fs-sm);
}

.tv-testimonials__counter strong {
  color: var(--tv-primary);
  font-size: var(--tv-fs-md);
}

.tv-testimonials__nav {
  display: flex;
  gap: var(--tv-space-xs);
}

.tv-testimonials__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--tv-radius-round);
  border: 2px solid #81dfff;
  background: transparent;
  color: #81dfff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tv-transition);
}

.tv-testimonials__nav-btn:hover {
  background: #81dfff;
  color: var(--tv-white);
}

.tv-testimonials__quote {
  font-size: var(--tv-fs-md);
  color: var(--tv-gray-600);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

.tv-testimonials__author {
  display: flex;
  align-items: baseline;
  gap: var(--tv-space-md);
  margin-top: var(--tv-space-xl);
}

.tv-testimonials__author-name {
  color: var(--tv-primary);
  font-size: var(--tv-fs-base);
}

.tv-testimonials__author-desc {
  font-size: var(--tv-fs-sm);
  color: var(--tv-gray-400);
  font-style: italic;
}

/* ============================================
   23. HOMEPAGE — CTA BANNER
   ============================================ */
.tv-cta {
  padding: var(--tv-space-3xl) 0 var(--tv-space-xl);
  overflow: visible;
}

/* The dark blue band sits behind, shorter than the cards */
.tv-cta__strip {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--tv-space-xl);
}

.tv-cta__strip::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  background: var(--tv-primary);
  border-radius: 20px;
  border: 3px dashed rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.tv-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--tv-space-lg);
  align-items: stretch;
  align-items: center;
}

/* Sky blue content panel */
.tv-cta__content {
  padding: var(--tv-space-lg);
  margin-right: -70px;
}

@media (max-width: 992px) {
  .tv-cta__content {
    margin-right: 0px;
  }
}

@media (max-width: 768px) {
  .tv-cta__content {
    padding: 0;
  }
}

.tv-cta__content-inner {
  background: #40c9f3;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  border-radius: var(--tv-radius-lg);
  padding: var(--tv-space-lg);
  color: var(--tv-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.tv-cta__title {
  color: var(--tv-white);
  font-size: var(--tv-fs-h3);
  margin-bottom: var(--tv-space-md);
}

.tv-cta__desc {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--tv-space-xl);
  line-height: 1.7;
}

/* Green-framed image panel */
.tv-cta__image {
  border: 5px solid #90ee90;
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
}

.tv-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   24. GALLERY LIGHTBOX
   ============================================ */
.tv-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 59, 98, 0.95);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tv-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.tv-lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--tv-radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.tv-lightbox__close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: transparent;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 3010;
  transition: transform 0.2s;
}

.tv-lightbox__close:hover {
  transform: scale(1.1);
}

.tv-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 3010;
}

.tv-lightbox__nav:hover {
  background: var(--tv-primary);
  border-color: var(--tv-primary);
}

.tv-lightbox__prev {
  left: -70px;
}

.tv-lightbox__next {
  right: -70px;
}

.tv-lightbox__nav svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  .tv-lightbox__close {
    top: -40px;
    right: 0;
  }

  .tv-lightbox__prev {
    left: 10px;
  }

  .tv-lightbox__next {
    right: 10px;
  }
}

/* ============================================
   25. UPLOAD MODAL
   ============================================ */
.tv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 59, 98, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tv-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.tv-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%;
  max-width: 992px;
  max-height: 90vh;
  background: #fff;
  border-radius: var(--tv-radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  border: 4px solid #40c9f3;

  /* Custom thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(64, 201, 243, 0.5) transparent;
}

/* WebKit Scrollbar Styling for Modal */
.tv-modal::-webkit-scrollbar {
  width: 6px;
}

.tv-modal::-webkit-scrollbar-track {
  background: transparent;
}

.tv-modal::-webkit-scrollbar-thumb {
  background-color: rgba(64, 201, 243, 0.5);
  border-radius: 10px;
}

.tv-modal::-webkit-scrollbar-thumb:hover {
  background-color: #40c9f3;
}

.tv-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.tv-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--tv-gray-400);
  cursor: pointer;
  padding: 4px;
  transition: color var(--tv-transition);
}

.tv-modal__close:hover {
  color: var(--tv-primary);
}

.tv-modal__header {
  padding: var(--tv-space-2xl) var(--tv-space-2xl) var(--tv-space-lg);
  border-bottom: 1px solid var(--tv-gray-100);
}

.tv-modal__title {
  color: var(--tv-primary);
  margin-bottom: var(--tv-space-sm);
}

.tv-modal__desc {
  font-size: var(--tv-fs-sm);
  color: var(--tv-gray-500);
  margin: 0;
  line-height: 1.6;
}

.tv-modal__form {
  padding: var(--tv-space-xl) var(--tv-space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--tv-space-xl);
}

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

.tv-form-label {
  font-weight: 700;
  color: var(--tv-primary);
  font-size: var(--tv-fs-sm);
}

.tv-required {
  color: #ff6b35;
}

.tv-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--tv-gray-300);
  border-radius: var(--tv-radius-md);
  font-family: inherit;
  font-size: var(--tv-fs-base);
  transition: border-color var(--tv-transition);
}

.tv-form-input:focus {
  outline: none;
  border-color: #40c9f3;
  box-shadow: 0 0 0 3px rgba(64, 201, 243, 0.1);
}

.tv-form-textarea {
  min-height: 100px;
  resize: vertical;
}

.tv-file-upload {
  position: relative;
  border: 2px dashed var(--tv-gray-300);
  border-radius: var(--tv-radius-md);
  background: #fdfdfd;
  padding: var(--tv-space-xl);
  text-align: center;
  transition: all var(--tv-transition);
  cursor: pointer;
}

.tv-file-upload:hover,
.tv-file-upload.dragover {
  border-color: #40c9f3;
  background: rgba(64, 201, 243, 0.03);
}

.tv-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.tv-file-upload__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--tv-gray-500);
}

.tv-file-upload__inner svg {
  color: #40c9f3;
}

.tv-file-upload__text strong {
  color: var(--tv-primary);
}

.tv-file-upload__meta {
  font-size: 13px;
  line-height: 1.5;
}

.tv-file-upload__meta .js-file-name {
  color: var(--tv-secondary-acc);
  font-weight: 600;
}

.tv-form-group--checkbox {
  flex-direction: row;
}

.tv-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.tv-checkbox-input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #40c9f3;
  cursor: pointer;
  flex-shrink: 0;
}

.tv-checkbox-text {
  font-size: 13px;
  color: var(--tv-gray-500);
  line-height: 1.6;
}

.tv-checkbox-text strong {
  color: var(--tv-primary);
}

.tv-modal__footer {
  margin-top: var(--tv-space-sm);
  padding-top: var(--tv-space-lg);
  border-top: 1px solid var(--tv-gray-100);
}

/* ============================================
   25. FOOTER
   ============================================ */
.tv-footer {
  background-color: #033B62;
  background-image: url('../../uploads/2026/03/footer-bg.png');
  background-size: cover;
  background-position: center;
  color: var(--tv-white);
  padding: 200px 0 var(--tv-space-lg);
  font-size: var(--tv-fs-sm);
}

.tv-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--tv-space-2xl);
  margin-bottom: var(--tv-space-3xl);
}

.tv-footer__about {
  max-width: 320px;
}

.tv-footer__logo img {
  border-radius: var(--tv-radius-lg);
  margin-bottom: var(--tv-space-md);
  width: 80px;
  height: 80px;
  display: block;
}

.tv-footer__tagline {
  color: var(--tv-white);
  line-height: 1.6;
  font-size: 1.1rem;
}

.tv-footer__heading {
  color: var(--tv-white);
  font-size: 1.25rem;
  margin-bottom: var(--tv-space-lg);
  font-weight: 700;
}

.tv-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tv-footer__links li {
  margin-bottom: var(--tv-space-md);
}

.tv-footer__links a {
  color: #e0f4fd;
  text-decoration: none;
  transition: color var(--tv-transition);
}

.tv-footer__links a:hover {
  color: var(--tv-white);
  text-decoration: underline;
}

.tv-footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--tv-space-lg);
  border-top: 2px dashed #40c9f3;
  /* Cyan dashed line */
  color: rgba(224, 244, 253, 0.8);
}

.tv-footer__bar p {
  margin: 0;
}

.tv-footer__credit {
  color: #fb923c;
  /* Orange color matching logo pencil */
  text-decoration: none;
  transition: opacity var(--tv-transition);
}

.tv-footer__credit:hover {
  opacity: 0.8;
}

/* ============================================
   26. CONTACT PAGE
   ============================================ */
.tv-contact {
  padding: var(--tv-space-3xl) 0 var(--tv-space-3xl);
  background: var(--tv-white);
}

.tv-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--tv-space-4xl);
  align-items: center;
}

.tv-contact__info {
  max-width: 440px;
}

.tv-contact__title {
  font-size: 38px;
  color: var(--tv-primary);
  margin-bottom: var(--tv-space-md);
  font-weight: 800;
  line-height: 1.2;
}

.tv-contact__desc {
  color: #5c7b96;
  font-size: 17px;
  margin-bottom: var(--tv-space-2xl);
  line-height: 1.5;
}

.tv-contact__email-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* allow wrapping if needed */
  gap: var(--tv-space-lg);
}

.tv-contact__icon {
  position: relative;
  background: #fbb48b;
  color: var(--tv-primary);
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  /* prevent icon from shrinking */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.tv-contact__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1.5px dashed #fbb48b;
  border-radius: 12px;
  z-index: -1;
}

.tv-contact__email {
  font-size: 26px;
  font-weight: 800;
  color: var(--tv-primary);
  text-decoration: none;
  word-break: break-all;
}

@media (max-width: 768px) {
  .tv-contact__email {
    font-size: 20px;
  }
}

.tv-contact__form-wrapper {
  padding: 10px;
}

.tv-contact__form-box {
  background: var(--tv-white);
  border: 6px solid #8be78b;
  /* Thick light green border matching design */
  border-radius: 10px;
  padding: 40px 48px;
}

.tv-contact__form-title {
  color: var(--tv-primary);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.tv-contact__form-desc {
  color: #5c7b96;
  font-size: 16px;
  margin-bottom: 30px;
}

.tv-contact__form .tv-form-group {
  margin-bottom: 20px;
}

.tv-contact__form .tv-form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tv-contact__form input,
.tv-contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #aebfd1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--tv-primary);
  transition: border-color var(--tv-transition);
}

.tv-contact__form input::placeholder,
.tv-contact__form textarea::placeholder {
  color: #9baebf;
}

.tv-contact__form input:focus,
.tv-contact__form textarea:focus {
  outline: none;
  border-color: #40c9f3;
}

.tv-contact__submit {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
}

/* --- Checkout Page Header --- */
.tv-checkout-header {
  background: #81DFFF;
  padding: 60px 0 48px;
  text-align: center;
}

.tv-checkout-header__title {
  color: var(--tv-primary);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.tv-checkout-header__subtitle {
  color: #033b62;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.8;
}

/* ============================================
   28. CHECKOUT PAGE
   ============================================ */
.tv-checkout {
  padding: var(--tv-space-3xl) 0;
  background: var(--tv-white);
}

.tv-checkout__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--tv-space-3xl);
  align-items: start;
}

/* --- Order Summary Sidebar --- */
.tv-checkout__summary-box {
  background: var(--tv-white);
  border: 3px solid #e0f4fd;
  border-radius: 12px;
  padding: 32px;
  position: sticky;
  top: 100px;
}

.tv-checkout__summary-title {
  color: var(--tv-primary);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.tv-checkout__drawing-preview {
  margin-bottom: 24px;
}

.tv-checkout__drawing-placeholder {
  background: #f0f8ff;
  border: 2px dashed #a8d8ea;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  color: #7baac4;
}

.tv-checkout__drawing-placeholder svg {
  margin-bottom: 8px;
}

.tv-checkout__drawing-placeholder p {
  font-size: 14px;
  margin: 0;
}

.tv-checkout__line-items {
  border-top: 1px solid #e0f4fd;
  padding-top: 20px;
}

.tv-checkout__line-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: #5c7b96;
}

.tv-checkout__free {
  color: #22c55e;
  font-weight: 700;
}

.tv-checkout__total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--tv-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--tv-primary);
}

.tv-checkout__secure {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: #22c55e;
}

/* --- Billing Form --- */
.tv-checkout__form-box {
  background: var(--tv-white);
  border: 6px solid #8be78b;
  border-radius: 10px;
  padding: 40px 48px;
}

.tv-checkout__form-title {
  color: var(--tv-primary);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.tv-checkout__form-desc {
  color: #5c7b96;
  font-size: 16px;
  margin-bottom: 30px;
}

.tv-checkout__form .tv-form-group {
  margin-bottom: 18px;
}

.tv-checkout__form .tv-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tv-primary);
  margin-bottom: 6px;
}

.tv-checkout__form input,
.tv-checkout__form select,
.tv-checkout__form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #aebfd1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--tv-primary);
  transition: border-color var(--tv-transition);
  background: var(--tv-white);
}

.tv-checkout__form input::placeholder {
  color: #9baebf;
}

.tv-checkout__form input:focus,
.tv-checkout__form select:focus {
  outline: none;
  border-color: #40c9f3;
}

.tv-checkout__form .tv-form-select {
  appearance: auto;
  cursor: pointer;
}

/* Row layouts */
.tv-checkout__form .tv-form-row--name {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 16px;
}

.tv-checkout__form .tv-form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tv-checkout__form .tv-form-row--3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

/* Consent */
.tv-checkout__consent {
  margin: 24px 0;
  padding: 20px;
  background: #fef3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
}

.tv-checkout__consent .tv-checkbox-label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: #5c4813;
}

.tv-checkout__consent .tv-checkbox-input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--tv-accent);
}

/* Optional Extras */
.tv-checkout__extras {
  margin: 28px 0;
  padding: 24px;
  background: #f0f8ff;
  border: 1px solid #d0e8f7;
  border-radius: 10px;
}

.tv-checkout__extras-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tv-primary);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.tv-checkout__extras-title svg {
  color: #40c9f3;
}

.tv-checkout__char-select {
  width: auto;
  min-width: 140px;
  padding: 8px 32px 8px 12px;
  border: 1.5px solid #d0e8f7;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--tv-primary);
  background: var(--tv-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23033B62' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tv-checkout__char-select:focus {
  outline: none;
  border-color: #40c9f3;
  box-shadow: 0 0 0 2px rgba(64, 201, 243, 0.15);
}

.tv-checkout__extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  background: var(--tv-white);
  border: 1.5px solid #e0f4fd;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.tv-checkout__extra-item:last-child {
  margin-bottom: 0;
}

.tv-checkout__extra-item:hover {
  border-color: #40c9f3;
  box-shadow: 0 2px 8px rgba(64, 201, 243, 0.12);
}

.tv-checkout__extra-item:has(input:checked) {
  border-color: #22c55e;
  background: #f0fdf4;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.tv-checkout__extra-item .tv-checkbox-input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #22c55e;
  margin: 0;
}

.tv-checkout__extra-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tv-checkout__extra-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--tv-primary);
}

.tv-checkout__extra-desc {
  font-size: 13px;
  color: #5c7b96;
}

.tv-checkout__extra-price {
  font-size: 15px;
  font-weight: 700;
  color: #22c55e;
  white-space: nowrap;
}

/* Add-on line items in sidebar */
.tv-checkout__addon-line {
  color: #22c55e !important;
  font-weight: 600;
}

.tv-checkout__addon-line span:first-child::before {
  content: '+ ';
}

/* Extra input fields (expandable) */
.tv-checkout__extra-field {
  margin: -2px 0 12px;
  padding: 16px 18px;
  background: #f8fcff;
  border: 1px solid #d0e8f7;
  border-top: none;
  border-radius: 0 0 8px 8px;
  animation: tvSlideDown 0.25s ease-out;
}

@keyframes tvSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tv-checkout__extra-field .tv-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--tv-primary);
  margin-bottom: 8px;
}

/* File upload zone */
.tv-checkout__extra-upload {
  position: relative;
  border: 2px dashed #a8d8ea;
  border-radius: 8px;
  background: var(--tv-white);
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}

.tv-checkout__extra-upload:hover,
.tv-checkout__extra-upload.dragover {
  border-color: #40c9f3;
  background: #f0f8ff;
}

.tv-checkout__extra-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.tv-checkout__extra-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px;
  color: #7baac4;
  font-size: 14px;
  text-align: center;
  pointer-events: none;
}

.tv-checkout__extra-preview {
  margin-top: 10px;
}

.tv-checkout__extra-preview img {
  max-width: 100%;
  max-height: 160px;
  border-radius: 6px;
  border: 1px solid #d0e8f7;
  display: block;
}

/* Text input for wording */
.tv-checkout__extra-text-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #aebfd1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--tv-primary);
  background: var(--tv-white);
  transition: border-color var(--tv-transition);
}

.tv-checkout__extra-text-input:focus {
  outline: none;
  border-color: #40c9f3;
  box-shadow: 0 0 0 2px rgba(64, 201, 243, 0.15);
}

.tv-checkout__extra-char-count {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #9baebf;
  text-align: right;
}

/* Payment */
.tv-checkout__payment {
  margin-top: 24px;
}

.tv-checkout__payment-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tv-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tv-checkout__payment-methods-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tv-checkout__method-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #5c7b96;
  background: #f0f8ff;
  border: 1px solid #d0e8f7;
  border-radius: 20px;
  white-space: nowrap;
}

.tv-checkout__stripe-wrapper {
  margin-top: 12px;
}

#payment-element {
  background: var(--tv-white);
  border-radius: 6px;
  min-height: 40px;
}

.tv-checkout__payment--active {
  animation: tvFadeIn 0.4s ease-out;
}

@keyframes tvFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Submit */
.tv-checkout__submit {
  width: 100%;
  margin-top: 24px;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tv-required {
  color: #ef4444;
}

/* ---- Success Modal (after payment) ---- */
.tv-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 59, 98, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.tv-success-overlay.active {
  opacity: 1;
}

.tv-success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--tv-white);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 60px rgba(3, 59, 98, 0.25);
}

.tv-success-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.tv-success-modal__icon {
  margin-bottom: 20px;
  animation: tvSuccessPulse 0.6s ease-out;
}

.tv-success-modal__icon svg {
  margin: 0 auto;
}

@keyframes tvSuccessPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tv-success-modal__title {
  color: var(--tv-primary);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.tv-success-modal__text {
  color: #5c7b96;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.tv-success-modal__sub {
  color: var(--tv-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
}

.tv-success-modal__btn {
  padding: 16px 48px;
  font-size: 17px;
  border-radius: 30px;
}

/* ============================================
   29. TERMS & CONDITIONS PAGE
   ============================================ */
.tv-terms {
  padding: var(--tv-space-3xl) 0;
  background: var(--tv-white);
}

.tv-terms__content {
  background: var(--tv-white);
  border: 1px solid #e0f4fd;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(3, 59, 98, 0.05);
}

.tv-terms__content h2 {
  color: var(--tv-primary);
  font-size: 24px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 2px solid #e0f4fd;
  padding-bottom: 8px;
}

.tv-terms__content h2:first-child {
  margin-top: 0;
}

.tv-terms__content p,
.tv-terms__content li {
  color: #5c7b96;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.tv-terms__content ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.tv-terms__content strong {
  color: var(--tv-primary);
  font-weight: 700;
}

/* ============================================
   27. HOMEPAGE — RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 992px) {
  .tv-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tv-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .tv-hero__actions {
    justify-content: center;
  }

  .tv-hero__bubble {
    max-width: 380px;
    margin: 0 auto;
  }

  .tv-contact__inner {
    grid-template-columns: 1fr;
    gap: var(--tv-space-2xl);
    text-align: center;
  }

  .tv-contact__info {
    max-width: 100%;
  }

  .tv-contact__email-block {
    justify-content: center;
  }

  .tv-checkout__inner {
    grid-template-columns: 1fr;
  }

  .tv-checkout__summary-box {
    position: static;
  }

  .tv-checkout__form-box {
    padding: 30px 24px;
  }

  .tv-checkout__form .tv-form-row--name {
    grid-template-columns: 80px 1fr;
  }

  .tv-checkout__form .tv-form-row--3col {
    grid-template-columns: 1fr;
  }

  .tv-trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tv-howit__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tv-howit__circle {
    margin: 0 auto;
  }

  .tv-howit__desc {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .tv-process__header {
    flex-direction: column;
    text-align: center;
  }

  .tv-process__header-cta {
    padding-top: 0;
  }

  .tv-process__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .tv-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .tv-gallery__mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  } */

  .tv-gallery__item--1,
  .tv-gallery__item--2,
  .tv-gallery__item--3,
  .tv-gallery__item--4,
  .tv-gallery__item--5,
  .tv-gallery__item--6,
  .tv-gallery__item--7,
  .tv-gallery__item--8,
  .tv-gallery__item--9,
  .tv-gallery__item--10 {
    grid-column: auto;
    grid-row: auto;
  }

  .tv-testimonials__slide--active {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .tv-cta__inner {
    grid-template-columns: 1fr;
  }

  .tv-cta__content {
    text-align: center;
  }

  .tv-cta__image {
    margin-left: 0;
  }

  .tv-cta__desc {
    margin-right: auto;
  }

  .tv-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tv-hero {
    min-height: 660px;
    padding-top: 0;
  }

  .tv-hero__inner {
    /* padding-bottom: var(--tv-space-xl); */
    padding-bottom: 80px;
  }

  .tv-hero__bubble {
    max-width: 300px;
  }

  .tv-trust-bar__grid {
    grid-template-columns: 1fr;
    gap: var(--tv-space-md);
  }

  .tv-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--tv-space-lg);
  }

  /* .tv-gallery__mosaic {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  } */

  .tv-faq__question {
    padding: var(--tv-space-md);
  }

  .tv-faq__answer {
    margin: 0 var(--tv-space-sm);
    padding: var(--tv-space-sm) var(--tv-space-md) var(--tv-space-md);
  }

  .tv-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--tv-space-xl);
  }

  .tv-footer__bar {
    flex-direction: column;
    text-align: center;
    gap: var(--tv-space-md);
  }
}