/* ===================================
   CRISP GEAR - TECH FUTURISTIC STYLES
   Design Style: Tech Futuristic
   =================================== */

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E8E8E8;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0A0E27 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(232, 147, 92, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #C0C0C0;
}

a {
  color: #E8935C;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FF6B35;
  text-shadow: 0 0 10px rgba(232, 147, 92, 0.5);
}

ul {
  list-style: none;
}

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

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #E8935C 0%, #FF6B35 100%);
  color: #FFFFFF;
  border-color: #E8935C;
  box-shadow: 0 0 20px rgba(232, 147, 92, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF6B35 0%, #E8935C 100%);
  box-shadow: 0 0 30px rgba(232, 147, 92, 0.6), 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #E8935C;
  border: 2px solid #E8935C;
  box-shadow: 0 0 15px rgba(232, 147, 92, 0.2);
}

.btn-secondary:hover {
  background: rgba(232, 147, 92, 0.1);
  border-color: #FF6B35;
  color: #FF6B35;
  box-shadow: 0 0 25px rgba(232, 147, 92, 0.4);
  transform: translateY(-2px);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 147, 92, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(232, 147, 92, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(232, 147, 92, 0.5));
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #E8E8E8;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8935C, #FF6B35);
  transition: width 0.3s ease;
}

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

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #E8935C, #FF6B35);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(232, 147, 92, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(232, 147, 92, 0.6), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
  z-index: 1002;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 2px solid rgba(232, 147, 92, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E8935C;
  color: #E8935C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(232, 147, 92, 0.1);
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(232, 147, 92, 0.4);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 20px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #E8E8E8;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(232, 147, 92, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #E8935C;
  background: rgba(232, 147, 92, 0.1);
  padding-left: 30px;
  box-shadow: inset 4px 0 0 #E8935C;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border-bottom: 2px solid rgba(232, 147, 92, 0.3);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 147, 92, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF, #E8935C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 20px rgba(232, 147, 92, 0.3); }
  50% { text-shadow: 0 0 40px rgba(232, 147, 92, 0.6); }
}

.hero-subheadline {
  font-size: 20px;
  color: #C0C0C0;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

.trust-badges span {
  font-size: 14px;
  color: #A0A0A0;
  padding: 8px 20px;
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 20px;
  background: rgba(232, 147, 92, 0.05);
  box-shadow: 0 0 10px rgba(232, 147, 92, 0.1);
}

.hero-internal {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
  border-bottom: 2px solid rgba(232, 147, 92, 0.3);
}

.hero-internal h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #C0C0C0;
}

.last-updated, .effective-date {
  font-size: 14px;
  color: #A0A0A0;
  margin-top: 16px;
  font-style: italic;
}

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */
.city-grid,
.services-grid,
.benefits-grid,
.testimonial-grid,
.stats-grid,
.team-grid,
.achievements-grid,
.guide-categories,
.trends-grid,
.experts-grid,
.contact-grid,
.offices-grid,
.experts-contact-grid,
.types-grid,
.steps-grid,
.resources-grid,
.guarantees-grid,
.rights-grid,
.cookies-types,
.mistakes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.city-card,
.service-card,
.benefit-item,
.testimonial-card,
.stat-item,
.team-member,
.achievement-item,
.category-card,
.trend-item,
.expert-card,
.contact-method,
.office-card,
.expert-contact,
.type-card,
.step-card,
.resource-card,
.guarantee-item,
.right-card,
.cookie-type,
.mistake-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 20px;
}

.city-card::before,
.service-card::before,
.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 147, 92, 0.05), transparent);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.city-card:hover,
.service-card:hover,
.benefit-item:hover,
.category-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(232, 147, 92, 0.3), 0 0 40px rgba(232, 147, 92, 0.2);
  border-color: #E8935C;
}

.city-card:hover::before,
.service-card:hover::before,
.benefit-item:hover::before {
  opacity: 1;
}

.city-card h3,
.service-card h3,
.benefit-item h3,
.team-member h3,
.category-card h3 {
  color: #E8935C;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(232, 147, 92, 0.3);
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #E8935C;
  margin-top: 16px;
  text-shadow: 0 0 10px rgba(232, 147, 92, 0.3);
}

