/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #7b2cbf;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #7b2cbf;
  border: 2px solid #7b2cbf;
}

.btn-secondary:hover {
  background-color: #7b2cbf;
  color: white;
}

/* Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #7b2cbf;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #7b2cbf;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding-left: 32px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Page Hero */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #7b2cbf 0%, #0056b3 100%);
  color: white;
  text-align: center;
}

.page-hero-content img {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

/* Grids */
.company-grid,
.benefits-grid,
.services-grid,
.achievements-grid,
.testimonials-grid,
.values-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.company-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.achievements-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.company-item,
.benefit-item,
.service-card,
.achievement-item,
.testimonial-item,
.value-item {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-item:hover,
.benefit-item:hover,
.service-card:hover,
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-item img,
.benefit-item img,
.value-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: #7b2cbf;
  text-decoration: none;
  font-weight: 500;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7b2cbf;
  margin: 1rem 0;
}

.testimonial-item {
  background-color: white;
  border: 1px solid #e9ecef;
  position: relative;
}

.testimonial-item img {
  width: 30px;
  height: 30px;
  margin-bottom: 1rem;
}

.testimonial-author {
  margin-top: 1.5rem;
  text-align: left;
}

.testimonial-author strong {
  color: #333;
  display: block;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background-color: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item img {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
}

.contact-item a {
  color: #7b2cbf;
  text-decoration: none;
}

/* Forms */
.consultation-form,
.newsletter-form {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7b2cbf;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-group a {
  color: #7b2cbf;
}

/* Newsletter */
.newsletter {
  background-color: #7b2cbf;
  color: white;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.newsletter-text {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.newsletter-text img {
  width: 50px;
  height: 50px;
}

.newsletter-text h3 {
  color: white;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  background: none;
  padding: 0;
  box-shadow: none;
}

.newsletter-form input {
  min-width: 300px;
  border: 2px solid white;
  background: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: white;
  padding: 1.5rem 0;
  z-index: 1001;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  background-color: #7b2cbf;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.cookie-btn:hover {
  background-color: #0056b3;
}

.cookie-necessary {
  background-color: #6c757d;
}

.cookie-settings {
  background-color: transparent;
  border: 2px solid white;
}

/* Footer */
.footer {
  background-color: #000;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
  color: #7b2cbf;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a img {
  width: 30px;
  height: 30px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: rgba(255, 255, 255, 0.6);
}

/* Services Page Specific */
.services-detailed .service-detailed {
  margin-bottom: 4rem;
  background-color: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-header img {
  width: 80px;
  height: 80px;
}

.rating-stars .star {
  color: #ffc107;
  font-size: 1.2rem;
}

.rating-text {
  color: #666;
  margin-left: 1rem;
}

.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.service-description ul {
  list-style: none;
  padding-left: 0;
}

.service-description ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.service-description ul li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-pricing {
  display: flex;
  gap: 1rem;
}

.price-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.price-card.featured {
  background-color: #7b2cbf;
  color: white;
  border-color: #7b2cbf;
  transform: scale(1.05);
}
.price-card.featured p{
  color: #fff;
}

.price-card h4 {
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #7b2cbf;
  margin-bottom: 1rem;
}

.price-card.featured .price {
  color: white;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

.price-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.advantage-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you {
  padding: 120px 0 80px;
  text-align: center;
}

.thank-you-content img {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

.thank-you-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.info-item {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.info-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.next-steps {
  margin: 4rem 0;
  text-align: left;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #7b2cbf;
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.emergency-contact {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #7b2cbf;
  text-decoration: none;
  margin: 1rem 0;
}

.phone-link img {
  width: 24px;
  height: 24px;
}

.office-hours {
  color: #666;
  font-size: 0.9rem;
}

.thank-you-actions {
  margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: #666;
  margin-top: 1.5rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

/* Process Steps */
.process {
  background-color: #f8f9fa;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 25px;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background-color: #7b2cbf;
}

.guarantees {
  background-color: #7b2cbf;
  color: white;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.guarantee-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
}

.guarantee-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.guarantee-item h3 {
  color: white;
}

.guarantee-item p {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    justify-content: center;
  }

  .newsletter-form input {
    min-width: 250px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .achievements-grid,
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-content {
    grid-template-columns: 1fr;
  }

  .service-pricing {
    flex-direction: column;
  }

  .price-card.featured {
    transform: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step:not(:last-child):after {
    display: none;
  }

  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-info,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie Modal Styles */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.cookie-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: #333;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #f5f5f5;
  color: #333;
}

.cookie-modal-body {
  padding: 20px;
}

.cookie-modal-body p {
  margin-bottom: 20px;
  color: #666;
  font-size: 0.95rem;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fafafa;
}

.cookie-category-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.cookie-category-header input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #7b2cbf;
  cursor: pointer;
}

.cookie-category-header input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-category-header label {
  flex: 1;
  cursor: pointer;
  color: #333;
  line-height: 1.4;
}

.cookie-category-header label strong {
  font-weight: 600;
  color: #7b2cbf;
}

.cookie-description {
  font-size: 0.85rem;
  color: #666;
  margin-left: 28px;
  margin-bottom: 0;
  line-height: 1.4;
}

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  background-color: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

.cookie-modal-footer .cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-save-settings {
  background-color: #6c757d;
  color: white;
}

.cookie-save-settings:hover {
  background-color: #5a6268;
}

.cookie-accept-all-modal {
  background-color: #7b2cbf;
  color: white;
}

.cookie-accept-all-modal:hover {
  background-color: #0056b3;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile responsive for cookie modal */
@media (max-width: 768px) {
  .cookie-modal-content {
    width: 95%;
    margin: 20px;
    max-height: 90vh;
  }

  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 15px;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-modal-footer .cookie-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .cookie-modal-footer .cookie-btn:last-child {
    margin-bottom: 0;
  }

  .cookie-description {
    margin-left: 28px;
    font-size: 0.8rem;
  }
}

/* Footer Cookie Settings Button */
.footer-cookie-settings {
  background: transparent;
  border: none;
  color: #7b2cbf;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  padding: 0;
  margin-left: 15px;
  font-family: inherit;
  transition: color 0.3s ease;
}

.footer-cookie-settings:hover {
  color: #0056b3;
}

/* Responsive footer cookie settings */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-cookie-settings {
    margin-left: 0;
    margin-top: 10px;
  }
}

.nav-menu.active {
  position: absolute;
  top: 80px;
  left: 0px;
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background-color: #fff;
  z-index: 1000;
}
