
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(135deg, #5b86e5 0%, #36d1dc 100%);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}

.container {
  max-width: 600px;
  margin: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  flex: 1;
}

h1 {
  color: #2c3e50;
  font-size: 20px;
}

p {
  color: #34495e;
  font-size: 18px;
}

img {
  width: 100%;
  max-width: 500px;
  margin-top: 15px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

img:hover {
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  background: #4e78c4;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin: 15px 0;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(44,62,80,0.12);
}

.btn:hover {
  background: #3a66b0;
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 6px 24px rgba(44,62,80,0.24);
}

footer {
  margin-top: auto;
  padding: 15px;
  background: rgba(44, 62, 80, 0.9);
  color: white;
  font-size: 14px;
  width: 100%;
  backdrop-filter: blur(8px);
}

body {
  background-color: #ffffff;
}

.dark-mode {
  background: linear-gradient(135deg, #24243e 0%, #302b63 50%, #0f0c29 100%);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

.dark-mode h1,
.dark-mode h2,
.dark-mode p,
.dark-mode b {
  color: #dddddd;
}

.dark-mode .container {
  background: rgba(39, 47, 61, 0.95);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.25);
}

.dark-mode footer {
  background: #212734;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

#darkModeToggle {
  display: none;
}

.dark-mode-label {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #444;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 100;
}

.dark-mode-label:hover {
  background: #222;
}

#darkModeToggle:checked ~ body {
  background: linear-gradient(135deg, #24243e 0%, #302b63 50%, #0f0c29 100%);
}

#darkModeToggle:checked ~ body .container {
  background: rgba(39, 47, 61, 0.95); 
}

#darkModeToggle:checked ~ body h1,
#darkModeToggle:checked ~ body h2,
#darkModeToggle:checked ~ body p,
#darkModeToggle:checked ~ body b {
  color: #dddddd;
}

.container ul {
  background: #ffffff;
  margin: 15px 0;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, color 0.3s;
}

.container ul li {
  color: #2c3e50;
}

.dark-mode .container ul li {
  background: #1c1c1c;
  color: #e0e0e0;
}

.dark-mode .container ul li b {
  color: #ffffff;
}

#backToTopBtn {
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  background-color: #3498db;
  color: white;
  border: none;
  outline: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s ease;
}

#backToTopBtn:hover {
  background-color: #2980b9;
  transform: scale(1.1);
}

.animated-box {
  margin: 20px auto;
  padding: 15px;
  background: #f9a826;
  color: white;
  font-size: 18px;
  width: 50%;
  text-align: center;
  border-radius: 10px;
  animation: bounce 2s infinite, glow 2s infinite alternate;
  box-shadow: 0 0 0 0 #f9a826;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(-18px);}
}

@keyframes glow {
  0% { box-shadow: 0 0 0 0 #f9a826; }
  100% { box-shadow: 0 0 24px 8px #fbc059; }
}

.responsive-container {
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.responsive-container h2 {
  font-size: 24px;
  color: #2c3e50;
}

.responsive-container p {
  font-size: 16px;
  color: #34495e;
}

.blog-section {
  margin: 40px 0 30px 0;
}
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.blog-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(30deg);
  transition: all 0.3s;
  pointer-events: none;
}

.blog-card:hover::after {
  left: -30%;
}

.blog-content {
  padding: 18px 16px 16px 16px;
  flex: 1;
}
.blog-content h3 {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 20px;
}
.blog-content p {
  color: #34495e;
  font-size: 15px;
  margin-bottom: 12px;
}

.faq-section {
  margin: 2rem 0;
}

.faq-item {
  position: relative;
  margin-bottom: 10px;
}

.faq-item input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-item label {
  display: block;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 600;
  color: #4e78c4;
  background: #ebf4fd;
  border-radius: 8px;
  transition: all 0.3s;
}

.faq-item label:hover {
  background: #dbeafe;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  background: #f7f7f7;
  border-radius: 0 0 8px 8px;
  transition: max-height 0.4s, padding 0.3s;
}

.faq-item input:checked ~ .faq-content {
  max-height: 200px;
  padding: 14px 18px;
}

.faq-item input:checked ~ label {
  background: #dbeafe;
  border-radius: 8px 8px 0 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 40px 0 30px 0;
  padding: 5px;
}

.grid-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}

.grid-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.shadow-pulse {
  animation: shadowPulse 2s infinite;
}

@keyframes shadowPulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 128, 237, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(74, 128, 237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 128, 237, 0); }
}

