/* ============================================
   CikoTV - Modern CSS Framework
   Avustralya'nin #1 Turkce Yayin Platformu
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #dc1091;
  --primary-dark: #b00d76;
  --primary-light: #f21da6;
  --secondary: #4e2d74;
  --secondary-dark: #3a1f58;
  --secondary-light: #6b3fa0;
  --accent: #ffb614;
  --accent-dark: #e0a00f;
  --white: #ffffff;
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --dark: #1a1a2e;
  --text: #333333;
  --text-light: #666666;
  --success: #28a745;
  --error: #dc3545;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s ease;
  --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--dark);
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.section-gradient {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-dark .section-header .subtitle {
  color: var(--accent);
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: #ccc;
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: 30px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font);
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(220, 16, 145, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 16, 145, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(78, 45, 116, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 45, 116, 0.4);
  color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 182, 20, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 182, 20, 0.4);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  height: 65px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition);
}

.scrolled .logo img {
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(220, 16, 145, 0.2);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.header-phone svg {
  width: 20px;
  height: 20px;
}

.header-phone a {
  color: var(--accent);
}

.header-phone a:hover {
  color: var(--white);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 50%, var(--primary-dark) 100%);
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></svg>');
  background-size: 100px 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 182, 20, 0.15);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 182, 20, 0.3);
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 .highlight {
  color: var(--accent);
  display: block;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* --- Feature Cards --- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.feature-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.feature-card .icon-primary {
  background: linear-gradient(135deg, rgba(220, 16, 145, 0.1), rgba(220, 16, 145, 0.2));
  color: var(--primary);
}

.feature-card .icon-secondary {
  background: linear-gradient(135deg, rgba(78, 45, 116, 0.1), rgba(78, 45, 116, 0.2));
  color: var(--secondary);
}

.feature-card .icon-accent {
  background: linear-gradient(135deg, rgba(255, 182, 20, 0.1), rgba(255, 182, 20, 0.2));
  color: var(--accent-dark);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Category Cards --- */
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: var(--white);
}

.category-card .overlay h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.category-card .overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card .plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--secondary);
}

.pricing-card .plan-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-card .price {
  margin-bottom: 10px;
}