/* ===================================
   SERVICE DETAILS
   =================================== */
.service-card-large {
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.service-card-large:hover {
  box-shadow: 0 8px 30px rgba(232, 147, 92, 0.3);
  border-color: #E8935C;
}

.service-premium {
  border: 2px solid #E8935C;
  background: rgba(232, 147, 92, 0.1);
  box-shadow: 0 0 40px rgba(232, 147, 92, 0.2);
}

.service-features {
  margin: 24px 0;
}

.service-features h3 {
  color: #E8935C;
  margin-bottom: 16px;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #C0C0C0;
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E8935C;
  font-size: 18px;
}

.service-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0;
  padding: 20px;
  background: rgba(232, 147, 92, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(232, 147, 92, 0.2);
  flex-wrap: wrap;
  gap: 16px;
}

.duration {
  color: #A0A0A0;
  font-size: 14px;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
  background: rgba(10, 14, 39, 0.5);
  padding: 60px 20px;
  margin: 60px 0;
  border-top: 2px solid rgba(232, 147, 92, 0.3);
  border-bottom: 2px solid rgba(232, 147, 92, 0.3);
}

.testimonial-card {
  background: rgba(244, 241, 234, 0.95);
  color: #1A1F3A;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 147, 92, 0.2);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #2C5F7C;
  margin-bottom: 16px;
  line-height: 1.8;
}

.author {
  display: block;
  font-weight: 600;
  color: #E8935C;
  margin-top: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #E8935C;
  margin-top: 32px;
  text-shadow: 0 0 10px rgba(232, 147, 92, 0.3);
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
  background: rgba(232, 147, 92, 0.05);
  padding: 60px 20px;
  margin: 60px 0;
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 12px;
}

.stat-item {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #E8935C;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(232, 147, 92, 0.4);
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #C0C0C0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #E8935C;
}

.content-wrapper ul {
  list-style: none;
  margin: 16px 0;
}

.content-wrapper li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #C0C0C0;
  line-height: 1.8;
}

.content-wrapper li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E8935C;
  font-size: 18px;
}

.values-list,
.methodology-list {
  margin: 24px 0;
}

/* ===================================
   TEXT-IMAGE SECTIONS
   =================================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.text-image-section img {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(232, 147, 92, 0.3);
}

.text-image-section .content {
  flex: 1 1 400px;
}

/* ===================================
   CONTACT FORM
   =================================== */
.form-wrapper {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.form-info {
  flex: 1 1 300px;
}

.form-benefits {
  list-style: none;
  margin-top: 24px;
}

.form-benefits li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #C0C0C0;
}

.form-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8935C;
  font-weight: 700;
}

.form-container {
  flex: 1 1 400px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #E8E8E8;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-placeholder,
.textarea-placeholder {
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #A0A0A0;
  font-size: 14px;
  min-height: 45px;
  display: flex;
  align-items: center;
}

.textarea-placeholder {
  min-height: 120px;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #C0C0C0;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* ===================================
   CTA SECTIONS
   =================================== */
.cta-final,
.cta-section,
.cta-services,
.cta-cities,
.cta-guide,
.cta-legal {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(232, 147, 92, 0.1) 0%, rgba(10, 14, 39, 0.8) 100%);
  border: 2px solid rgba(232, 147, 92, 0.3);
  border-radius: 12px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(232, 147, 92, 0.1), transparent);
  animation: pulse 6s ease-in-out infinite;
}

.trust-element {
  margin-top: 24px;
  color: #A0A0A0;
  font-size: 14px;
}

/* ===================================
   CITY DETAILS
   =================================== */
.city-card-detail {
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.city-tagline {
  font-size: 20px;
  color: #E8935C;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.city-stats {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.city-stats span {
  padding: 8px 16px;
  background: rgba(232, 147, 92, 0.1);
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 20px;
  font-size: 14px;
  color: #E8935C;
}

.city-highlights {
  margin-top: 24px;
}

.city-highlights h3 {
  color: #E8935C;
  margin-bottom: 16px;
}

.city-highlights ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #C0C0C0;
}

.city-highlights ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E8935C;
}

/* ===================================
   GUIDE SECTIONS
   =================================== */
