/* Enhanced Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  /* Improved typography for mobile */
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Top Bar */
  .top-bar {
    padding: 6px 0;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .welcome-text {
    font-size: 0.8rem;
  }

  .social-links {
    gap: 0.8rem;
  }

  /* Enhanced Navigation */
  .nav-content {
    padding: 0.8rem 0;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-subtitle {
    font-size: 0.7rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 3rem 1rem 2rem;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }

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

  .nav-link {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
    font-size: 1.1rem;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1002;
    padding: 5px;
  }

  /* Enhanced Hero Section */
  .hero-section {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-dots {
    bottom: 15px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  /* Enhanced Section Headers */
  .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Enhanced Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  /* Enhanced Cottages Grid */
  .cottages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 0.5rem;
  }

  .cottage-card {
    margin-bottom: 1rem;
  }

  .cottage-image {
    height: 220px;
  }

  .cottage-content {
    padding: 1.2rem;
  }

  .cottage-header h3 {
    font-size: 1.1rem;
  }

  .amenities {
    gap: 0.4rem;
  }

  .amenity-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }

  /* Enhanced About Section */
  .about-section {
    padding: 3rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0 0.5rem;
  }

  .about-image {
    height: 300px;
    order: -1;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0;
  }

  /* Enhanced CTA Section */
  .booking-cta {
    padding: 3rem 0;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 220px;
    padding: 14px 24px;
    font-size: 1rem;
  }

  /* Enhanced Footer */
  .footer {
    padding: 2.5rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0 0.5rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 0.95rem;
  }

  .contact-item {
    margin-bottom: 1rem;
  }

  .contact-item svg {
    width: 18px;
    height: 18px;
    margin-right: 0.8rem;
  }

  /* Button improvements */
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  /* Form improvements for mobile */
  input,
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px;
    border-radius: 6px;
  }

  /* Touch-friendly improvements */
  .nav-link,
  .btn,
  .cottage-card,
  .feature-card {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .about-content h2,
  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cottage-content {
    padding: 1rem;
  }

  .feature-card {
    padding: 1.2rem;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

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

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

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

/* Large Screen Styles */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .section-header h2 {
    font-size: 3rem;
  }
}
