/* ==================== VIDEO CONTENT SOCIAL - OPTIMIZED v5.0 ==================== */

/* Variables */
:root {
  --hero-pad: 100px 0 60px;
  --section-pad: 60px 0;
  --gap: 20px;
  --card-pad: 24px;
  --radius: 12px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  padding: var(--hero-pad);
  text-align: center;
  background: linear-gradient(135deg, var(--color-background), var(--color-surface));
  position: relative;
  overflow: hidden;
}

.hero .badge {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-text);
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stats div {
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stats span {
  font-size: 14px;
  color: var(--color-text-secondary);
  display: block;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--color-teal-500-rgb), 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-secondary);
  border-color: var(--color-primary);
}

.btn-full {
  width: 100%;
}

/* ==================== WHY SECTION ==================== */
.why {
  padding: var(--section-pad);
  background: var(--color-background);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  margin: 0 0 48px;
  font-size: 1.125rem;
  line-height: 1.5;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: var(--card-pad);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-text);
}

.card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

.link-primary {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.link-primary:hover {
  text-decoration: underline;
  color: var(--color-primary-hover);
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
  padding: var(--section-pad);
  background: var(--color-surface);
}

.category {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 2px solid var(--color-border);
}

.category:last-child {
  border: 0;
  margin-bottom: 0;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cat-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.cat-header h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
  text-align: left;
}

.cat-desc {
  background: var(--color-background);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-size: 15px;
}

/* ==================== VIDEO GRID - VERTICAL 9:16 ==================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.video-item {
  background: var(--color-background);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}

.video-wrap {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 aspect ratio */
  background: #000;
  overflow: hidden;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.play-btn span {
  color: var(--color-primary);
  font-size: 18px;
  margin-left: 3px;
}

.video-info {
  padding: 14px;
}

.tag {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-text);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

.video-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
  line-height: 1.4;
}



/* ==================== KONTAKT SECTION ==================== */
.kontakt {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--color-primary), var(--color-teal-600));
  position: relative;
  overflow: hidden;
}

.kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.form-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--color-surface);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.form-info {
  padding-right: 24px;
}

.badge-form {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(var(--color-teal-500-rgb), 0.3);
}

.form-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-align: left;
  margin-bottom: 20px;
  color: var(--color-text);
}

.form-info p {
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
  font-size: 1.0625rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding: 12px 0;
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
}

.form {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: var(--color-surface);
  color: var(--color-text);
  margin-bottom: 18px;
  transition: all 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-teal-500-rgb), 0.1);
}

.form textarea {
  resize: vertical;
  min-height: 110px;
}

.checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.checkbox input {
  width: auto;
  margin: 3px 0 0;
  cursor: pointer;
}

.checkbox a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.checkbox a:hover {
  text-decoration: underline;
}

.msg {
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
}

.success {
  background: rgba(var(--color-success-rgb), 0.1);
  color: var(--color-success);
  border: 1px solid rgba(var(--color-success-rgb), 0.3);
}

.error {
  background: rgba(var(--color-error-rgb), 0.1);
  color: var(--color-error);
  border: 1px solid rgba(var(--color-error-rgb), 0.3);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 48px;
  }
  
  .stats {
    gap: 32px;
  }
  
  .stats strong {
    font-size: 2rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }
  
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px;
  }
  
  .form-info {
    padding-right: 0;
  }
  
  .cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }
  
  .video-info {
    padding: 10px;
  }
  
  .tag {
    font-size: 10px;
    padding: 3px 10px;
  }
  
  .video-info h4 {
    font-size: 12px;
  }
  
  .play-btn {
    width: 48px;
    height: 48px;
  }
  
  .play-btn span {
    font-size: 16px;
  }
}

/* ==================== DARK MODE ==================== */
@media (prefers-color-scheme: dark) {
  .play-btn {
    background: rgba(255, 255, 255, 0.9);
  }
  
  .play-btn:hover {
    background: #fff;
  }
}

[data-color-scheme="dark"] {
  .play-btn {
    background: rgba(255, 255, 255, 0.9);
  }
  
  .play-btn:hover {
    background: #fff;
  }
}
/* ==================== HERO TEXT & BUTTON FIX ONLY ==================== */
.hero .badge {
  display: inline-block !important;
  padding: 8px 20px !important;
  border-radius: 99px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin: 0 0 24px !important;
  letter-spacing: -0.02em !important;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, #32b8c6 0%, #29a4b2 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block !important;
}