.weather-widget, .currency-converter, .trip-countdown, .travel-quote-box, .budget-planner {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.map-section {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.static-map {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 12px;
  background: url('https://i.imgur.com/JVMwpNQ.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.map-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f97316;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  cursor: pointer;
}

.map-marker:hover {
  transform: translate(-50%, -50%) scale(1.3);
}

.marker-santorini {
  top: 36%;
  left: 55%;
}

.marker-alps {
  top: 29%;
  left: 49%;
}

.marker-tokyo {
  top: 35%;
  left: 82%;
}

.marker-cape-town {
  top: 70%;
  left: 52%;
}

.marker-sydney {
  top: 69%;
  left: 86%;
}

.marker-tooltip {
  position: absolute;
  padding: 5px 10px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: none;
  pointer-events: none;
}

.map-marker:hover + .marker-tooltip {
  display: block;
}

.packing-checklist {
  background: linear-gradient(135deg, #f9f7fe 0%, #e3f0fc 100%);
  border-radius: 16px;
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 8px 30px rgba(44,62,80,0.1);
  position: relative;
  overflow: hidden;
}

.packing-checklist h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #3a66b0;
  position: relative;
  display: inline-block;
}

.packing-checklist h2:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #4e78c4, transparent);
  border-radius: 2px;
}

.checklist-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

#newItemInput {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #d0e1f9;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

#newItemInput:focus {
  border-color: #4e78c4;
  box-shadow: 0 0 0 3px rgba(78,120,196,0.2), inset 0 2px 4px rgba(0,0,0,0.05);
  outline: none;
}

#checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-item {
  background: white;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: slideIn 0.3s forwards;
}

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

.checklist-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.checklist-item input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-right: 14px;
  accent-color: #4e78c4;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.checklist-item input[type="checkbox"]:checked + span {
  text-decoration: line-through;
  color: #97a6b5;
}

.checklist-item span {
  flex: 1;
  font-size: 16px;
  transition: color 0.2s;
}

.checklist-item button {
  background: none;
  border: none;
  color: #ff7675;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.checklist-item button:hover {
  background: rgba(255,118,117,0.1);
  transform: scale(1.1);
}

