* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.loader-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(244, 155, 51, 0.5);
}

.loader-spinner {
  width: 70px;
  height: 70px;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-top: 8px solid #f49b33;
  border-bottom: 8px solid #f49b33;
  border-radius: 50%;
  animation: spin 1s linear infinite, pulse 2s infinite;
  margin: 0 auto 25px;
  position: relative;
}

.loader-spinner::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 3px solid rgba(244, 155, 51, 0.3);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.5; transform: scale(0.95); }
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(244, 155, 51, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
}

header {
  background: linear-gradient(135deg, #f49b33, #e8891f);
  color: white;
  padding: 25px 20px;
  text-align: center;
  border-bottom: 5px solid #353435;
  position: relative;
  overflow: hidden;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.content {
  display: flex;
  flex-direction: column;
  padding: 25px;
  gap: 25px;
}

@media (min-width: 992px) {
  .content {
    flex-direction: row;
  }
}

.map-container {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, #fff8f0, #fff);
  border-radius: 15px;
  box-shadow: 
    inset 0 0 15px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 900px;
  height: 600px;
  margin: 0 auto;
  transition: all 0.3s ease;
  overflow: hidden;
}

.map-container:hover {
  box-shadow: 
    inset 0 0 15px rgba(0, 0, 0, 0.05),
    0 15px 30px rgba(0, 0, 0, 0.15);
}

.map-title {
  text-align: center;
  margin-bottom: 20px;
  color: #353435;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.map-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f49b33;
  border-radius: 3px;
}

.controls {
  width: 100%;
  max-width: 350px;
  padding: 25px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.controls:hover {
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

@media (min-width: 992px) {
  .controls {
    margin-bottom: 0;
    margin-right: 25px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
  }
}

.search-box {
  position: relative;
  margin-bottom: 25px;
}

.search-box::before {
  content: '🔍';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.6;
}

input[type="text"] {
  width: 100%;
  padding: 14px 15px 14px 40px;
  border: 2px solid rgba(221, 221, 221, 0.5);
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

input[type="text"]:focus {
  border-color: #f49b33;
  box-shadow: 
    0 0 0 4px rgba(244, 155, 51, 0.2),
    0 5px 20px rgba(244, 155, 51, 0.3);
  background: white;
  transform: translateY(-2px);
}

.info-tooltip-container {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  margin-left: 15px;
  vertical-align: middle;
  z-index: 1000;
}

.info-icon {
  font-weight: bold;
  background: linear-gradient(135deg, #f49b33, #e8891f);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 
    0 3px 10px rgba(244, 155, 51, 0.3),
    0 0 0 2px white;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.info-icon:hover {
  transform: scale(1.15);
  box-shadow: 
    0 5px 20px rgba(244, 155, 51, 0.5),
    0 0 0 3px white;
  background: linear-gradient(135deg, #e8891f, #d67a1a);
}

.tooltip-content {
  display: none;
  position: fixed;
  z-index: 10000;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  color: #333;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
  font-size: 0.9rem;
  line-height: 1.6;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: tooltipFadeIn 0.3s ease-out;
}

.tooltip-content::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.tooltip-content h3 {
  margin: 0 0 12px 0;
  color: #f49b33;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(244, 155, 51, 0.3);
  padding-bottom: 8px;
}

.tooltip-content ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.tooltip-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.tooltip-content li::before {
  content: '→';
  color: #f49b33;
  position: absolute;
  left: 0;
  font-weight: bold;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-tooltip-container:hover .tooltip-content {
  display: block;
}

svg {
  width: 100%;
  height: 100%;
  max-height: 550px;
  cursor: pointer;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

svg:hover {
  transform: scale(1.02);
}

path, .dccircle {
  fill: #f49b33;
  stroke: white;
  stroke-width: 1;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.2s ease;
}

path:hover, .dccircle:hover {
  fill: #e8891f;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px rgba(244, 155, 51, 0.5));
  transform: translateZ(5px);
}

path.selected, .dccircle.selected {
  fill: #353435;
  stroke: #fff;
  stroke-width: 2;
  filter: 
    drop-shadow(0 0 10px rgba(53, 52, 53, 0.7))
    brightness(1.1);
  transform: translateZ(10px);
  animation: pulseBorder 1.5s infinite;
}

@keyframes pulseBorder {
  0% { stroke-width: 2px; }
  50% { stroke-width: 3px; }
  100% { stroke-width: 2px; }
}

.state-info {
  width: 100%;
  max-width: 800px;
  margin: 20px auto 0;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  overflow: visible;
}

.state-info h2 {
  color: #353435;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #f49b33;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  position: relative;
}

.state-info h2 .flag {
  width: 50px;
  height: 30px;
  margin-right: 15px;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  border-radius: 3px;
}

.state-info-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.state-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 15px;
}

.state-info p::before {
  content: '•';
  color: #f49b33;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.state-info strong {
  color: #353435;
  min-width: 160px;
  display: inline-block;
  font-weight: 600;
}

.state-info .facts {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed rgba(244, 155, 51, 0.3);
  font-style: italic;
  color: #555;
  line-height: 1.7;
  background: rgba(244, 155, 51, 0.05);
  padding: 15px;
  border-radius: 10px;
}

.features-list {
  margin-left: 25px;
  list-style-type: none;
}

.features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.features-list li::before {
  content: '→';
  color: #f49b33;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  margin: 10vh auto;
  padding: 30px;
  border: none;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #f49b33, #e8891f, #353435);
}

.close-modal {
  color: #353435;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.05);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
}

.close-modal:hover {
  color: #f49b33;
  transform: rotate(90deg) scale(1.1);
  background: rgba(244, 155, 51, 0.1);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #353435;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  box-sizing: border-box;
  border: 2px solid rgba(221, 221, 221, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus {
  border-color: #f49b33;
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 155, 51, 0.2);
  background: white;
}

.email-request-btn, button[type="submit"] {
  background: linear-gradient(135deg, #f49b33, #e8891f);
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 5px 15px rgba(244, 155, 51, 0.4),
    0 2px 5px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.email-request-btn::before, button[type="submit"]::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: all 0.6s ease;
}

.email-request-btn:hover, button[type="submit"]:hover {
  background: linear-gradient(135deg, #e8891f, #d67a1a);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(244, 155, 51, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.15);
}

.email-request-btn:hover::before, button[type="submit"]:hover::before {
  left: 100%;
}

.email-request-btn:active, button[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: 
    0 3px 10px rgba(244, 155, 51, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

button[type="submit"] {
  width: 100%;
  font-size: 1rem;
  padding: 16px;
  margin-top: 10px;
}

.golden-promo {
  background: linear-gradient(135deg, #fff9e6, #ffdf33, #fff9e6);
  border: 2px solid #e0b520;
  box-shadow: 
    0 10px 30px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 215, 0, 0.2);
  position: relative;
  border-radius: 20px;
  padding: 25px;
  margin: 25px 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.golden-promo::before {
  content: '⭐ SPECIAL OFFER ⭐';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #f5d742);
  color: #5a3e1b;
  padding: 8px 25px;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  min-width: 200px;
  text-align: center;
}

.golden-promo:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(255, 215, 0, 0.4),
    inset 0 0 25px rgba(255, 215, 0, 0.3);
}

.golden-promo h3 {
  color: #b8860b;
  text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.3);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 20px;
  margin-top: 15px;
  text-align: center;
  position: relative;
}

.golden-promo h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.golden-promo .specs {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 
    0 3px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.golden-promo .specs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #d4af37, #f5d742, #d4af37);
}

.golden-promo .specs:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 215, 0, 0.4);
}

.golden-promo .specs p {
  color: #2c1810;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 20px;
}

.golden-promo .specs p::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #d4af37;
}

.golden-promo .features-list {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border-left: 5px solid #d4af37;
  box-shadow: 
    0 5px 15px rgba(218, 165, 32, 0.1),
    inset 0 0 10px rgba(255, 215, 0, 0.1);
  margin: 15px 0;
}

.golden-promo .features-list li {
  color: #2c2c2c;
  margin: 10px 0;
  font-weight: 600;
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
}

.golden-promo .features-list li::before {
  content: '✧';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.golden-promo .email-request-btn {
  background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
  border: none;
  color: #5a3e1b;
  font-weight: 800;
  padding: 16px 25px;
  border-radius: 50px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 25px rgba(218, 165, 32, 0.5),
    0 3px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-top: 20px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.golden-promo .email-request-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.golden-promo .email-request-btn:hover {
  background: linear-gradient(135deg, #ffd700, #ffec4e, #ffd700);
  color: #6b4e1a;
  transform: translateY(-3px);
  box-shadow: 
    0 12px 30px rgba(255, 215, 0, 0.6),
    0 5px 15px rgba(0, 0, 0, 0.15);
}

.golden-promo .email-request-btn:hover::before {
  left: 100%;
}

.golden-promo .email-request-btn:active {
  transform: translateY(1px);
}

.fullscreen-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f49b33, #e8891f);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 
    0 3px 15px rgba(244, 155, 51, 0.3),
    0 0 0 2px white;
}

.fullscreen-btn:hover {
  background: linear-gradient(135deg, #e8891f, #d67a1a);
  transform: translateY(-3px);
  box-shadow: 
    0 5px 20px rgba(244, 155, 51, 0.4),
    0 0 0 3px white;
}

.fullscreen-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.exit-fullscreen-btn {
  position: fixed;
  top: 25px;
  right: 25px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 
    0 3px 15px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.3);
}

.exit-fullscreen-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.fullscreen-mode {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  z-index: 10000 !important;
  background: white !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  animation: fadeIn 0.3s ease-out;
}

.fullscreen-mode header {
  padding: 20px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fullscreen-mode .content {
  height: calc(100vh - 80px) !important;
  width: 100% !important;
  display: flex !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.fullscreen-mode .controls {
  width: 400px !important;
  height: 100% !important;
  overflow-y: auto !important;
  padding: 25px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #f8f9fa !important;
  border-right: 1px solid #ddd !important;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.05);
}

.fullscreen-mode .map-container {
  flex: 1 !important;
  height: 100% !important;
  width: auto !important;
  max-width: none !important;
  min-height: unset !important;
  padding: 25px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #fff8f0 !important;
}

.fullscreen-mode .map-container svg {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
}

.fullscreen-mode .fullscreen-btn {
  display: none !important;
}

body.fullscreen-active {
  overflow: hidden !important;
}

footer {
  text-align: center;
  padding: 20px;
  color: white;
  background: linear-gradient(135deg, #353435, #2a2829);
  border-radius: 0 0 15px 15px;
  margin-top: auto;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f49b33, #e8891f, #353435);
}

@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }
  
  .map-container {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .content {
    flex-direction: column;
  }
  
  .controls {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  
  .map-container {
    width: 100%;
    height: 500px;
  }

  .fullscreen-btn {
    display: none !important;
  }
  
  .exit-fullscreen-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .map-container {
    height: 400px;
    padding: 15px;
  }
  
  .state-info-content {
    grid-template-columns: 1fr;
  }
  
  .state-info p {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .state-info strong {
    min-width: auto;
    margin-bottom: 5px;
  }

  .fullscreen-btn {
    display: none !important;
  }
  
  .exit-fullscreen-btn {
    display: none !important;
  }
}

@media (max-width: 576px) {
  body {
    padding: 10px;
  }
  
  .container {
    border-radius: 15px;
  }
  
  header {
    padding: 15px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .map-container {
    height: 350px;
    padding: 10px;
  }
  
  .controls, .state-info {
    padding: 15px;
  }
  
  .modal-content {
    width: 95%;
    padding: 20px;
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(244, 155, 51, 0.5); }
  50% { box-shadow: 0 0 20px rgba(244, 155, 51, 0.8); }
  100% { box-shadow: 0 0 5px rgba(244, 155, 51, 0.5); }
}

button, input[type="text"], .info-icon, path, .dccircle {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(244, 155, 51, 0.1);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#f49b33, #e8891f);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#e8891f, #d67a1a);
}

.tooltip {
  position: absolute;
  background: rgba(53, 52, 53, 0.95);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  pointer-events: none;
  font-size: 12px;
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.tooltip.active {
  display: block;
  opacity: 1;
}

.tooltip h3 {
  margin-bottom: 8px;
  color: #f49b33;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(244, 155, 51, 0.5);
  padding-bottom: 6px;
}

.tooltip p {
  margin-bottom: 5px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tooltip p:last-child {
  margin-bottom: 0;
}

.tooltip::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(53, 52, 53, 0.95);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .tooltip {
    max-width: 200px;
    font-size: 13px;
  }
  
  .tooltip h3 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .tooltip-content {
    width: 250px;
    font-size: 0.85rem;
    padding: 15px;
  }
  
  .info-icon {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}

.promo-item:not(.golden-promo) {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.promo-item:not(.golden-promo):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(244, 155, 51, 0.15);
  border-color: #f49b33;
}

.promo-item:not(.golden-promo) h3 {
  color: #353435;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: left;
  border-bottom: 2px solid #f49b33;
  padding-bottom: 8px;
}

.promo-item:not(.golden-promo) .specs {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  margin: 10px 0;
  border-left: 3px solid #f49b33;
  line-height: 1.5;
}

.promo-item:not(.golden-promo) .specs p {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #555;
  display: block;
}

.promo-item:not(.golden-promo) .specs strong {
  color: #f49b33;
  font-weight: 600;
  display: inline;
  margin-right: 5px;
}

.promo-item:not(.golden-promo) .features-list {
  margin: 10px 0;
  padding: 0;
}

.promo-item:not(.golden-promo) .features-list li {
  color: #666;
  font-size: 0.85rem;
  margin: 5px 0;
  line-height: 1.4;
}

.promo-item:not(.golden-promo) .features-list li::before {
  content: '•';
  color: #f49b33;
  font-weight: bold;
  margin-right: 5px;
}

.promo-item:not(.golden-promo) .price-info {
  background: linear-gradient(135deg, #f49b33, #e8891f);
  color: white;
  padding: 15px 12px;
  border-radius: 6px;
  margin: 10px 0;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-item:not(.golden-promo) .price-info p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  width: 100%;
  word-wrap: break-word;
}

.promo-item:not(.golden-promo) .email-request-btn {
  background: #f49b33;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-item:not(.golden-promo) .email-request-btn:hover {
  background: #e8891f;
  transform: translateY(-1px);
}

.promo-divider {
  border: none;
  height: 1px;
  background: #e9ecef;
  margin: 20px 0;
}