.hero .lead {
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  max-width: 700px !important;
  margin: 0 auto 40px !important;
  line-height: 1.6 !important;
}

.hero .stats {
  display: flex !important;
  gap: 48px !important;
  justify-content: center !important;
  margin-bottom: 40px !important;
  flex-wrap: wrap !important;
}

.hero .stats div {
  text-align: center !important;
}

.hero .stats strong {
  display: block !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #32b8c6 !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
}

.hero .stats span {
  font-size: 14px !important;
  display: block !important;
}

.hero .cta-group {
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.hero .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.hero .btn-primary {
  background: #32b8c6 !important;
  color: #000 !important;
}

.hero .btn-primary:hover {
  background: #2da5b2 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(50, 184, 198, 0.4) !important;
}

.hero .btn-outline {
  background: transparent !important;
  border: 1px solid rgba(119, 124, 124, 0.3) !important;
}

.hero .btn-outline:hover {
  background: rgba(119, 124, 124, 0.15) !important;
  border-color: #32b8c6 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 48px !important;
  }
  
  .hero .stats {
    gap: 32px !important;
  }
  
  .hero .stats strong {
    font-size: 2rem !important;
  }
  
  .hero .cta-group {
    flex-direction: column !important;
  }
  
  .hero .btn {
    width: 100% !important;
  }
}
/* ==================== PORTFOLIO SECTION FIX ==================== */
.portfolio {
  padding: 60px 0 !important;
  text-align: center !important;
}

.portfolio h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  margin: 0 0 16px !important;
}

.portfolio .subtitle {
  font-size: 1.125rem !important;
  margin: 0 0 48px !important;
  opacity: 0.8 !important;
}

/* Category Sections */
.category {
  margin-bottom: 56px !important;
  padding-bottom: 48px !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
  text-align: left !important;
}

.category:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

.cat-header {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
}

.cat-icon {
  font-size: 2.5rem !important;
  line-height: 1 !important;
}

.cat-header h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.cat-desc {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-bottom: 32px !important;
  line-height: 1.7 !important;
  font-size: 15px !important;
  opacity: 0.9 !important;
}

.cat-desc a {
  color: #32b8c6 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.cat-desc a:hover {
  text-decoration: underline !important;
}

/* Video Grid - Vertical 9:16 */
.video-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
  gap: 20px !important;
}

.video-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.video-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3) !important;
  border-color: #32b8c6 !important;
}

.video-wrap {
  position: relative !important;
  padding-bottom: 177.78% !important; /* 9:16 ratio */
  background: #000 !important;
  overflow: hidden !important;
}

.video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.play-btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 56px !important;
  height: 56px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 0 !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  z-index: 10 !important;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15) !important;
  background: #fff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.play-btn span {
  color: #32b8c6 !important;
  font-size: 18px !important;
  margin-left: 3px !important;
}

.video-info {
  padding: 14px !important;
}

.tag {
  display: inline-block !important;
  background: rgba(255, 255, 255, 0.1) !important;
  padding: 4px 12px !important;
  border-radius: 99px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}

.video-info h4 {
  font-size: 14px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

/* ==================== WHY SECTION FIX ==================== */
.why {
  padding: 60px 0 !important;
}

.why h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin: 0 0 16px !important;
}

.why .subtitle {
  text-align: center !important;
  margin: 0 0 48px !important;
  font-size: 1.125rem !important;
  opacity: 0.8 !important;
}

.grid-3 {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
}

.card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  transition: all 0.3s ease !important;
}

.card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3) !important;
  border-color: #32b8c6 !important;
}

.emoji {
  font-size: 3rem !important;
  display: block !important;
  margin-bottom: 16px !important;
  line-height: 1 !important;
}

.card h3 {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  margin: 0 0 12px !important;
}

.card p {
  opacity: 0.8 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-size: 15px !important;
}

.card a {
  color: #32b8c6 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.card a:hover {
  text-decoration: underline !important;
}



/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr !important;
  }
  
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 16px !important;
  }
  
  .cat-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    gap: 12px !important;
  }
  
  .video-info {
    padding: 10px !important;
  }
  
  .tag {
    font-size: 10px !important;
    padding: 3px 10px !important;
  }
  
  .video-info h4 {
    font-size: 12px !important;
  }
  
  .play-btn {
    width: 48px !important;
    height: 48px !important;
  }
  
  .play-btn span {
    font-size: 16px !important;
  }
}
/* ==================== KONTAKT OVERLAY ==================== */
.vcs-kontakt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.vcs-kontakt-overlay.active {
  opacity: 1;
  visibility: visible;
}