.budget-planner {
  background: linear-gradient(135deg, #f5f7fa 0%, #dcecff 100%);
  border-radius: 20px;
  padding: 36px 28px 32px 28px;
  margin: 40px 0 32px 0;
  box-shadow: 0 12px 48px rgba(44,62,80,0.10);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.budget-planner h2 {
  color: #2d4886;
  font-size: 28px;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
.budget-inputs {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  justify-content: center;
}
#budgetTotal {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid #b3c6e0;
  border-radius: 10px;
  font-size: 17px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  background: #fafdff;
  transition: all 0.3s;
}
#budgetTotal:focus {
  border-color: #4e78c4;
  box-shadow: 0 0 0 3px rgba(78,120,196,0.13);
  outline: none;
}
#setBudgetBtn {
  background: linear-gradient(145deg, #4e78c4, #3a66b0);
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(78,120,196,0.13);
  transition: all 0.3s;
}
#setBudgetBtn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(78,120,196,0.18);
}
.budget-add-expense {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  justify-content: center;
}
#expenseName, #expenseAmount {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid #b3c6e0;
  border-radius: 10px;
  font-size: 17px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  background: #fafdff;
  transition: all 0.3s;
}
#expenseName:focus, #expenseAmount:focus {
  border-color: #4e78c4;
  box-shadow: 0 0 0 3px rgba(78,120,196,0.13);
  outline: none;
}
#addExpenseBtn {
  background: linear-gradient(145deg, #4e78c4, #3a66b0);
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(78,120,196,0.13);
  transition: all 0.3s;
}
#addExpenseBtn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(78,120,196,0.18);
}
.budget-summary {
  background: #fff;
  border-radius: 14px;
  padding: 22px 0 18px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
  box-shadow: 0 4px 18px rgba(44,62,80,0.06);
}
.budget-summary div {
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 17px;
  background: linear-gradient(90deg, #fafdff 60%, #eaf1fb 100%);
  box-shadow: 0 2px 8px rgba(44,62,80,0.03);
  transition: all 0.3s;
}
#displayBudget {
  color: #3a66b0;
  font-size: 22px;
  display: block;
  margin-top: 5px;
}
#displaySpent {
  color: #e17055;
  font-size: 22px;
  display: block;
  margin-top: 5px;
}
#displayRemaining {
  color: #00b894;
  font-size: 22px;
  display: block;
  margin-top: 5px;
}
.expense-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.expense-list li {
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(44,62,80,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeIn 0.4s forwards;
  font-size: 16px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.expense-list li:hover {
  box-shadow: 0 6px 18px rgba(44,62,80,0.10);
  transform: translateY(-2px) scale(1.03);
}
.expense-list li .expense-amount {
  font-weight: bold;
  color: #e17055;
}
.expense-list li button {
  background: linear-gradient(145deg, #e17055, #ff7675);
  border: none;
  color: white;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 15px;
  margin-left: 10px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(225,112,85,0.08);
}
.expense-list li button:hover {
  background: linear-gradient(145deg, #ff7675, #e17055);
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(225,112,85,0.16);
}

.decorative-elements {
  position: relative;
  width: 100%;
  height: 0;
  pointer-events: none;
}
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(2px) brightness(1.1);
  opacity: 0.7;
  box-shadow: 0 8px 40px 0 rgba(91,134,229,0.12);
}
.circle-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 30% 30%, #5b86e5 60%, #36d1dc 100%);
  top: -140px;
  left: -180px;
  animation: float 12s ease-in-out infinite;
}
.circle-2 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 70% 70%, #36d1dc 60%, #5b86e5 100%);
  bottom: -100px;
  right: -130px;
  animation: float 14s ease-in-out infinite 1s;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
  margin: 48px 0 32px 0;
  padding: 0 10px;
}
.gallery-image {
  border-radius: 16px;
  overflow: hidden;
  height: 0;
  padding-top: 100%;
  position: relative;
  box-shadow: 0 6px 24px rgba(44,62,80,0.13);
  transition: all 0.35s cubic-bezier(.25,.8,.25,1);
  background: #f7fafc;
}
.gallery-image:hover {
  transform: scale(1.09) rotate(-2deg);
  box-shadow: 0 12px 36px rgba(44,62,80,0.22);
  z-index: 2;
}
.gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08) brightness(1.04);
  transition: filter 0.3s;
}
.gallery-image:hover img {
  filter: saturate(1.3) contrast(1.15) brightness(1.08) blur(0.5px);
}

