/* ===================================
   MODULAR CSS SYSTEM - MAIN STYLESHEET
   =================================== */

/* Import Base Styles - Must be at the top */
@import url('modules/base.css');

/* Import Component Modules - Must be at the top */
@import url('modules/navbar.css');
@import url('modules/footer.css');
@import url('modules/hero.css');
@import url('modules/components.css');

/* ===================================
   ADDITIONAL GLOBAL STYLES
   =================================== */

/* Prevent horizontal scroll and hide scrollbars */
html {
  overflow-x: hidden;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  overflow-x: hidden;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Container overflow fix */
.container,
.container-fluid {
  overflow-x: hidden;
  max-width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.container::-webkit-scrollbar,
.container-fluid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Hide scrollbars on all elements */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Page Header Styles */
.page-header {
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.page-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb Styles */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0.5rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
  color: var(--white);
  font-weight: 600;
}

/* Privacy Content Styles */
.privacy-content {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-soft);
  margin: var(--spacing-2xl) 0;
}

.privacy-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--spacing-lg);
  border: 1px solid var(--light-gray);
}

.privacy-section {
  margin-bottom: var(--spacing-xl);
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  color: var(--primary-color);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.privacy-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.privacy-section h3 {
  color: var(--dark);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.privacy-section p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.privacy-section ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.privacy-section li {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--spacing-xs);
}

.privacy-section .contact-info {
  background: var(--light-gray);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  margin-top: var(--spacing-lg);
}

.privacy-section .contact-info p {
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.privacy-section .contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-section .contact-info a:hover {
  color: var(--secondary-color);
}

/* Section Styles */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-2xl);
  line-height: 1.6;
}

/* Quick Services Section */
.quick-services-section {
  background: var(--gradient-primary);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.quick-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.quick-services-section .container {
  position: relative;
  z-index: 1;
}

/* Services Section */
.services-section {
  padding: var(--spacing-3xl) 0;
  background: var(--white);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  display: block;
}

.form-control {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
  color: var(--gray);
  opacity: 0.7;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

/* Contact Info */
.contact-info {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius);
  height: 100%;
}

.contact-info h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

.contact-info p {
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  opacity: 0.9;
}

.contact-info p i {
  margin-right: var(--spacing-sm);
  width: 20px;
  text-align: center;
  color: var(--white);
}

/* FAQ Styles */
.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.faq-question {
  padding: var(--spacing-lg);
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gray);
  line-height: 1.6;
}

.faq-answer.active {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  max-height: 200px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-gray);
}

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

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--light-gray);
}

.product-content {
  padding: var(--spacing-lg);
}

.product-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.product-description {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.product-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: var(--secondary-color);
}

.product-link i {
  margin-left: var(--spacing-xs);
  transition: transform 0.3s ease;
}

.product-link:hover i {
  transform: translateX(3px);
}

/* About Content */
.about-content {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-soft);
  margin: var(--spacing-2xl) 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.about-stat {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--light-gray);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.about-stat:hover {
  transform: translateY(-3px);
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.about-stat-label {
  font-size: var(--font-size-base);
  color: var(--gray);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form,
  .contact-info {
    margin-bottom: var(--spacing-lg);
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-stat {
    padding: var(--spacing-md);
  }
  
  .about-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .contact-form,
  .contact-info {
    padding: var(--spacing-lg);
  }
}

/* Loading Animation */
.loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.loading::before {
  content: '';
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid var(--white);
  border-radius: 50%;
  animation: loading 1s linear infinite;
}

@keyframes loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-primary);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Print Styles */
@media print {
  .sticky-whatsapp,
  .navbar-custom {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: var(--spacing-lg) 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
} 