.vcs-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.vcs-overlay-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.vcs-kontakt-overlay.active .vcs-overlay-content {
  transform: scale(1);
}

.vcs-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.vcs-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.vcs-overlay-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  padding: 60px;
}

/* Left Side - Info */
.vcs-contact-info {
  padding-right: 20px;
}

.vcs-badge {
  display: inline-block;
  background: linear-gradient(135deg, #32b8c6, #2da5b2);
  color: #000;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vcs-contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #fff;
}

.vcs-gradient {
  background: linear-gradient(135deg, #32b8c6, #2da5b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vcs-contact-info p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.vcs-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vcs-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vcs-benefits li:last-child {
  border-bottom: none;
}

/* Right Side - Form */
.vcs-contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
}

.vcs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vcs-form-group {
  margin-bottom: 20px;
}

.vcs-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.vcs-form-group input,
.vcs-form-group select,
.vcs-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.2s ease;
}

.vcs-form-group input::placeholder,
.vcs-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.vcs-form-group input:focus,
.vcs-form-group select:focus,
.vcs-form-group textarea:focus {
  outline: none;
  border-color: #32b8c6;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(50, 184, 198, 0.15);
}

.vcs-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 45px;
}

.vcs-form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.vcs-checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 24px;
}

.vcs-checkbox input {
  margin-top: 3px;
  accent-color: #32b8c6;
  cursor: pointer;
}

.vcs-checkbox label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  cursor: pointer;
}

.vcs-checkbox a {
  color: #32b8c6;
  text-decoration: none;
}

.vcs-checkbox a:hover {
  text-decoration: underline;
}

.vcs-submit-btn {
  width: 100%;
  padding: 14px 32px;
  background: linear-gradient(135deg, #32b8c6, #2da5b2);
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(50, 184, 198, 0.4);
}

.vcs-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 184, 198, 0.5);
}

.vcs-success,
.vcs-error {
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.vcs-success {
  background: rgba(50, 184, 198, 0.15);
  color: #32b8c6;
  border: 1px solid rgba(50, 184, 198, 0.3);
}

.vcs-error {
  background: rgba(255, 84, 89, 0.15);
  color: #ff5459;
  border: 1px solid rgba(255, 84, 89, 0.3);
}

/* Trigger Button (Fixed) */
.vcs-contact-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
}

.vcs-trigger-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #32b8c6, #2da5b2);
  color: #000;
  border: none;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(50, 184, 198, 0.5);
  transition: all 0.3s ease;
}

.vcs-trigger-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(50, 184, 198, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .vcs-overlay-inner {
    gap: 40px;
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .vcs-overlay-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 30px;
  }
  
  .vcs-contact-info {
    padding-right: 0;
  }
  
  .vcs-contact-form {
    padding: 30px 24px;
  }
  
  .vcs-form-row {
    grid-template-columns: 1fr;
  }
  
  .vcs-close-btn {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .vcs-overlay-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .vcs-overlay-inner {
    padding: 30px 20px;
  }
  
  .vcs-contact-form {
    padding: 24px 20px;
  }
}
/* ==================== SELECT DROPDOWN FIX ==================== */
.vcs-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  transition: all 0.2s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 45px;
}

/* Placeholder option styling */
.vcs-form-group select option:first-child {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Normal options styling */
.vcs-form-group select option {
  background: #2a2a2a !important;
  color: #fff !important;
  padding: 10px !important;
}

/* Selected option */
.vcs-form-group select option:checked {
  background: #32b8c6 !important;
  color: #000 !important;
}

/* Hide default arrow in some browsers */
.vcs-form-group select::-ms-expand {
  display: none;
}

/* Focus state */
.vcs-form-group select:focus {
  outline: none;
  border-color: #32b8c6;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(50, 184, 198, 0.15);
}

/* ==================== CHECKLIST ICONS FIX ==================== */
.vcs-benefits li svg {
  flex-shrink: 0;
  min-width: 20px;
  height: 20px;
}

.vcs-benefits li svg path {
  stroke: #32b8c6 !important;
  stroke-width: 2.5 !important;
}

/* Alternative: Use text checkmark if SVG doesn't work */
.vcs-benefits li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #32b8c6;
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 12px;
}

/* Hide SVG if using ::before checkmark */
.vcs-benefits li svg {
  display: none;
}

/* ==================== LABEL TEXT COLOR ==================== */
.vcs-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 8px;
}