.extra-tips-section {
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
  border-radius: 20px;
  padding: 40px 24px 36px 24px;
  margin: 48px 0 32px 0;
  box-shadow: 0 10px 40px rgba(44,62,80,0.10);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.extra-tips-section h2 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 22px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 700;
}
.extra-tips-section ul {
  text-align: left;
  margin: 0 auto;
  max-width: 520px;
  padding-left: 0;
}
.extra-tips-section li {
  margin-bottom: 14px;
  font-size: 17px;
  color: #34495e;
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  transition: background 0.2s;
}
.extra-tips-section li:before {
  content: '✈️';
  margin-right: 12px;
  font-size: 18px;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.extra-tips-section li:hover {
  background: #e3f0fc;
}

.testimonials-section {
  background: linear-gradient(135deg, #f7faff 0%, #e3f0fc 100%);
  border-radius: 18px;
  padding: 48px 20px 36px 20px;
  margin: 48px 0 32px 0;
  box-shadow: 0 10px 40px rgba(44,62,80,0.08);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-section h2 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 700;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.testimonial {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(44,62,80,0.07);
  padding: 28px 22px 22px 22px;
  max-width: 260px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial:hover {
  box-shadow: 0 10px 32px rgba(44,62,80,0.13);
  transform: translateY(-6px) scale(1.04);
}
.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid #4e78c4;
}
.testimonial blockquote {
  font-size: 16px;
  color: #34495e;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}
.testimonial cite {
  color: #4e78c4;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}


.fun-facts-section {
  background: linear-gradient(135deg, #fffbe6 0%, #f9f7fe 100%);
  border-radius: 18px;
  padding: 44px 20px 32px 20px;
  margin: 48px 0 32px 0;
  box-shadow: 0 10px 40px rgba(44,62,80,0.07);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.fun-facts-section h2 {
  color: #e67e22;
  font-size: 26px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}
.fun-facts-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}
.fun-facts-list li {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 16px 18px;
  font-size: 16px;
  color: #34495e;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  transition: background 0.2s;
}
.fun-facts-list li b {
  color: #e67e22;
}
.fun-facts-list li:hover {
  background: #fff3e0;
}

.newsletter-section {
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
  border-radius: 18px;
  padding: 44px 20px 36px 20px;
  margin: 48px 0 32px 0;
  box-shadow: 0 10px 40px rgba(44,62,80,0.09);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.newsletter-section h2 {
  color: #2c3e50;
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 700;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.newsletter-form input[type="email"] {
  padding: 13px 18px;
  border: 1.5px solid #b3c6e0;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  background: #fafdff;
  transition: all 0.3s;
  width: 260px;
}
.newsletter-form input[type="email"]:focus {
  border-color: #4e78c4;
  box-shadow: 0 0 0 3px rgba(78,120,196,0.13);
  outline: none;
}
.newsletter-form button {
  background: linear-gradient(145deg, #4e78c4, #3a66b0);
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(78,120,196,0.13);
  transition: all 0.3s;
}
.newsletter-form button:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(78,120,196,0.18);
}
.newsletter-note {
  color: #4e78c4;
  font-size: 15px;
  margin-top: 8px;
}

.content-section {
  margin: 3rem auto;
  max-width: 900px;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
#travel-articles h2, #photo-gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3a4b;
}
.travel-article {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.5rem;
}
.travel-article:last-child {
  border-bottom: none;
}
.article-img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 1rem auto 1rem auto;
  border-radius: 0.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.gallery-img:hover {
  transform: scale(1.04);
}

.navbar {
  width: 100%;
  background: linear-gradient(90deg, #4e78c4 0%, #36d1dc 100%);
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}
.navbar-logo {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.navbar-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.navbar-menu li a:hover {
  background: rgba(255,255,255,0.18);
  color: #222;
}
.navbar-toggle {
  display: none;
}
.navbar-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}
.navbar-icon span {
  display: block;
  height: 4px;
  width: 26px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 1100px) {
  .navbar-container {
    max-width: 98vw;
  }
  .container, .content-section, .testimonials-section, .fun-facts-section, .newsletter-section, .extra-tips-section, .travel-guides-section {
    max-width: 98vw;
    padding: 1.2rem;
  }
}
@media (max-width: 900px) {
  .container, .content-section, .testimonials-section, .fun-facts-section, .newsletter-section, .extra-tips-section, .travel-guides-section {
    padding: 1rem;
  }
  .blog-cards, .guides-grid, .testimonials {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .blog-card, .guide-card, .testimonial {
    max-width: 95vw;
    width: 100%;
  }
  .image-gallery, .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
}
@media (max-width: 700px) {
  .container, .content-section, .testimonials-section, .fun-facts-section, .newsletter-section, .extra-tips-section, .travel-guides-section {
    padding: 0.7rem;
    font-size: 15px;
  }
  h1, h2, h3 {
    font-size: 1.1rem;
  }
  .blog-content h3, .guide-card h3 {
    font-size: 1rem;
  }
  .blog-section, .extra-tips-section, .fun-facts-section, .testimonials-section, .newsletter-section, .travel-guides-section {
    margin: 20px 0 15px 0;
  }
  .animated-box {
    width: 90%;
    font-size: 15px;
    padding: 10px;
  }
  .responsive-container {
    padding: 10px;
  }
  .budget-planner {
    padding: 18px 8px 16px 8px;
  }
  .budget-summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }
  .gallery-img, .article-img {
    max-width: 100vw;
    height: auto;
  }
  .gallery-grid, .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 500px) {
  .container, .content-section, .testimonials-section, .fun-facts-section, .newsletter-section, .extra-tips-section, .travel-guides-section {
    padding: 0.3rem;
    font-size: 14px;
  }
  h1, h2, h3 {
    font-size: 1rem;
  }
  .navbar-logo {
    font-size: 1rem;
    padding: 0.1rem 0.2rem;
  }
  .blog-card, .guide-card, .testimonial {
    padding: 10px 4px;
  }
  .gallery-img, .article-img {
    max-width: 98vw;
    height: auto;
  }
  .gallery-grid, .image-gallery {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .decorative-circle {
    display: none;
  }
  .faq-section, .packing-checklist, .map-section {
    margin: 10px 0;
    padding: 0.5rem;
  }
  .checklist-controls {
    flex-direction: column;
    gap: 6px;
  }
  .budget-inputs, .budget-add-expense {
    flex-direction: column;
    gap: 6px;
  }
}

#trip-countdown-section {
  background: linear-gradient(135deg, #f8fafc 60%, #e0e7ff 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(80, 120, 200, 0.08);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin: 2.5rem auto 2rem auto;
  max-width: 500px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#trip-countdown-section h2 {
  color: #3b3b5c;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.trip-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
#tripDate {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid #bfc9e0;
  font-size: 1rem;
  background: #fff;
  color: #3b3b5c;
  box-shadow: 0 2px 8px rgba(80, 120, 200, 0.04);
  transition: border 0.2s;
}
#tripDate:focus {
  border: 1.5px solid #7c3aed;
  outline: none;
}
#setTripDateBtn {
  background: linear-gradient(90deg, #7c3aed 60%, #38bdf8 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
  transition: background 0.2s, transform 0.2s;
}
#setTripDateBtn:hover {
  background: linear-gradient(90deg, #38bdf8 60%, #7c3aed 100%);
  transform: translateY(-2px) scale(1.04);
}
#countdownDisplay {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  color: #7c3aed;
  font-weight: 700;
  letter-spacing: 1px;
  min-height: 2.2rem;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 2px 8px rgba(80, 120, 200, 0.04);
  display: inline-block;
}

#travel-quote-section {
  background: linear-gradient(135deg, #f0fdfa 60%, #a7f3d0 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.08);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin: 2.5rem auto 2rem auto;
  max-width: 500px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#travel-quote-section h2 {
  color: #047857;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.travel-quote-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.06);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
#travelQuoteText {
  font-size: 1.25rem;
  color: #047857;
  font-style: italic;
  min-height: 2.2rem;
  transition: color 0.2s;
}
#newQuoteBtn {
  background: linear-gradient(90deg, #14b8a6 60%, #38bdf8 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
  transition: background 0.2s, transform 0.2s;
}
#newQuoteBtn:hover {
  background: linear-gradient(90deg, #38bdf8 60%, #14b8a6 100%);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
  #trip-countdown-section, #travel-quote-section {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    max-width: 98vw;
  }
  .travel-quote-box {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
}
