@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..1000;1,9..40,300..1000&family=Montserrat:wght@700;800;900&display=swap');

/* ==========================================
   CSS VARIABLES & GLOBAL RESET
   ========================================== */
:root {
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  
  --color-purple-dark: #1b0033;
  --color-purple-main: #4b0082;
  --color-purple-light: #5d00a4;
  --color-black-header: #0a0014;
  --color-card-bg: #ffffff;
  --color-input-border: #d1d5db;
  --color-input-focus: #4b0082;
  --color-btn-login: #000000;
  --color-btn-login-hover: #1f2937;
  --color-btn-support: #374151;
  --color-btn-support-hover: #1f2937;
  --color-whatsapp-gold: #ffc107;
  --color-whatsapp-gold-hover: #ffa000;
  --color-whatsapp-green: #25d366;
  --color-text-dark: #0f172a;
  --color-text-muted: #475569;
  --color-bg-light: #f8fafc;

  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-btn: 0 4px 14px rgba(0, 0, 0, 0.2);
  --radius-card: 12px;
  --radius-input: 6px;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Vector Icon Base */
.svg-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: middle;
}

/* ==========================================
   HEADER SECTION WITH NAVIGATION (UNIFORM ACROSS ALL PAGES)
   ========================================== */
.site-header {
  background-color: var(--color-black-header);
  padding: 12px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo {
  height: 40px !important;
  width: auto !important;
  max-width: 200px;
  display: block;
  transition: transform 0.2s ease;
}

.header-logo:hover {
  transform: scale(1.02);
}

/* Header Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.nav-links a {
  color: #cbd5e1;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  padding: 8px 12px !important;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  height: 34px !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
}

.nav-links a.active {
  border-bottom: 2px solid var(--color-whatsapp-gold);
}

.nav-btn-whatsapp {
  background-color: var(--color-whatsapp-gold) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 0 18px !important;
  height: 38px !important;
  border-radius: 25px !important;
  transition: transform 0.2s ease, background-color 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

.nav-btn-whatsapp:hover {
  background-color: var(--color-whatsapp-gold-hover) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ==========================================
   HERO & LOGIN CONTAINER (PERFECT ALIGNMENT)
   ========================================== */
.hero-purple-section {
  background: radial-gradient(ellipse at 50% 30%, #5d00a4 0%, #29004d 60%, #120024 100%);
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.login-card-wrapper {
  width: 100%;
  max-width: 440px;
  background-color: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 28px 24px;
  margin: 0 auto;
  border-top: 4px solid var(--color-whatsapp-gold);
  text-align: left;
}

.login-card-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.card-logo {
  height: 48px;
  width: auto;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-primary);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-input);
  outline: none;
  background-color: #ffffff;
  color: #111827;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  border-color: var(--color-input-focus);
  box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.15);
}

.btn-login {
  width: 100%;
  padding: 12px;
  background-color: var(--color-btn-login);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: var(--shadow-btn);
  margin-top: 4px;
}

.btn-login:hover {
  background-color: var(--color-btn-login-hover);
}

.btn-login:active {
  transform: scale(0.99);
}

.btn-support-link {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--color-btn-support);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 8px;
}

.btn-support-link:hover {
  background-color: var(--color-btn-support-hover);
  color: #ffffff;
}

