/* ===== general.css - Main Website Styles (No Tool Styles) ===== */

/* ===== RESET & BASE STYLES ===== */
:root {
  /* Primary Brand Colors */
  --primary-red: #e60023;
  --primary-red-hover: #d50c22;
  --primary-red-light: rgba(230, 0, 35, 0.1);
  
  /* Background Colors */
  --bg-body: #f5f5f5;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-input: #efefef;
  --bg-hover: #f5f5f5;
  --bg-hover-dark: #e2e2e2;
  
  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-muted: #767676;
  --text-white: #ffffff;
  
  /* Border Colors */
  --border-light: #e2e2e2;
  --border-input: #e0e0e0;
  
  /* Action Colors */
  --success-green: #4CAF50;
  --success-green-hover: #45a049;
  --collection-gold: #ffd700;
  --collection-orange: #ff6b00;
  --info-blue: #2196F3;
  --info-blue-hover: #1976D2;
  --error-red: #f44336;
  --remove-red: #ff4444;
  --remove-bg: #ffebee;
  
  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-medium: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-hover: 0 4px 15px rgba(230, 0, 35, 0.3);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #e60023, #ff6b6b);
  
  /* Layout */
  --max-width: 1200px;
  --border-radius: 12px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body.pro-tool-active {
  overflow: hidden;
  background: #f8fafc;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== BANNER AD STYLES ===== */
.tool-banner-ads-container {
  width: 100%;
  background: var(--gradient-primary);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  border-bottom: 2px solid var(--collection-gold);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  box-shadow: var(--shadow-medium);
}

body.pro-tool-active .tool-banner-ads-container {
  display: flex;
}

.desktop-ads {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
  padding: 0 20px;
}

.desktop-ad {
  flex: 1;
  min-width: 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.desktop-ad:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.desktop-ad img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: block;
}

.desktop-ad img:hover {
  transform: scale(1.05);
}

.mobile-ad {
  display: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.mobile-ad img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.mobile-ad img:hover {
  transform: scale(1.02);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9999;
  background-color: var(--bg-light);
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  background-color: var(--bg-light);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__logo img {
  max-width: 50px;
  height: auto;
}

.nav__title h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav__links a:hover {
  color: var(--primary-red);
}

/* User Info */
.user-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gradient-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  flex-wrap: nowrap;
}

.user-info.hidden {
  display: none;
}

.user-name {
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.user-initials {
  width: 35px;
  height: 35px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logout-btn {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: none;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.credits-badge {
  background: #f8f9fa;
  color: #495057;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid #e9ecef;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.credits-count {
  font-weight: bold;
  color: var(--primary-red);
}

/* Desktop Navigation */
@media (min-width: 769px) {
  .nav-container {
    flex-wrap: nowrap;
  }
  
  .nav__header {
    flex: 0 0 auto;
  }
  
  .nav__links {
    flex: 1;
    justify-content: center;
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    flex-direction: row;
    width: auto;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }
  
  .nav__menu__btn {
    display: none !important;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
  }
  
  .nav__header {
    flex: 1;
  }
  
  .nav__menu__btn {
    display: block !important;
    order: 3;
  }
  
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    transform: translateY(-200%);
    transition: transform 0.3s ease-in-out;
    z-index: 99;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
  }
  
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .user-info {
    order: 2;
    margin-right: 0.5rem;
  }
  
  .user-name {
    display: none;
  }
  
  .user-initials {
    display: flex;
    width: 30px;
    height: 30px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--bg-light);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: opacity 0.3s ease;
  margin-top: 70px;
}

body.pro-tool-active .hero,
body.pro-tool-active .heroin,
body.pro-tool-active .containerv,
body.pro-tool-active .furniture-swap,
body.pro-tool-active .furniture-swapping,
body.pro-tool-active .design-styles,
body.pro-tool-active .how-it-works,
body.pro-tool-active .testimonials,
body.pro-tool-active .pricing,
body.pro-tool-active .cta-section,
body.pro-tool-active .geo-landing,
body.pro-tool-active footer,
body.pro-tool-active #discover {
  display: none;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero-text {
  flex: 1;
}

.hero-visual {
  flex: 1;
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-primary);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

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

.btn-secondary {
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

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

/* ===== DISCOVER SECTION ===== */
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 1rem;
  width: 100%;
}

.discover__grid {
  display: grid;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.discover__destination {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: var(--gradient-primary);
  color: #fff;
  width: 100%;
}

.discover__destination__image {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.discover__destination__image img {
  width: 100%;
  max-width: 200px;
  border-radius: 1rem;
}

.discover__plan {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  background-color: #faf4de;
  border: 2px dashed #ccc;
  border-radius: var(--border-radius);
  padding: 2rem;
  width: 100%;
}

/* ===== UPLOAD SECTION ===== */
.upload-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border: 2px dashed var(--border-input);
  border-radius: 12px;
  max-width: 600px;
  margin: auto;
  background-color: #fafafa;
  transition: 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.upload-btn {
  padding: 0.8rem 2rem;
  background-color: var(--primary-red);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.upload-btn:hover {
  background-color: var(--primary-red-hover);
}

.preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
}

.preview-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* ===== TAILOR ANY SPACE SECTION ===== */
.heroin {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  gap: 40px;
  background: var(--bg-light);
  width: 100%;
}

.heroin .images-c {
  position: relative;
  flex: 1;
}

.heroin .tagline {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-red);
}

.heroin .image-stack {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.heroin .image-stack img {
  width: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  margin-left: -80px;
  transition: all 0.4s ease;
}

.heroin .image-stack img:nth-child(1) {
  height: 280px;
  margin-left: 0;
  z-index: 4;
}

.heroin .image-stack img:nth-child(2) {
  height: 240px;
  z-index: 3;
}

.heroin .image-stack img:nth-child(3) {
  height: 200px;
  z-index: 2;
}

.heroin .image-stack img:nth-child(4) {
  height: 160px;
  z-index: 1;
}

.heroin .image-stack img:hover {
  transform: translateY(-10px) scale(1.03);
  z-index: 5;
}

.heroin .content {
  flex: 1;
  max-width: 480px;
}

.heroin .content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-primary);
}

.heroin .content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.heroin .cta-c {
  background: var(--primary-red);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.heroin .cta-c:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ===== SMART ROOM ADVICE SECTION ===== */
.containerv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 5%;
  flex-wrap: wrap;
  min-height: auto;
  width: 100%;
}

.containerv .left-section {
  max-width: 500px;
  flex: 1;
  min-width: 300px;
}

.containerv .left-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.containerv .left-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.containerv .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.containerv .feature-button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.containerv .feature-button.color {
  background-color: var(--primary-red);
  color: white;
}

.containerv .feature-button.furniture {
  background-color: var(--gradient-primary);
  color: white;
}

.containerv .feature-button.design {
  background-color: #00B894;
  color: white;
}

.containerv .feature-button.renovate {
  background-color: #FD79A8;
  color: white;
}

.containerv .feature-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

.containerv .cta-button {
  background-color: var(--primary-red);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  margin-top: 20px;
}

.containerv .cta-button:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.containerv .right-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 300px;
}

.containerv .image-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 350px;
}

.containerv .image-stack img {
  position: absolute;
  border-radius: 12px;
  box-shadow: var(--shadow-heavy);
  width: 70%;
  height: 75%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.containerv .image-stack img:nth-child(1) {
  top: 10%;
  left: 5%;
  z-index: 1;
  width: 65%;
}

.containerv .image-stack img:nth-child(2) {
  bottom: 5%;
  right: 5%;
  z-index: 2;
  width: 68%;
  height: 70%;
}

/* ===== FURNITURE SWAP SECTIONS ===== */
.furniture-swap {
  padding: 60px 0;
  background: var(--bg-light);
  width: 100%;
}

.swap-visualization {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.swap-item {
  flex: 1;
  text-align: center;
}

.swap-image-container {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-bottom: 20px;
}

.swap-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.swap-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0.2;
}

.arrow-icon {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

.furniture-swapping {
  padding: 60px 0;
  background: var(--bg-white);
  width: 100%;
}

.swapping-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}

.swapping-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  max-width: 500px;
  transition: all 0.3s ease;
  flex: 1 1 45%;
  min-width: 300px;
}

.swapping-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.swapping-images {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: col-resize;
}

.original-image, .swapped-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.original-image {
  z-index: 1;
}

.swapped-image {
  width: 50%;
  border-right: 3px solid white;
  z-index: 2;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.swapping-handle {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-red);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.swapping-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  pointer-events: none;
}

.swapping-info {
  padding: 25px;
}

.swapping-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.swapping-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== DESIGN STYLES SECTION ===== */
.design-styles {
  padding: 60px 0;
  background: var(--bg-white);
  width: 100%;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  width: 100%;
}

.style-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  position: relative;
  height: 300px;
}

.style-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.style-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

.style-card:hover .style-image {
  transform: scale(1.1);
}

.style-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.style-card:hover .style-overlay {
  transform: translateY(0);
}

.style-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 60px 0 40px;
  background: white;
  width: 100%;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
  width: 100%;
  gap: 15px;
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 0 10px;
  position: relative;
  margin-bottom: 10px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 60px 0 40px;
  background: white;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-medium);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--text-primary);
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 60px 0;
  background: white;
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.pricing-card.popular {
  transform: scale(1.05);
  border: 2px solid var(--primary-red);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.pricing-header {
  margin-bottom: 30px;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.pricing-features li i {
  margin-right: 10px;
  color: var(--primary-red);
}

.pricing-button {
  width: 100%;
  padding: 15px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 60px 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  width: 100%;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ===== GEO LANDING ===== */
.geo-landing {
  --geo-primary: #e60023;
  --geo-primary-hover: #d50c22;
  --geo-bg: #f8f9fa;
  --geo-text: #333;
  --geo-text-light: #6c757d;
  --geo-white: #ffffff;
  --geo-shadow: rgba(0, 0, 0, 0.08);
  --geo-primary-shadow: rgba(230, 0, 35, 0.3);
  background-color: var(--geo-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  color: var(--geo-text);
  padding: 60px 20px;
  width: 100%;
}

.geo-landing-container {
  width: 100%;
  max-width: 1200px;
  height: 40vh;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background-color: var(--geo-white);
  box-shadow: 0 10px 30px var(--geo-shadow);
  border-radius: 12px;
}

.geo-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
  padding: 12px;
  z-index: 1;
}

.geo-shape {
  background-color: #f1f3f5;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 4px;
}

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

.geo-shape:hover img {
  transform: scale(1.05);
}

.geo-shape-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.geo-shape-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.geo-shape-3 { grid-column: 4 / 5; grid-row: 1 / 2; }
.geo-shape-4 { grid-column: 5 / 6; grid-row: 1 / 2; }
.geo-shape-5 { grid-column: 6 / 7; grid-row: 1 / 3; }
.geo-shape-6 { grid-column: 7 / 9; grid-row: 1 / 2; }
.geo-shape-7 { grid-column: 3 / 5; grid-row: 2 / 4; }
.geo-shape-8 { grid-column: 5 / 6; grid-row: 2 / 3; }
.geo-shape-9 { grid-column: 1 / 2; grid-row: 3 / 4; }
.geo-shape-10 { grid-column: 2 / 3; grid-row: 3 / 4; }
.geo-shape-11 { grid-column: 6 / 7; grid-row: 3 / 4; }
.geo-shape-12 { grid-column: 7 / 8; grid-row: 2 / 4; }
.geo-shape-13 { grid-column: 8 / 9; grid-row: 2 / 3; }
.geo-shape-14 { grid-column: 1 / 3; grid-row: 4 / 5; }
.geo-shape-15 { grid-column: 3 / 4; grid-row: 4 / 5; }
.geo-shape-16 { grid-column: 4 / 6; grid-row: 4 / 5; }
.geo-shape-17 { grid-column: 6 / 8; grid-row: 4 / 5; }
.geo-shape-18 { grid-column: 8 / 9; grid-row: 3 / 5; }

.geo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
}

.geo-button {
  background-color: var(--geo-primary);
  color: var(--geo-white);
  border: none;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px var(--geo-primary-shadow);
  margin-bottom: 25px;
}

.geo-button:hover {
  background-color: var(--geo-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 0, 35, 0.4);
}

.geo-text {
  text-align: center;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
}

.geo-text h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
}

.geo-text p {
  font-size: 16px;
  color: var(--geo-text-light);
}

/* ===== 100% FULL CONTROL SECTION ===== */
.detail-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 5%;
  flex-wrap: wrap;
  min-height: auto;
  background-color: var(--bg-light);
  width: 100%;
}

