
/* =================================================================
   CONTACT PAGE - TECHNO DESIGN
   ================================================================= */
.contact-page-wrapper {
  padding-bottom: 80px;
}

.contact-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.contact-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-hero .title-line {
  display: block;
}

.contact-hero .gradient {
  background: linear-gradient(135deg, #ff0d0d 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.contact-main {
  padding: 40px 0;
}


.contact-glass-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.glass-panel {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.glass-header {
  margin-bottom: 30px;
}

.glass-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.glass-title.small {
  font-size: 1.4rem;
}

.glass-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* Form Styles */
.modern-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  margin-bottom: 25px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-group .required {
  color: var(--accent);
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.input-group input:focus,
.input-group textarea:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 13, 13, 0.1);
}

.btn-glow {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 13, 13, 0.3);
}

.btn-glow .arrow {
  transition: transform 0.3s ease;
}

.btn-glow:hover .arrow {
  transform: translateX(5px);
}

.btn-block {
    width: 100%;
}

/* Button Primary Styles */
.btn-primary {
  background: linear-gradient(135deg, #ff0d0d 0%, #cc0000 100%);
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 13, 13, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff3333 0%, #ff0d0d 100%);
  box-shadow: 0 6px 20px rgba(255, 13, 13, 0.4);
}


/* Alerts */
.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* Info List */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 13, 13, 0.1);
  border-radius: 10px;
  color: var(--accent);
  flex-shrink: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* Social Utils */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.social-grid-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none !important;
}

.social-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  transform: translateY(-3px);
}

.social-btn:hover svg {
  transform: scale(1.2);
}

.social-btn.facebook:hover { color: #1877F2 !important; border-color: rgba(24, 119, 242, 0.3); background: rgba(24, 119, 242, 0.1); }
.social-btn.twitter:hover { color: #1DA1F2 !important; border-color: rgba(29, 161, 242, 0.3); background: rgba(29, 161, 242, 0.1); }
.social-btn.instagram:hover { color: #E1306C !important; border-color: rgba(225, 48, 108, 0.3); background: rgba(225, 48, 108, 0.1); }
.social-btn.youtube:hover { color: #FF0000 !important; border-color: rgba(255, 0, 0, 0.3); background: rgba(255, 0, 0, 0.1); }

/* Techno Badge */
.hero-badge-techno {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-badge-techno .badge-icon {
  display: flex;
  color: var(--accent);
}

.hero-badge-techno .badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-badge-techno .badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Light Theme Support */
body.light-theme .contact-hero .hero-subtitle { color: rgba(0,0,0,0.6); }
body.light-theme .glass-panel {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
body.light-theme .glass-title { color: #000 !important; }
body.light-theme .glass-title.small { color: #222 !important; }
body.light-theme .glass-desc { color: rgba(0,0,0,0.5); }
body.light-theme .input-group label { color: rgba(0,0,0,0.7); }
body.light-theme .input-group input,
body.light-theme .input-group textarea {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.1);
    color: #000;
}
body.light-theme .input-group input:focus,
body.light-theme .input-group textarea:focus {
    background: #fff;
    border-color: var(--accent);
}
body.light-theme .info-item {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.05);
}
body.light-theme .info-value { color: #000; }
body.light-theme .info-label { color: rgba(0,0,0,0.5); }
body.light-theme .social-btn {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.05);
    color: rgba(0,0,0,0.6);
}
body.light-theme .social-btn:hover { color: #000 !important; }
body.light-theme .contact-hero .hero-title { color: #000 !important; }
body.light-theme .hero-badge-techno {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.1);
}
body.light-theme .hero-badge-techno .badge-text { color: #333; }

/* Responsive */
@media (max-width: 900px) {
  .contact-glass-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero .hero-title {
    font-size: 2.5rem;
  }
  .modern-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .glass-panel {
    padding: 25px;
  }
}