.login-card-links {
  margin-top: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.link-action {
  color: #2563eb;
  font-weight: 600;
  transition: color 0.2s ease;
}

.link-action:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.recaptcha-notice {
  margin-top: 20px;
  font-size: 12px;
  color: #475569;
  text-align: center;
  line-height: 1.4;
}

.recaptcha-notice a {
  color: #2563eb;
  text-decoration: underline;
}

/* ==========================================
   KEYWORD SEO BANNER (GLASSMORPHIC CARD)
   ========================================== */
.keyword-seo-banner {
  width: 100%;
  max-width: 900px;
  margin: 24px auto 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.keyword-seo-banner h1 {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

/* ==========================================
   INTERACTIVE SPORTS BANNER SLIDER & MEDIA
   ========================================== */
.banner-slider-container {
  width: 100%;
  max-width: 1000px;
  margin: 32px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  height: 340px;
  background-color: #0a0014;
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-slide {
  width: 33.333%;
  height: 100%;
  position: relative;
}

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

.slide-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(10, 0, 20, 0.95) 0%, rgba(10, 0, 20, 0.5) 60%, rgba(10, 0, 20, 0) 100%);
  padding: 24px 28px 16px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}

.slide-caption-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.slide-caption-sub {
  font-size: 15px;
  color: var(--color-whatsapp-gold);
  font-weight: 700;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.slider-nav-btn:hover {
  background: var(--color-whatsapp-gold);
  color: #000000;
}

.slider-nav-btn.prev { left: 16px; }
.slider-nav-btn.next { right: 16px; }

.slider-dots-container {
  position: absolute;
  bottom: 16px;
  right: 28px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-indicator.active {
  background: var(--color-whatsapp-gold);
  width: 24px;
  border-radius: 10px;
}

/* ==========================================
   SUB-PAGE HERO BANNER & BG CLASSES
   ========================================== */
.page-hero-banner {
  background: linear-gradient(135deg, var(--color-purple-dark) 0%, var(--color-purple-main) 100%);
  padding: 54px 24px;
  color: #ffffff;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-banner h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-hero-banner p {
  font-size: 17px;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto 16px;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #cbd5e1;
}

.breadcrumb-nav a {
  color: var(--color-whatsapp-gold);
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

/* Unique Background Classes for Sub-Pages */
.page-hero-banner.bg-login {
  background: linear-gradient(135deg, rgba(27, 0, 51, 0.88) 0%, rgba(75, 0, 130, 0.88) 100%), url('assets/cricket_stadium_hero.png') center/cover no-repeat;
}

.page-hero-banner.bg-registration {
  background: linear-gradient(135deg, rgba(27, 0, 51, 0.88) 0%, rgba(75, 0, 130, 0.88) 100%), url('assets/cricket_trophy_id.png') center/cover no-repeat;
}

.page-hero-banner.bg-app {
  background: linear-gradient(135deg, rgba(27, 0, 51, 0.88) 0%, rgba(75, 0, 130, 0.88) 100%), url('assets/cricket_dashboard_mobile.png') center/cover no-repeat;
}

.page-hero-banner.bg-analytics {
  background: linear-gradient(135deg, rgba(27, 0, 51, 0.88) 0%, rgba(75, 0, 130, 0.88) 100%), url('assets/cricket_ipl_action.png') center/cover no-repeat;
}

.page-hero-banner.bg-about {
  background: linear-gradient(135deg, rgba(27, 0, 51, 0.88) 0%, rgba(75, 0, 130, 0.88) 100%), url('assets/cricket_trophy_id.png') center/cover no-repeat;
}

.page-hero-banner.bg-contact {
  background: linear-gradient(135deg, rgba(27, 0, 51, 0.88) 0%, rgba(75, 0, 130, 0.88) 100%), url('assets/customer_support_graphic.png') center/cover no-repeat;
}

/* ==========================================
   HIGH-VISIBILITY SPAM-SAFE CTA BUTTONS & BANNERS
   ========================================== */
.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #000000 !important;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.btn-cta-gold:hover {
  background: linear-gradient(135deg, #ffca28 0%, #ffa726 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 152, 0, 0.45);
  color: #000000 !important;
}

.btn-cta-gold.large {
  font-size: 17px;
  padding: 16px 36px;
  width: 100%;
  max-width: 440px;
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(255, 193, 7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.btn-cta-pulse {
  animation: ctaPulse 2s infinite;
}

.cta-banner-box {
  background: linear-gradient(135deg, var(--color-purple-dark) 0%, var(--color-purple-main) 100%);
  border-radius: 16px;
  padding: 36px 28px;
  color: #ffffff;
  text-align: center;
  margin: 48px 0;
  box-shadow: 0 10px 30px rgba(75, 0, 130, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-banner-box h3,
.article-block .cta-banner-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.3;
  margin: 0 0 10px 0 !important;
}

.cta-banner-box p,
.article-block .cta-banner-box p {
  font-size: 16px;
  color: #f1f5f9 !important;
  max-width: 650px;
  line-height: 1.6;
  margin: 0 0 16px 0 !important;
}

/* ==========================================
   CONTENT SECTIONS & SPLIT MEDIA GRIDS
   ========================================== */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-title-group {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(75, 0, 130, 0.08);
  color: var(--color-purple-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(75, 0, 130, 0.15);
}

.section-main-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-purple-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}

.section-sub-heading {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Split Media Grid (Perfect Alignment) */
.split-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 48px 0 60px;
}

.split-media-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.split-media-image img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.split-media-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-purple-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.split-media-content p {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--color-purple-main);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-purple-main), var(--color-purple-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-whatsapp-gold);
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(75, 0, 130, 0.2);
}

.feature-icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.feature-card-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
}

/* Detailed Article Content Block */
.article-block {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 44px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  margin-bottom: 60px;
}

.article-block h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-purple-dark);
  margin: 28px 0 14px;
}

.article-block h2:first-child {
  margin-top: 0;
}

.article-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 22px 0 12px;
}

.article-block p {
  font-size: 16px;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 18px;
}

.article-block ul, .article-block ol {
  margin: 16px 0 24px 24px;
}

.article-block li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.6;
}

.highlight-box {
  background-color: #f8fafc;
  border-left: 4px solid var(--color-whatsapp-gold);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.highlight-icon {
  width: 22px;
  height: 22px;
  color: var(--color-purple-main);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-purple-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-badge {
  background-color: rgba(255, 193, 7, 0.2);
  color: #b45309;
  font-size: 13px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Form Styles for Contact Us */
.contact-form-wrapper {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-field-group label {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.form-field-group input,
.form-field-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-primary);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-input);
  outline: none;
  background-color: #ffffff;
  color: #111827;
  transition: border-color 0.2s ease;
}

.form-field-group input:focus,
.form-field-group textarea:focus {
  border-color: var(--color-purple-main);
}

.btn-submit-form {
  background-color: var(--color-purple-main);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-submit-form:hover {
  background-color: var(--color-purple-dark);
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-whatsapp-gold);
  color: #000000;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-whatsapp:hover {
  background-color: var(--color-whatsapp-gold-hover);
  transform: translateY(-3px);
  color: #000000;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col-about .footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col-about p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  max-width: 360px;
}

.footer-col-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 14px;
  color: #475569;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--color-purple-main);
}

.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-whatsapp-gold);
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp-footer:hover {
  background-color: var(--color-whatsapp-gold-hover);
  transform: scale(1.02);
}

.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-black-header);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .nav-links a {
    width: 100%;
    display: block;
    padding: 10px 14px;
  }

  .split-media-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero-banner h1 {
    font-size: 28px;
  }

  .keyword-seo-banner h1 {
    font-size: 16px;
  }

  .section-main-heading {
    font-size: 26px;
  }

  .article-block {
    padding: 28px 20px;
  }

  .banner-slider-container {
    height: 240px;
  }

  /* Exact User 3D Logo for Mobile Screens Only */
  .header-logo,
  .card-logo,
  .footer-logo {
    content: url('assets/logo_mobile.png') !important;
    height: 38px !important;
    width: auto !important;
    max-width: 170px !important;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast;
  }

  /* Single Line CTA Button for Mobile Screen Widths */
  .btn-cta-gold {
    white-space: nowrap !important;
    font-size: 13px !important;
    padding: 13px 14px !important;
    letter-spacing: -0.3px !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .btn-cta-gold svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 10px 16px;
  }
  
  .header-logo,
  .card-logo,
  .footer-logo {
    content: url('assets/logo_mobile.png') !important;
    height: 36px !important;
    width: auto !important;
    max-width: 155px !important;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast;
  }

  .login-card-wrapper {
    padding: 24px 16px 20px;
  }

  .btn-cta-gold {
    font-size: 11.5px !important;
    padding: 12px 10px !important;
    white-space: nowrap !important;
    letter-spacing: -0.4px !important;
  }

  .btn-problem-support {
    font-size: 12px !important;
    padding: 12px 10px !important;
    white-space: nowrap !important;
  }

  .keyword-seo-banner h1 {
    font-size: 14px;
  }

  .banner-slider-container {
    height: 200px;
  }

  .floating-whatsapp span {
    display: none;
  }
  
  .floating-whatsapp {
    padding: 14px;
    border-radius: 50%;
  }
}