.detail-section .content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.detail-section .content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.detail-section .content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.detail-section .cta {
  background-color: var(--primary-red);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.detail-section .cta:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.detail-section .images {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.detail-section .tagline {
  font-size: 18px;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 30px;
}

.detail-section .image-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.detail-section .image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.detail-section .image-box {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.detail-section .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-section .arrow {
  font-size: 24px;
  color: var(--primary-red);
  font-weight: bold;
}

/* ===== FOOTER ===== */
footer {
  background: #2c3e50;
  color: white;
  padding: 70px 0 20px;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  width: 100%;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* ===== MODALS ===== */
.auth-modal,
.credits-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.auth-modal.hidden,
.credits-modal.hidden {
  display: none;
}

.auth-wrapper,
.credits-wrapper {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  width: 350px;
  max-width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-heavy);
}

.auth-wrapper header,
.credits-wrapper header {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.auth-wrapper button,
.credits-wrapper button {
  background: var(--primary-red);
  color: #fff;
  border: none;
  padding: 0.7rem;
  width: 100%;
  cursor: pointer;
  margin-top: 0.5rem;
  border-radius: 6px;
  font-weight: bold;
}

.auth-wrapper .close,
.credits-wrapper .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-secondary);
}

.google-btn {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  border: 1px solid #ccc !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0.8rem 1.5rem !important;
  transition: all 0.3s ease !important;
}

.google-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-2px);
}

