/* Base Styles & Variables */
:root {
  --light-bg: #faf1f2;
  --dark-bg: #222021;
  --light-accent: #dedcdd;
  --medium-accent: #b1b0b0;
  --primary: #ff6b6b;
  --primary-dark: #ff5252;
  --secondary: #4ecdc4;
  --accent: #ffd166;
  --light-text: #ff5252;
  --dark-text: #f5f5f5;
  --light-card: #ffffff;
  --dark-card: #2d2c2c;
  --light-input: #ffffff;
  --dark-input: #3a3939;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --box-shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
  --box-shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  transition: var(--transition);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.light-mode {
  background-color: var(--light-bg);
  color: var(--light-text);
}

.dark-mode {
  background-color: var(--dark-bg);
  color: var(--dark-text);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 5.6rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.highlight {
  color: var(--primary);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-header p {
  font-size: 1.8rem;
  opacity: 0.8;
}

/* Desktop/Mobile Visibility */
.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* Theme Dropdown */
.theme-dropdown {
  position: relative;
  z-index: 100;
}

.theme-dropdown-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.light-mode .theme-dropdown-toggle {
  background-color: var(--light-card);
  color: var(--light-text);
  box-shadow: var(--box-shadow-light);
}

.dark-mode .theme-dropdown-toggle {
  background-color: var(--dark-card);
  color: var(--dark-text);
  box-shadow: var(--box-shadow-dark);
}

.theme-dropdown-toggle:hover {
  transform: translateY(-2px);
}

.theme-icon-sun,
.theme-icon-moon {
  font-size: 1.8rem;
  transition: var(--transition);
}

.theme-icon-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.theme-icon-moon {
  position: absolute;
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

.dark-mode .theme-icon-sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

.dark-mode .theme-icon-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.theme-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background-color: var(--light-card);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-light);
  width: 12rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: var(--transition);
  z-index: 101;
}

.dark-mode .theme-dropdown-content {
  background-color: var(--dark-card);
  box-shadow: var(--box-shadow-dark);
}

.theme-dropdown-content.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.theme-option {
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.4rem;
}

.theme-option:hover {
  background-color: var(--light-accent);
}

.dark-mode .theme-option:hover {
  background-color: var(--medium-accent);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--border-radius-md);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.7rem;
  transition: var(--transition);
  box-shadow: none;
}

.light-mode .mobile-menu-toggle {
  background-color: transparent;
  box-shadow: none;
}

.dark-mode .mobile-menu-toggle {
  background-color: transparent;
  box-shadow: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 3rem;
  height: 0.3rem;
  background-color: var(--light-text);
  transition: var(--transition);
}

.dark-mode .mobile-menu-toggle span {
  background-color: var(--dark-text);
}

.mobile-menu-toggle:hover {
  transform: translateY(-2px);
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 28rem;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  padding: 8rem 2rem 2rem;
  overflow-y: auto;
  box-shadow: var(--box-shadow-light);
}

.dark-mode .mobile-sidebar {
  background-color: rgba(45, 44, 44, 0.95);
  box-shadow: var(--box-shadow-dark);
}

.mobile-sidebar.open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-sidebar-logo {
  width: 12rem;
}

.mobile-sidebar-close {
  background: transparent;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--light-text);
  transition: var(--transition);
}

.dark-mode .mobile-sidebar-close {
  color: var(--dark-text);
}

.mobile-sidebar-close:hover {
  color: var(--primary);
}

.mobile-sidebar-nav {
  margin-bottom: 3rem;
}

.mobile-sidebar-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-sidebar-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid var(--light-accent);
  transition: var(--transition);
}

.dark-mode .mobile-sidebar-nav a {
  border-bottom-color: var(--medium-accent);
}

.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
  color: var(--primary);
}

/* Mobile sidebar theme options */
.mobile-sidebar-theme {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--light-accent);
  border-bottom: 1px solid var(--light-accent);
}

.dark-mode .mobile-sidebar-theme {
  border-color: var(--medium-accent);
}

.mobile-sidebar-theme p {
  font-weight: 600;
  margin-bottom: 1rem;
}

.theme-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-sidebar-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Buttons */
.cta-button,
.secondary-button {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  text-align: center;
}