.pricing-card .price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: super;
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.pricing-card .price-yearly {
  background: rgba(220, 16, 145, 0.08);
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

.pricing-card .features-list {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-card .features-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-card .features-list li:last-child {
  border-bottom: none;
}

.pricing-card .features-list li .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Why CikoTV Section --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-item .icon {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.why-item h4 {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.why-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Video Section --- */
.video-card {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-card iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
  border: none;
}

.video-card .video-info {
  padding: 20px;
}

.video-card .video-info h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.video-card .video-info p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- App Download Band --- */
.app-band {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 50px 0;
  text-align: center;
}

.app-band h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.app-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.app-band .btn {
  font-size: 1.1rem;
  padding: 16px 36px;
}

/* --- Accordion (SSS) --- */
.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  transition: all var(--transition);
  gap: 15px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
}

.accordion-header:hover {
  background: var(--light);
  color: var(--primary);
}

.accordion-header .arrow {
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--primary);
}

.accordion-item.active .accordion-header .arrow {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
  color: var(--primary);
  border-bottom: 1px solid var(--light-gray);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content .content-inner {
  padding: 20px 25px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-info-card .phone-big {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0;
}

.contact-info-card .phone-big a {
  color: var(--primary);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about .footer-logo {
  height: 45px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* --- Payment Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray);
  z-index: 10;
  line-height: 1;
  padding: 5px;
}

.modal-close:hover {
  color: var(--dark);
}

.modal-header {
  padding: 30px 30px 20px;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

.modal-header h3 {
  font-size: 1.3rem;
  color: var(--secondary);
}

.modal-header .modal-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 10px;
}

.modal-header .modal-plan-name {
  color: var(--text-light);
  font-size: 0.9rem;
}

.modal-body {
  padding: 25px 30px 30px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  transition: all var(--transition);
  background: var(--light);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 16, 145, 0.1);
  background: var(--white);
}

.form-group input.error-input {
  border-color: var(--error);
  background: #fff5f5;
}

.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.card-number-wrapper {
  position: relative;
}

.card-type-display {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  opacity: 0;
  transition: opacity var(--transition);
}

.card-type-display.show {
  opacity: 1;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.security-note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--success);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 16, 145, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.payment-loading {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.payment-loading .spinner {
  border: 3px solid var(--light-gray);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.payment-success {
  display: none;
  text-align: center;
  padding: 30px;
}

.payment-success .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

.payment-success .success-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.payment-success h3 {
  color: var(--success);
  margin-bottom: 10px;
}

.payment-success p {
  color: var(--text-light);
}

/* --- Accessories Section --- */
.accessory-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all var(--transition);
}

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

.accessory-card .accessory-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.8rem;
}

.accessory-card h4 {
  margin-bottom: 5px;
}

.accessory-card .accessory-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.accessory-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* --- Page Header (Inner Pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  padding: 140px 20px 60px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

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

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
  color: var(--accent);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .hero-stats { gap: 30px; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .anniversary-badge {
    padding: 10px 20px;
  }

  .anniversary-text {
    font-size: 0.95rem;
  }

  .anniversary-subtext {
    font-size: 0.75rem;
  }

  .trust-band {
    gap: 15px;
  }

  .trust-item {
    flex-basis: calc(50% - 15px);
    justify-content: center;
    font-size: 0.85rem;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 5px;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    align-items: stretch;
  }

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

  .main-nav a {
    padding: 12px 16px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header-phone {
    display: none;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stat .number {
    font-size: 2rem;
  }

  h2, .section-header h2 {
    font-size: 1.6rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

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

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

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

  .modal {
    max-height: 95vh;
    margin: 10px;
  }

  .modal-header {
    padding: 25px 20px 15px;
  }

  .modal-body {
    padding: 20px;
  }

  .page-header {
    padding: 110px 20px 40px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .category-card {
    height: 220px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card .price .amount {
    font-size: 2.5rem;
  }

  .contact-info-card .phone-big {
    font-size: 1.8rem;
  }

  .accessory-card {
    flex-direction: column;
    text-align: center;
  }

  .anniversary-badge {
    padding: 8px 16px;
  }

  .anniversary-text {
    font-size: 0.85rem;
  }

  .trust-item {
    flex-basis: calc(50% - 10px);
    font-size: 0.8rem;
  }

  .whatsapp-contact-card {
    padding: 25px 20px;
  }

  .whatsapp-big-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* --- Anniversary Badge --- */
.anniversary-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffb614 0%, #e0a00f 100%);
  color: var(--dark);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 182, 20, 0.4);
  animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
  from { box-shadow: 0 4px 20px rgba(255, 182, 20, 0.4); }
  to { box-shadow: 0 4px 30px rgba(255, 182, 20, 0.7); }
}

.anniversary-text {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
}

.anniversary-subtext {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}

/* --- Price display (index.html summary) --- */
.pricing-card .price-from {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  display: block;
  margin-bottom: -5px;
}

.pricing-card .price-period {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
}

/* --- Plan Toggle --- */
.plan-toggle {
  display: flex;
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 4px;
  margin-bottom: 20px;
  gap: 4px;
}

.toggle-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: var(--text-light);
  font-family: var(--font);
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(220, 16, 145, 0.3);
}

.toggle-btn:hover:not(.active) {
  background: var(--light-gray);
  color: var(--text);
}

/* --- Plan Views --- */
.plan-view {
  display: none;
  animation: fadeIn 0.3s ease;
}

.plan-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.plan-info {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  margin-top: 5px;
}

/* --- Trust Band --- */
.trust-band {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 25px 20px;
  background: var(--light);
  border-radius: var(--radius);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}

.trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* --- Info Note --- */
.info-note {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.info-note p {
  background: var(--light);
  padding: 20px;
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.9rem;
  border-left: 4px solid var(--primary);
}

/* --- WhatsApp Contact Card --- */
.whatsapp-contact-card {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: var(--radius);
  padding: 35px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-card svg {
  margin-bottom: 15px;
}

.whatsapp-contact-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.whatsapp-contact-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.whatsapp-big-btn {
  display: inline-block;
  background: var(--white);
  color: #128c7e;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 1.05rem;
  font-weight: 700;
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-big-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #128c7e;
}

/* --- Contact Page Cleaned Styles --- */
.contact-icon-wrap {
  margin-bottom: 25px;
}

.contact-hours {
  color: var(--text-light);
  margin-bottom: 20px;
}

.contact-btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-subtext {
  color: var(--text-light);
  margin-top: 10px;
}

.city-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
  flex-wrap: wrap;
}

.city-tag {
  background: var(--light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* --- Accessory Grid --- */
.accessory-grid {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Print --- */
@media print {
  .site-header,
  .whatsapp-float,
  .modal-overlay,
  .hamburger,
  .app-band .btn,
  iframe {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: #fff;
    color: #000;
    padding: 20px;
  }

  .hero h1, .hero p {
    color: #000;
  }

  .section {
    padding: 20px 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