.google-btn img {
  width: 20px;
  height: 20px;
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200000;
  display: none;
}

.cookie-settings-modal.active {
  display: flex;
}

.cookie-settings-wrapper {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cookie-settings-wrapper .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.cookie-settings-wrapper header {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #e60023;
}

.cookie-option {
  background: #f8fafc;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
}

.cookie-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cookie-option-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #e60023;
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-save-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #e60023, #ff6b6b);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.cookie-save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.3);
}

/* ===== AFFILIATE COOKIE BANNER ===== */
.affiliate-cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-heavy);
  z-index: 1001;
  max-width: 350px;
  display: none;
  animation: slideInRight 0.5s ease;
  border-left: 5px solid var(--primary-red);
}

.affiliate-cookie-banner.show {
  display: block;
}

.affiliate-cookie-banner h3 {
  color: var(--primary-red);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.affiliate-cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.4;
}

.affiliate-cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.affiliate-accept-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  flex: 1;
}

.affiliate-settings-btn {
  background: #f8f9fa;
  color: var(--primary-red);
  border: 1px solid var(--primary-red);
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  flex: 1;
}

.affiliate-cookie-settings {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.cookie-setting-item {
  margin-bottom: 10px;
}

.cookie-setting-item label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-primary);
  cursor: pointer;
}

