/* ==================== */
/* === Variables CSS === */
/* ==================== */
:root {
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --primary-light: rgba(0, 102, 255, 0.1);
  --secondary: #ff3366;
  --secondary-dark: #e6003d;
  --secondary-light: rgba(255, 51, 102, 0.1);
  --accent: #00d4ff;
  --dark: #0a0b14;
  --dark-card: #1a1b2e;
  --light: #ffffff;
  --gray: #64748b;
  --light-gray: #f1f5f9;
  --border: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.05);
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --gradient-secondary: linear-gradient(135deg, #ff3366 0%, #ff6b3d 100%);
  --gradient-dark: linear-gradient(135deg, #0a0b14 0%, #1a1b2e 100%);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.3);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 51, 102, 0.3);
  color: white;
}

section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--gray);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.section-icon {
  font-size: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: block;
  text-align: center;
}

/* ===================== */
/* === Header Styles === */
/* ===================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  position: relative;
}

.logo::before {
  content: '';
  font-size: 2rem;
  margin-right: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s infinite;
}
 @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }
.logo img {
  height: 40px;
  margin-right: 12px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a i {
  font-size: 1rem;
  opacity: 0.8;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  bottom: 0;
  left: 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* ===================== */
/* === Hero Section === */
/* ===================== */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(0, 212, 255, 0.8) 100%);
  color: white;
}

.hero::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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ========================= */
/* === Floating Elements === */
/* ========================= */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* ===================== */
/* === About Section === */
/* ===================== */
.about {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.about-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.1;
  z-index: 1;
}

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
}

.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  font-size: 1.8rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 30px;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* ======================= */
/* === Services Section === */
/* ======================= */
.services {
  background: var(--dark);
  color: white;
}