.process-steps {
  margin: 40px 0;
}

.step-item {
  background: rgba(26, 31, 58, 0.6);
  border-left: 4px solid #E8935C;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(232, 147, 92, 0.3);
}

.step-item h3 {
  color: #E8935C;
  margin-bottom: 12px;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-content {
  padding: 40px 20px;
}

.how-to {
  font-size: 14px;
  color: #A0A0A0;
  margin-top: 12px;
  padding: 12px;
  background: rgba(232, 147, 92, 0.05);
  border-left: 3px solid #E8935C;
  border-radius: 4px;
}

.note,
.certification-note {
  font-size: 14px;
  color: #A0A0A0;
  font-style: italic;
  margin-top: 16px;
  text-align: center;
}

.authority-info {
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}

/* ===================================
   CONFIRMATION PAGE
   =================================== */
.confirmation-message {
  padding: 60px 20px;
  text-align: center;
}

.confirmation-content {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(26, 31, 58, 0.6);
  border: 2px solid #E8935C;
  border-radius: 12px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(232, 147, 92, 0.3);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8935C, #FF6B35);
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(232, 147, 92, 0.5);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.redirect-message {
  font-size: 16px;
  color: #A0A0A0;
  margin-bottom: 24px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 39, 0.98);
  border-top: 2px solid #E8935C;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #C0C0C0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: linear-gradient(135deg, #E8935C, #FF6B35);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(232, 147, 92, 0.3);
}

.cookie-accept:hover {
  box-shadow: 0 0 25px rgba(232, 147, 92, 0.5);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #E8935C;
  border: 1px solid #E8935C;
}

.cookie-reject:hover {
  background: rgba(232, 147, 92, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #C0C0C0;
  border: 1px solid #C0C0C0;
}

.cookie-settings:hover {
  color: #E8935C;
  border-color: #E8935C;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0E27, #1A1F3A);
  border: 2px solid #E8935C;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 50px rgba(232, 147, 92, 0.3);
}

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(232, 147, 92, 0.3);
  border-radius: 8px;
}

.cookie-category h3 {
  color: #E8935C;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #555;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #E8935C;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.toggle-switch.active::after {
  left: 27px;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(232, 147, 92, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
  color: #E8935C;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(232, 147, 92, 0.3);
}

.footer-section p {
  color: #C0C0C0;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #C0C0C0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #E8935C;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 147, 92, 0.2);
  color: #A0A0A0;
  font-size: 14px;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .nav-links {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-internal h1 {
    font-size: 28px;
  }

  /* Section padding */
  .section {
    padding: 40px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Card layouts - single column */
  .city-card,
  .service-card,
  .benefit-item,
  .testimonial-card,
  .stat-item,
  .team-member,
  .achievement-item,
  .category-card,
  .trend-item,
  .expert-card,
  .contact-method,
  .office-card,
  .expert-contact,
  .type-card,
  .step-card,
  .resource-card,
  .guarantee-item,
  .right-card,
  .cookie-type,
  .mistake-item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
  }

  .text-image-section img {
    max-width: 100%;
  }

  /* Form wrapper stacks */
  .form-wrapper {
    flex-direction: column;
  }

  /* Footer stacks */
  .footer-content {
    flex-direction: column;
  }

  /* Service pricing stacks */
  .service-pricing {
    flex-direction: column;
    align-items: flex-start;
  }

  /* City stats wrap better */
  .city-stats {
    justify-content: flex-start;
  }

  /* Stats grid better spacing */
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }

  /* Cookie consent stacks */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }

  /* Modal content smaller padding */
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  /* Even smaller typography */
  h1 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 28px;
  }

  /* Smaller padding */
  .section {
    padding: 32px 16px;
  }

  .city-card,
  .service-card,
  .service-card-large {
    padding: 20px;
  }

  /* Stat items full width */
  .stat-item {
    flex: 1 1 100%;
  }

  /* Trust badges stack */
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }

  /* Button text smaller */
  .btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #E8935C;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: rgba(232, 147, 92, 0.3);
  color: #FFFFFF;
}

/* Smooth transitions for all interactive elements */
* {
  transition-property: background, border, color, transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}