.cta-button {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.secondary-button {
  background-color: transparent;
  color: var(--light-text);
  border: 1px solid var(--light-text);
}

.dark-mode .secondary-button {
  color: var(--dark-text);
  border: 1px solid var(--dark-text);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(255, 107, 107, 0.4);
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.cta-button.active {
  background-color: var(--primary-dark);
}

/* Header */
header {
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.light-mode header {
  background-color: rgba(250, 241, 242, 0.9);
}

.dark-mode header {
  background-color: rgba(34, 32, 33, 0.9);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  width: 180px;
}

.logo {
  display: none;
  width: 100%;
}

.light-mode .light-logo {
  display: block;
}

.dark-mode .dark-logo {
  display: block;
}

nav ul {
  display: flex;
  gap: 3rem;
}

nav a {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 10rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.hero-text {
  flex: 1;
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 4rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 2rem;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.main-logo {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.shape-1 {
  width: 10rem;
  height: 10rem;
  background-color: rgba(255, 107, 107, 0.2);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 15rem;
  height: 15rem;
  background-color: rgba(78, 205, 196, 0.2);
  bottom: 30%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 8rem;
  height: 8rem;
  background-color: rgba(255, 209, 102, 0.2);
  bottom: 10%;
  left: 30%;
  animation-delay: 4s;
}

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

/* About Section */
.about {
  padding: 10rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.about-image {
  flex: 1;
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-light);
}

.dark-mode .about-image {
  box-shadow: var(--box-shadow-dark);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 2rem;
  font-size: 1.8rem;
  text-align: center;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  margin-bottom: 2rem;
  font-size: 3.2rem;
}

.about-text p {
  margin-bottom: 2rem;
  font-size: 1.7rem;
}

.about-stats {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.stat-label {
  font-size: 1.6rem;
  opacity: 0.8;
}

/* How It Works Section */
.how-it-works {
  padding: 10rem 0;
  background-color: rgba(222, 220, 221, 0.5);
}

.dark-mode .how-it-works {
  background-color: rgba(177, 176, 176, 0.1);
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 5rem;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 7rem;
  right: -1.5rem;
  width: 3rem;
  height: 0.2rem;
  background-color: var(--primary);
}

.step-number {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 auto 2rem;
}

.step-icon {
  width: 8rem;
  height: 8rem;
  background-color: rgba(255, 107, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.step-icon i {
  font-size: 3.2rem;
  color: var(--primary);
}

.step h3 {
  margin-bottom: 1.5rem;
}

.step p {
  font-size: 1.6rem;
}

.cta-center {
  text-align: center;
}

/* Features Section */
.features {
  padding: 10rem 0;
}

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

.feature-card {
  background-color: var(--light-card);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-light);
  transition: var(--transition);
  text-align: center;
}

.dark-mode .feature-card {
  background-color: var(--dark-card);
  box-shadow: var(--box-shadow-dark);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 8rem;
  height: 8rem;
  background-color: rgba(255, 107, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.feature-icon i {
  font-size: 3.2rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 1.5rem;
}

.feature-card p {
  font-size: 1.6rem;
}

/* Testimonials Section */
.testimonials {
  padding: 10rem 0;
  background-color: rgba(222, 220, 221, 0.5);
}

.dark-mode .testimonials {
  background-color: rgba(177, 176, 176, 0.1);
}

.testimonials-slider {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  overflow: hidden;
}

.testimonial {
  background-color: var(--light-card);
  border-radius: var(--border-radius-md);
  padding: 3rem;
  box-shadow: var(--box-shadow-light);
  transition: var(--transition);
  flex: 1;
  min-width: 300px;
}

.dark-mode .testimonial {
  background-color: var(--dark-card);
  box-shadow: var(--box-shadow-dark);
}

.testimonial-content {
  position: relative;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.testimonial-content::before {
  content: '"';
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -3rem;
  left: -1rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(255, 107, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2.4rem;
}

.author-info h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.author-info p {
  font-size: 1.4rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.rating {
  color: var(--accent);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.prev-btn,
.next-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--light-card);
  color: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--box-shadow-light);
}

.dark-mode .prev-btn,
.dark-mode .next-btn {
  background-color: var(--dark-card);
  box-shadow: var(--box-shadow-dark);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary);
  color: white;
}

.slider-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgba(255, 107, 107, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* FAQ Section */
.faq {
  padding: 10rem 0;
}

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

.faq-item {
  margin-bottom: 2rem;
  border-radius: var(--border-radius-md);
  background-color: var(--light-card);
  box-shadow: var(--box-shadow-light);
  overflow: hidden;
}

.dark-mode .faq-item {
  background-color: var(--dark-card);
  box-shadow: var(--box-shadow-dark);
}

.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 2rem;
}

.faq-toggle {
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 2rem 2rem;
  display: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-section .cta-button {
  background-color: white;
  color: var(--primary);
  font-size: 1.8rem;
  padding: 1.5rem 3.5rem;
}

.cta-section .cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: var(--light-card);
  padding: 6rem 0 2rem;
  transition: var(--transition);
}

.dark-mode footer {
  background-color: var(--dark-card);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  max-width: 250px;
}

.footer-logo-img {
  width: 100%;
  display: none;
}

.light-mode .footer-logo .light-logo {
  display: block;
}

.dark-mode .footer-logo .dark-logo {
  display: block;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-column h4 {
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 1.8rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column a {
  font-size: 1.4rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-column a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-newsletter h4 {
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.8rem;
}

.footer-newsletter p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  margin-bottom: 2rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top-left-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1.4rem;
  transition: var(--transition);
}

.dark-mode .newsletter-form input {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: var(--dark-input);
  color: var(--dark-text);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 1.2rem 2rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-top-right-radius: var(--border-radius-sm);
  border-bottom-right-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-weight: 600;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 107, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
}

.dark-mode .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* Generator Page Styles */
.generator-page main {
  padding-bottom: 8rem;
}

.generator-hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

/* Logo in generator hero */
.hero-logo {
  text-align: center;
  margin-bottom: 3rem;
}

.logo-banner {
  max-width: 400px;
  height: auto;
  display: none;
  margin: 0 auto;
  transition: var(--transition);
}

.light-mode .light-logo {
  display: block;
}

.dark-mode .dark-logo {
  display: block;
}

.itinerary-form-section {
  padding: 0 0 6rem;
}

.form-container {
  background-color: var(--light-card);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: var(--box-shadow-light);
  transition: var(--transition);
}

.dark-mode .form-container {
  background-color: var(--dark-card);
  box-shadow: var(--box-shadow-dark);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.form-group {
  position: relative;
}

.form-group.span-2 {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.input-with-icon input,
.input-with-icon textarea {
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  font-family: inherit;
  font-size: 1.6rem;
  transition: var(--transition);
  background-color: var(--light-input);
  color: var(--light-text);
}

.dark-mode .input-with-icon input,
.dark-mode .input-with-icon textarea {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: var(--dark-input);
  color: var(--dark-text);
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.textarea-container i {
  top: 2rem;
  transform: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Map Section */
.map-section {
  margin-bottom: 3rem;
}

.map-section h3 {
  margin-bottom: 2rem;
  text-align: center;
}

gmp-map {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.place-picker-container {
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

gmpx-place-picker {
  width: 100%;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: center;
}

.form-actions .cta-button {
  padding: 1.5rem 4rem;
  font-size: 1.8rem;
}

/* Travel Tips Section */
.travel-tips {
  padding: 8rem 0;
  background-color: rgba(222, 220, 221, 0.5);
}

.dark-mode .travel-tips {
  background-color: rgba(177, 176, 176, 0.1);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.tip-card {
  background-color: var(--light-card);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-light);
  transition: var(--transition);
  text-align: center;
}

.dark-mode .tip-card {
  background-color: var(--dark-card);
  box-shadow: var(--box-shadow-dark);
}

.tip-card:hover {
  transform: translateY(-10px);
}

.tip-icon {
  width: 7rem;
  height: 7rem;
  background-color: rgba(255, 107, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.tip-icon i {
  font-size: 3rem;
  color: var(--primary);
}

.tip-card h3 {
  margin-bottom: 1.5rem;
}

.tip-card p {
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }

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

  .footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 58%;
  }

  .hero-content,
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-subtitle,
  .about-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .steps {
    flex-direction: column;
    gap: 5rem;
  }

  .step:not(:last-child)::after {
    top: auto;
    bottom: -2.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-newsletter {
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56%;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  header nav {
    display: none;
  }

  .header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .logo-container {
    justify-self: center;
    margin: 0 auto;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .form-group.span-2 {
    grid-column: span 1;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonials-slider {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 54%;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .form-container {
    padding: 3rem 2rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-sidebar {
    width: 80%;
  }
}