.cookie-setting-item input {
  margin-right: 8px;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== CHAT POPUP ===== */
.chat-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow-heavy);
  z-index: 1000;
  max-width: 300px;
  display: none;
  animation: slideInUp 0.5s ease;
  border-left: 4px solid var(--primary-red);
}

.chat-popup.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.chat-content {
  flex: 1;
}

.chat-message {
  font-size: 13px;
  margin-bottom: 4px;
  color: #334155;
}

.chat-time {
  font-size: 10px;
  color: #94a3b8;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ===== VERTICAL AD BANNER ===== */
.vertical-ad-banner {
  position: fixed;
  right: 0;
  top: 70px;
  width: 170px;
  height: calc(100vh - 70px);
  background: transparent;
  z-index: 9998;
  display: none;
  overflow-y: auto;
  padding: 10px 0;
}

@media (min-width: 1200px) {
  .vertical-ad-banner {
    display: block;
  }
}

.vertical-ad-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 5px;
}

.vertical-ad-item {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.vertical-ad-item:hover {
  transform: translateY(-3px);
}

.vertical-ad-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ZOOM INSTRUCTIONS ===== */
.zoom-instructions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  z-index: 10001;
  pointer-events: none;
  font-family: monospace;
}


/* ===== WELCOME BANNER FIXES ===== */

@media (max-width: 768px) {
  /* Hero section - fix image and buttons */
  .hero {
    padding: 80px 0 40px;
    margin-top: 60px;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }
  
  .hero p {
    font-size: 1rem;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .hero-visual {
    height: 250px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}







