/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2980b9;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #3498db;
  padding: 12px 30px;
  border: 2px solid #3498db;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #3498db;
  color: white;
  transform: translateY(-2px);
}

/* Age Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.age-modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 500px;
  width: 90%;
  margin: 20px;
}

.age-modal-content h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.age-modal-content p {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-buttons .btn-accept {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.age-buttons .btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.age-buttons .btn-decline {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.age-buttons .btn-decline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 20px;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.cookie-text p {
  color: #ecf0f1;
  margin: 0;
}

.cookie-text a {
  color: #3498db;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-accept {
  background: #27ae60;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-accept:hover {
  background: #2ecc71;
}

.btn-decline {
  background: transparent;
  color: white;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-decline:hover {
  background: white;
  color: #2c3e50;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand .logo {
  font-family: "Orbitron", monospace;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3498db, #2980b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

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

.nav-menu a {
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #3498db;
}

/* Mobile Navigation Toggle (CSS-only) */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.nav-toggle-label span {
  display: block;
  width: 100%;
  height: 3px;
  background: #2c3e50;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}

.nav-toggle-label span:nth-child(1) {
  top: 0;
}

.nav-toggle-label span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-label span:nth-child(3) {
  bottom: 0;
}

/* Hamburger animation when checked */
.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1.5px;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1.5px;
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.8) 0%,
    rgba(118, 75, 162, 0.8) 50%,
    rgba(240, 147, 251, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-primary:hover {
  background: white;
  color: #667eea;
}

.hero-buttons .btn-secondary {
  border-color: white;
  color: white;
}

.hero-buttons .btn-secondary:hover {
  background: white;
  color: #667eea;
}

/* Image Placeholders */
.image-placeholder {
  background: linear-gradient(135deg, #bdc3c7, #95a5a6);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.image-placeholder[data-ratio="16:9"] {
  aspect-ratio: 16/9;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.image-placeholder span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Section Styles */
section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3498db, #2980b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-item h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

/* Security Section */
.security-section {
  background: white;
}

/* Security content styles moved to image section */

.security-text h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.security-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.certifications {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  padding: 5rem 0;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.certifications::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
  opacity: 0.3;
}

.certifications .container {
  position: relative;
  z-index: 2;
}

.certifications h3 {
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.certifications::after {
  content: "Tecnologia de Confiança Global";
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cert-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.cert-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.cert-item:hover::before {
  left: 100%;
}

.cert-item:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.cert-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  color: #667eea;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.cert-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-item:hover .cert-icon::after {
  opacity: 1;
}

.cert-item:hover .cert-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.cert-item h4 {
  color: white;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.cert-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Reviews Section - Updated styles for background image */
.reviews-section {
  color: #2c3e50;
}

.reviews-section .section-header h2 {
  color: #2c3e50;
  background: linear-gradient(135deg, #3498db, #2980b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-section .section-header p {
  color: #5a6c7d;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(52, 152, 219, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.reviewer-info span {
  color: #7f8c8d;
  font-size: 0.9rem;
  font-weight: 500;
}

.rating {
  color: #f39c12;
  font-size: 0.9rem;
}

.rating i {
  color: #f39c12;
  margin-right: 0.2rem;
  font-size: 1.1rem;
}

.review-item p {
  color: #34495e;
  line-height: 1.7;
  font-style: italic;
  font-size: 1rem;
}

/* FAQ Section */
.faq-section {
  background: white;
}

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

.faq-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #3498db;
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.faq-item p {
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3498db, transparent);
}

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

.contact-info {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(52, 152, 219, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(52, 152, 219, 0.03);
  border-radius: 15px;
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.15);
}

.info-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.info-item h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.info-item p {
  color: #5a6c7d;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* Form Styles */
.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

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

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

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

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

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

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

.footer-section ul li a:hover {
  color: #3498db;
}

.footer-section i {
  margin-right: 0.5rem;
  color: #3498db;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* CTA Button in Navigation */
.nav-cta {
  display: none;
}

.btn-cta {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Mobile Navigation - CSS Only (900px breakpoint) */
@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  /* Prevent horizontal scroll issues */
  .header {
    overflow: visible;
    z-index: 10000;
  }

  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .nav-toggle-label {
    display: flex;
    z-index: 10001;
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.95) 0%,
      rgba(118, 75, 162, 0.95) 50%,
      rgba(240, 147, 251, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    z-index: 9999;
    transition: left 0.4s ease, opacity 0.4s ease, visibility 0.4s;
    list-style: none;
    margin: 0;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
  }

  .nav-toggle:checked ~ .nav-menu {
    left: 0;
    visibility: visible;
    opacity: 1;
    transition: left 0.4s ease, opacity 0.4s ease, visibility 0s;
  }

  /* Prevent body scroll when menu is open */
  .nav-toggle:checked ~ .nav-menu + * {
    overflow: hidden;
  }

  /* Block body scroll completely when burger menu is open */
  body:has(.nav-toggle:checked) {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Ensure menu covers everything */
  .nav-toggle:checked {
    position: fixed;
    z-index: 10002;
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav-toggle:checked ~ .nav-menu li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Smooth hide animation for menu items */
  .nav-menu:not(.nav-toggle:checked ~ .nav-menu) li {
    transition: all 0.2s ease;
  }

  .nav-toggle:checked ~ .nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-toggle:checked ~ .nav-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-toggle:checked ~ .nav-menu li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-toggle:checked ~ .nav-menu li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-toggle:checked ~ .nav-menu li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-toggle:checked ~ .nav-menu li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .nav-toggle:checked ~ .nav-menu li:nth-child(7) {
    transition-delay: 0.7s;
  }

  .nav-menu a {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-cta {
    display: block;
    margin-top: 1rem;
  }

  .btn-cta {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea !important;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    text-shadow: none;
    font-weight: 700;
  }

  .btn-cta:hover {
    background: white;
    color: #667eea !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
}

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

.cookie-buttons {
  justify-content: center;
}

.section-header h2 {
  font-size: 2rem;
}

h1 {
  font-size: 2rem;
}

.container {
  padding: 0 15px;
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .service-item,
  .cert-item,
  .review-item {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .info-item {
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(52, 152, 219, 0.1);
  }

  .info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #2c3e50;
    font-weight: 600;
  }

  .info-item p {
    font-size: 0.85rem;
    color: #5a6c7d;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 0.8rem;
  }
}

/* =============================================
   IMAGE STYLES
   ============================================= */

/* Hero Image Styles - Removed (now using background image) */

/* About Image Styles */
.about-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.about-image-container:hover .about-bg-image {
  transform: scale(1.05);
}

/* Security Section Image Styles */
.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-image-container {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.security-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.security-image-container:hover .security-bg-image {
  transform: scale(1.05);
}

/* CTA Section Background Image */
.cta-section {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.8) 0%,
    rgba(41, 128, 185, 0.9) 100%
  );
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

/* Reviews Section Background Image */
.reviews-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.reviews-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.reviews-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.reviews-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 249, 250, 0.98) 100%
  );
  backdrop-filter: blur(5px);
  z-index: 2;
}

.reviews-section .container {
  position: relative;
  z-index: 3;
}

/* FAQ Section with Image */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 100px;
}

.faq-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.faq-image-container:hover .faq-bg-image {
  transform: scale(1.05);
}

.faq-text {
  width: 100%;
}

/* Service Items with Background Images Enhancement */
.service-item[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: white !important;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item[style*="background-image"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  border-radius: 15px;
  z-index: 1;
}

.service-item[style*="background-image"] > * {
  position: relative;
  z-index: 2;
}

.service-item[style*="background-image"] h3,
.service-item[style*="background-image"] p {
  color: white !important;
}

.service-item[style*="background-image"] .service-icon {
  color: white;
}

.service-item[style*="background-image"] .service-icon i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Tablet and smaller responsive adjustments */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .certifications {
    padding: 4rem 0;
    margin-top: 1rem;
  }

  .certifications h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .certifications::after {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .cert-item {
    padding: 2.5rem 1.5rem;
  }

  .cert-icon {
    width: 75px;
    height: 75px;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .cert-item h4 {
    font-size: 1.2rem;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .info-item {
    padding: 1rem;
    margin-bottom: 1rem;
    flex-direction: row;
    text-align: left;
  }

  .info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    word-wrap: break-word;
    hyphens: auto;
  }

  .info-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .about-image-container,
  .security-image-container,
  .faq-image-container {
    height: 250px;
  }

  .security-content,
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-item[style*="background-image"] {
    min-height: 250px;
  }

  .reviews-bg-image {
    opacity: 0.2;
  }

  .age-modal-content {
    padding: 30px 20px;
    margin: 10px;
  }

  .age-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .age-modal-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .age-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .age-buttons .btn-accept,
  .age-buttons .btn-decline {
    width: 100%;
    max-width: 200px;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    background-attachment: scroll;
    padding: 100px 0 60px;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .about-image-container,
  .security-image-container,
  .faq-image-container {
    height: 200px;
  }

  .service-item[style*="background-image"] {
    min-height: 200px;
  }

  .cta-section {
    background-attachment: scroll;
  }

  .certifications {
    padding: 3rem 0;
  }

  .certifications h3 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }

  .certifications::after {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .cert-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
    grid-template-columns: 1fr;
  }

  .cert-item {
    padding: 2rem 1.2rem;
  }

  .cert-item:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .cert-icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .cert-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .cert-item p {
    font-size: 0.95rem;
  }

  /* Contact Section Mobile Optimization */
  .contact-content {
    gap: 1.5rem;
  }

  .contact-info {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .contact-info .info-item {
    padding: 0.7rem;
    margin-bottom: 0.7rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-info .info-item h3 {
    font-size: 0.95rem;
    margin: 0.5rem 0 0.3rem;
    text-align: center;
  }

  .contact-info .info-item p {
    font-size: 0.8rem;
    text-align: center;
    max-width: 100%;
    line-height: 1.4;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  .contact-info .info-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }

  .contact-form {
    padding: 1.2rem;
  }

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

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.85rem;
    padding: 0.7rem;
    border-radius: 8px;
  }

  .btn-submit {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}
