/* New Section Styles for RubenK9Guard Website */

/* Contact + Intro Section */
.contact-intro-section,
.contact-form-section {
  padding: 0px 0 30px 0 !important; /* ZERO padding sus pentru gap minim */
  background: transparent !important; /* Use global background */
  margin-top: -5px !important; /* Margin negativ pentru a elimina complet gap-ul */
  overflow: visible !important; /* Prevent scroll issues */
  height: auto !important; /* Natural height */
}

.contact-intro-grid,
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  overflow: visible !important; /* Prevent scroll issues */
  height: auto !important; /* Natural height */
}

.intro-column .intro-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #EDEDED;
  margin-bottom: 24px;
  line-height: 1.2;
}

.intro-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #EDEDED;
  margin: 0;
}

.contact-form-column {
  display: flex;
  justify-content: center;
}

.contact-form-card {
  background: #000000;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
}

.contact-form-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #EDEDED;
  margin-bottom: 24px;
  text-align: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form .form-field {
  margin-bottom: 16px;
}

.contact-form .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #EDEDED;
  margin-bottom: 6px;
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0F1113;
  border: 1px solid #22262C;
  border-radius: 4px;
  color: #EDEDED;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: #6D737C;
}

.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: #EDEDED;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: #EDEDED;
  color: #000000;
  border: none;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.contact-submit-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* Services Section Updates */
/* Services section styles moved to theme.css - DO NOT DUPLICATE */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #14161A;
  border: 1px solid #22262C;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.2s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: #2E333A;
  transform: translateY(-2px);
}

.service-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #EDEDED;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.service-content {
  flex: 1;
}

.service-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #EDEDED;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.service-description {
  font-size: 0.875rem;
  color: #EDEDED;
  opacity: 0.8;
  margin: 0;
  line-height: 1.4;
}

/* Industries We Serve Section */
.industries-section {
  padding: 5px 0 30px 0 !important; /* Gap mic sus, padding normal jos */
  background: transparent !important; /* Use global background */
}

.industries-section .section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #EDEDED;
  text-align: center;
  margin-bottom: 32px;
}

.industries-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.industry-pill {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #22262C;
  border-radius: 20px;
  color: #EDEDED;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: default;
}

.industry-pill:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: #2E333A;
}

/* Contact Info Card */
.contact-info-card {
  grid-column: span 1;
  background: transparent;
  border: none;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-content {
  text-align: center;
  max-width: 280px;
}

.contact-info-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #EDEDED;
  margin: 0 0 20px 0;
  opacity: 0.9;
}