.services .section-title h2 {
  background: linear-gradient(135deg, #ffffff 0%, #64748b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.service-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
  filter: brightness(1);
}

.service-content {
  padding: 40px;
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: white;
}

.service-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ================== */
/* === FAQ Section === */
/* ================== */
.faq {
  background: var(--light-gray);
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--dark);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-answer p {
  padding: 0 0 24px;
  color: var(--gray);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ====================== */
/* === Contact Section === */
/* ====================== */
.contact {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 32px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.contact-item:hover {
  transform: translateX(8px);
  background: var(--primary-light);
}

.contact-icon {
  font-size: 1.5rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 24px;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-item p {
  color: var(--gray);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--light-gray);
  color: var(--dark);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a i {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
}

.social-links a:hover {
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.contact-form {
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.4s ease;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
/* ====================== */
/* === Exit Popup === */
/* ====================== */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.exit-popup.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup-content {
  background: white;
  padding: 40px;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.exit-popup.active .exit-popup-content {
  transform: translateY(0);
}

.exit-popup h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.exit-popup p {
  margin-bottom: 24px;
  color: var(--gray);
}

.exit-popup input {
  width: 100%;
  padding: 16px;
  margin-bottom: 16px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
}

/* ================= */
/* === Footer === */
/* ================= */
footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: white;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links a:hover {
  color: white;
  transform: translateX(8px);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Inter', sans-serif;
}

.newsletter-form button {
  padding: 0 20px;
  border-radius: 0 8px 8px 0;
  white-space: nowrap;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.legal-links {
      margin-top: 15px;
      font-size: 13px;
    }

    .legal-links a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .legal-links a:hover {
      color: var(--primary);
    }


/* ====================== */
/* === Exit Popup === */
/* ====================== */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.exit-popup.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup-content {
  background: white;
  padding: 40px;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.exit-popup.active .exit-popup-content {
  transform: translateY(0);
}

.exit-popup h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.exit-popup p {
  margin-bottom: 24px;
  color: var(--gray);
}

.exit-popup input {
  width: 100%;
  padding: 16px;
  margin-bottom: 16px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
}



/* ============================ */
/* === WhatsApp Float Button === */
/* ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  animation: none;
}
    .legal-links {
      margin-top: 15px;
      font-size: 13px;
    }

    .legal-links a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .legal-links a:hover {
      color: var(--primary);
    }

    /* Cookie Consent Popup */
    .cookie-popup {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      color: white;
      padding: 30px;
      z-index: 10000;
      transform: translateY(100%);
      transition: transform 0.4s ease;
      border-top: 3px solid var(--primary);
    }

    .cookie-popup.show {
      transform: translateY(0);
    }

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

    .cookie-text {
      flex: 1;
    }

    .cookie-text h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .cookie-text p {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 15px;
    }

    .cookie-text a {
      color: var(--accent);
      text-decoration: underline;
    }

    .cookie-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .cookie-btn {
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .cookie-btn.accept {
      background: var(--gradient-primary);
      color: white;
    }

    .cookie-btn.accept:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-glow);
    }

    .cookie-btn.decline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .cookie-btn.decline:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .cookie-btn.customize {
      background: var(--gradient-secondary);
      color: white;
    }

    .cookie-btn.customize:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 40px rgba(255, 51, 102, 0.3);
    }

    /* Cookie Preferences Modal */
    .cookie-preferences {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 10001;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .cookie-preferences.show {
      opacity: 1;
      visibility: visible;
    }

    .preferences-modal {
      background: white;
      border-radius: 16px;
      max-width: 600px;
      width: 90%;
      max-height: 80vh;
      overflow-y: auto;
      position: relative;
      box-shadow: var(--shadow-strong);
    }

    .preferences-header {
      padding: 30px;
      border-bottom: 1px solid var(--light-gray);
    }

    .preferences-header h3 {
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .close-preferences {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--gray);
    }

    .preferences-body {
      padding: 30px;
    }

    .cookie-category {
      margin-bottom: 30px;
      padding: 20px;
      border: 1px solid var(--light-gray);
      border-radius: 12px;
    }

    .category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .category-header h4 {
      font-size: 1.2rem;
      color: var(--dark);
    }

    .toggle-switch {
      position: relative;
      width: 50px;
      height: 24px;
      background: #ccc;
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .toggle-switch.active {
      background: var(--primary);
    }

    .toggle-switch::after {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 20px;
      height: 20px;
      background: white;
      border-radius: 50%;
      transition: transform 0.3s;
    }

    .toggle-switch.active::after {
      transform: translateX(26px);
    }

    .category-description {
      color: var(--gray);
      font-size: 0.9rem;
    }

    .preferences-footer {
      padding: 30px;
      border-top: 1px solid var(--light-gray);
      display: flex;
      gap: 15px;
      justify-content: flex-end;
    }

/* ======================== */
/* === Responsive Styles === */
/* ======================== */
@media (max-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 24px;
  }
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 80px 0;
  }
  
  .about-img img {
    height: 300px;
  }
  
  .contact-info,
  .contact-form {
    padding: 32px;
  }
  
  .exit-popup-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .service-content {
    padding: 24px;
  }
  
  .contact-info,
  .contact-form {
    padding: 24px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    border-radius: 8px;
    padding: 12px;
  }
}

/* ====================== */
/* === Sector Grid === */
/* ====================== */
.sectors {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.sector-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.sector-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(0, 102, 255, 0.3);
}

.sector-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid var(--primary-light);
}

.sector-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.sector-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.sector-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sector-tags span {
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ====================== */
/* === Cookie Consent === */
/* ====================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  font-family: Arial, sans-serif;
}

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}

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

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

.cookie-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-btn.accept {
  background: #27ae60;
  color: white;
}

.cookie-btn.reject {
  background: #e74c3c;
  color: white;
}

.cookie-btn.configure {
  background: #f39c12;
  color: white;
}

.cookie-btn.save {
  background: #3498db;
  color: white;
  margin-top: 15px;
}

.cookie-settings {
  max-width: 1200px;
  margin: 15px auto 0;
  padding: 15px;
  background: #34495e;
  border-radius: 4px;
}

.cookie-option {
  margin: 10px 0;
}

.cookie-option input {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    padding-right: 0;
    margin-bottom: 15px;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}