.contact-phone {
  color: #EDEDED;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.contact-phone:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-info-button {
  padding: 10px 20px;
  background: #EDEDED;
  color: #000000;
  border: none;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-info-button:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* About Section Updates */
.about-section {
  padding: 10px 0 !important; /* Spațiu foarte mic pentru About Us */
  background: transparent !important; /* Fundal transparent */
}

.about-section .section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #EDEDED;
  text-align: center;
  margin-bottom: 8px !important; /* Spațiu foarte mic sub titlu */
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-content {
  margin-bottom: 32px;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #EDEDED;
  margin: 0 auto;
  max-width: 800px;
}

.trust-text {
  font-size: 0.95rem !important;
  color: #bfc4ca !important;
  font-style: italic;
  margin-top: 15px !important;
  opacity: 0.9;
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.stat-block {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f2023 100%);
  border: 2px solid rgba(191, 196, 202, 0.25);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-block:hover {
  transform: translateY(-5px);
  border-color: rgba(191, 196, 202, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.95rem;
  color: #bfc4ca;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Band Section */
.cta-band-section {
  padding: 5px 0 30px 0 !important; /* Gap mic sus, padding normal jos */
  background: transparent !important; /* Use global background */
  position: relative;
  overflow: hidden;
}

.cta-band-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #EDEDED;
  margin-bottom: 24px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #EDEDED;
  color: #000000;
  border: none;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.cta-button::after {
  content: '→';
  font-size: 1rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .contact-intro-section {
    padding: 5px 0 25px 0 !important; /* Padding foarte mic sus pe tablet */
  }
  
  .services-section {
    padding: 5px 0 25px 0 !important; /* Gap mic pe tablet */
  }
  
  .about-section {
    padding: 8px 0 !important; /* Spațiu foarte mic pe tablet */
  }
  
  .contact-intro-grid {
    gap: 32px;
  }
  
  .intro-column .intro-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    gap: 32px;
  }
  
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .stat-block {
    padding: 20px 12px;
  }
  
  .contact-info-content {
    max-width: 240px;
  }
  
  .contact-info-text {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-intro-section,
  .contact-form-section {
    padding: 5px 0 20px 0 !important; /* Padding foarte mic sus pe mobile */
    overflow: visible !important; /* Prevent double scroll */
    height: auto !important; /* Ensure natural height */
    display: block !important; /* Ensure section is visible */
  }
  
  .services-section {
    padding: 5px 0 20px 0 !important; /* Gap mic pe mobile */
  }
  
  .about-section {
    padding: 5px 0 !important; /* Spațiu foarte mic pe mobile */
  }
  
  .about-section .section-title {
    margin-bottom: 5px !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  .contact-intro-grid,
  .contact-form-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
    overflow: visible !important; /* Prevent double scroll */
    height: auto !important; /* Ensure natural height */
    display: grid !important; /* Ensure grid is visible */
  }
  
  .intro-column .intro-title {
    font-size: 1.75rem;
  }
  
  .contact-form-column {
    overflow: visible !important; /* Prevent double scroll */
    height: auto !important; /* Ensure natural height */
  }
  
  .contact-form-card {
    overflow: visible !important; /* Prevent double scroll */
    height: auto !important; /* Ensure natural height */
    max-height: none !important; /* Remove any height constraints */
  }
  
  .contact-form {
    overflow: visible !important; /* Prevent double scroll */
    height: auto !important; /* Ensure natural height */
    max-height: none !important; /* Remove any height constraints */
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-grid {
    gap: 32px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 300px;
  }
  
  .contact-info-content {
    max-width: 260px;
  }
  
  .contact-info-text {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  
  .cta-text {
    font-size: 1.5rem;
  }
  
  .industries-pills {
    gap: 8px;
  }
  
  .industry-pill {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Animation Enhancements */
@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .stat-block,
  .industry-pill {
    /* Animation disabled to fix flickering */
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  
  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3) { animation-delay: 0.3s; }
  .service-card:nth-child(4) { animation-delay: 0.4s; }
  .service-card:nth-child(5) { animation-delay: 0.5s; }
  .service-card:nth-child(6) { animation-delay: 0.6s; }
  
  /* fadeInUp animation disabled */
}
/* Footer Updates - FINAL VERSION */
.footer-container,
.site-footer {
  background: transparent !important; /* Use global background */
  border-top: 1px solid #22262C !important;
  padding: 32px 0 !important;
  margin-top: 40px !important;
}

.footer-line {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.footer-logo {
  height: 60px !important;
  width: auto !important;
  max-width: 200px !important;
}

.footer-center {
  text-align: center !important;
  flex: 1 !important;
}

.footer-trust {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-style: italic !important;
  font-weight: 700 !important;
  margin: 0 0 8px 0 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  display: block !important;
  background: red !important; /* TEST VIZUAL - dacă nu vezi roșu, cache problem! */
  padding: 10px !important;
}

.footer-copyright {
  color: #ffffff !important;
  font-size: 0.875rem !important;
  margin: 0 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.footer-contact {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.875rem !important;
  color: #ffffff !important;
  flex-wrap: wrap !important;
}

.footer-contact span {
  color: #ffffff !important;
  opacity: 0.9 !important;
}

.footer-facebook {
  color: #1877F2 !important;
  background: rgba(24, 119, 242, 0.2) !important;
  padding: 8px 10px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer-facebook:hover {
  background: #1877F2 !important;
  color: white !important;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.5) !important;
  transform: scale(1.05) !important;
}

.footer-contact svg {
  flex-shrink: 0 !important;
}

@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  
  .footer-contact {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-contact-separator {
    display: none;
  }
  
  .footer-contact-item {
    display: block;
    margin: 4px 0;
  }
}

/* Mobile Top Info Bar - Icons Only */
@media screen and (max-width: 768px) {
  .top-info-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
  }
  
  .top-info-left {
    display: flex;
    gap: 20px;
  }
  
  .top-info-right {
    display: flex;
    gap: 20px;
  }
  
  .top-info-text {
    display: none;
  }
  
  .top-info-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
  }
  
  .top-info-item a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
  }
}
/*
 WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
    display: none !important; /* Hide floating WhatsApp button on mobile */
  }
}

/* Extra small screens - WhatsApp button remains hidden */
@media screen and (max-width: 480px) {
  .whatsapp-float {
    display: none !important; /* Ensure it stays hidden on extra small screens */
  }
}