:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #ffd166;
    --dark-color: #2d3436;
    --light-color: #f9f9f9;
    --text-color: #333;
    --text-light: #777;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f0f8ff;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .highlight {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
  }
  
  .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--accent-color);
    z-index: -1;
    opacity: 0.4;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
  }
  
  .btn.primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
  }
  
  .btn.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
  }
  
  .btn.secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
  }
  
  .btn.secondary:hover {
    background-color: var(--dark-color);
    color: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
  }
  
  /* Animated Background Elements */
  .background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .floating-element {
    position: absolute;
    opacity: 0.1;
  }
  
  .cloud1 {
    top: 10%;
    left: 5%;
    width: 100px;
    animation: float 15s ease-in-out infinite;
  }
  
  .cloud2 {
    top: 20%;
    right: 10%;
    width: 80px;
    animation: float 18s ease-in-out infinite reverse;
  }
  
  .balloon {
    top: 40%;
    right: 15%;
    width: 60px;
    animation: float 20s ease-in-out infinite;
  }
  
  .flying-element {
    position: absolute;
    opacity: 0.1;
  }
  
  .plane {
    top: 15%;
    left: -100px;
    width: 80px;
    animation: fly 30s linear infinite;
  }
  
  .doodle1 {
    bottom: 10%;
    left: 5%;
    width: 120px;
    animation: rotate 25s linear infinite;
  }
  
  .doodle2 {
    top: 60%;
    right: 5%;
    width: 100px;
    animation: rotate 20s linear infinite reverse;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes fly {
    0% {
      transform: translateX(-100px) translateY(0);
    }
    50% {
      transform: translateX(calc(100vw + 100px)) translateY(-50px);
    }
    50.01% {
      transform: translateX(-100px) translateY(50px);
    }
    100% {
      transform: translateX(calc(100vw + 100px)) translateY(0);
    }
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Header Styles */
  header {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 40px;
    margin-right: 10px;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  nav ul {
    display: flex;
  }
  
  nav ul li {
    margin-left: 30px;
  }
  
  nav ul li a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
  }
  
  nav ul li a:hover {
    color: var(--primary-color);
  }
    nav ul li a {
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }
  
    nav ul li a:hover {
      color: var(--primary-color);
    }
  
    /* Add this new hover effect */
    nav ul li a:hover::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--primary-color);
      transition: transform 0.3s ease;
      transform: scaleX(1);
    }
  
    nav ul li a::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--primary-color);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
  
  nav ul li a.active {
    color: var(--primary-color);
  }
  
  nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Mobile Menu Styles */
  @media (max-width: 768px) {
    nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100vh;
      background: white;
      padding: 80px 20px 20px;
      transition: 0.3s ease-in-out;
      z-index: 999;
      overflow-y: auto;
    }
  
    nav.active {
      left: 0;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
  
    nav ul {
      flex-direction: column;
      gap: 20px;
    }
  
    nav ul li {
      margin: 0;
    }
  
    nav ul li a {
      display: block;
      padding: 10px;
      font-size: 1.1rem;
    }
  
    .menu-toggle {
      display: block;
      z-index: 1000;
      transition: 0.3s ease;
    }
  
    .menu-toggle.active i::before {
      content: "\f00d";
    }
  
    /* Team section mobile fixes */
    .team-image {
      height: auto;
      max-height: 400px;
    }
  
    .team-image img {
      height: auto;
      max-height: 350px;
      margin-bottom: 20px;
    }
  
    /* About page mobile fixes */
    .about-image-wrapper {
      height: 300px;
    }
  
    .about-team-image {
      height: auto;
      max-height: 400px;
    }
  
    .about-team-image img {
      height: auto;
    }
  }
  
  /* Hero Section */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
  }
  
  .search-container {
    display: flex;
    margin-bottom: 30px;
  }
  
  .search-container input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
  }
  
  .search-container button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .search-container button:hover {
    background-color: var(--dark-color);
  }
  
  .hero-buttons {
    display: flex;
    gap: 15px;
  }
  
  .hero-image {
    position: relative;
  }
  
  .hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  
  .doodle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .doodle-arrow {
    position: absolute;
    width: 80px;
    top: -40px;
    right: 30px;
    transform: rotate(20deg);
    opacity: 0.7;
  }
  
  .doodle-circle {
    position: absolute;
    width: 100px;
    bottom: -30px;
    left: -30px;
    opacity: 0.7;
  }
  
  /* Categories Section */
  .categories {
    padding: 80px 30px;
    background-color: white;
  }
  
  .category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .category-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
  }
  
  .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .category-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
  }
  
  .category-card:nth-child(2) .category-icon {
    background-color: var(--primary-color);
  }
  
  .category-card:nth-child(3) .category-icon {
    background-color: var(--accent-color);
  }
  
  .category-card:nth-child(4) .category-icon {
    background-color: #6c5ce7;
  }
  
  .category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .category-card p {
    color: var(--text-light);
    margin-bottom: 20px;
  }
  
  .category-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
  }
  
  .category-link i {
    margin-left: 5px;
    transition: var(--transition);
  }
  
  .category-link:hover {
    color: var(--dark-color);
  }
  
  .category-link:hover i {
    transform: translateX(5px);
  }
  
  /* Featured Places Section */
  .featured-places {
    padding: 80px 30px;
    background-color: #f0f8ff;
  }
  
  .places-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }
  
  .place-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .place-image {
    position: relative;
    height: 200px;
  }
  
  .place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .place-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .place-details {
    padding: 20px;
  }
  
  .place-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .place-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ffc107;
  }
  
  .place-rating span {
    color: var(--text-light);
    margin-left: 5px;
  }
  
  .place-details p {
    color: var(--text-light);
    margin-bottom: 15px;
  }
  
  .place-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
  
  .place-info div {
    display: flex;
    align-items: center;
  }
  
  .place-info div i {
    margin-right: 8px;
    color: var(--primary-color);
  }
  
  .view-all-container {
    text-align: center;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 80px 30px;
    background-color: white;
  }
  
  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
  }
  
  .testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
  }
  
  .testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  /* Newsletter Section */
  .newsletter {
    padding: 80px 30px;
    background-color: #f0f8ff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .newsletter-content p {
    color: var(--text-light);
    margin-bottom: 30px;
  }
  
  .newsletter-form {
    display: flex;
    max-width: 500px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
  }
  
  .newsletter-form button {
    border-radius: 0 50px 50px 0;
  }
  
  .newsletter-image img {
    max-width: 100%;
  }
  
  /* Footer */
  footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 30px 20px;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }
  
  .footer-logo img {
    width: 50px;
    margin-bottom: 15px;
  }
  
  .footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .footer-logo p {
    color: #aaa;
    margin-bottom: 20px;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
  }
  
  .footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .footer-links h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
  }
  
  .footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
  }
  
  .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .footer-contact ul li {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
  }
  
  .footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
  }
  
  /* Places Page Styles */
  .places-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/kolkata-banner.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 30px;
  }
  
  .places-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .places-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .filter-section {
    background-color: white;
    padding: 20px 30px;
    box-shadow: var(--shadow);
  }
  
  .filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  
  .filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .filter-group label {
    font-weight: 500;
  }
  
  .filter-group select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
  }
  
  .search-filter {
    display: flex;
    flex: 1;
    max-width: 400px;
    margin-left: auto;
  }
  
  .search-filter input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px 0 0 5px;
    outline: none;
  }
  
  .search-filter button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
  }
  
  .places-section {
    padding: 80px 30px;
  }
  
  .places-section:nth-child(odd) {
    background-color: #f0f8ff;
  }
  
  .places-section:nth-child(even) {
    background-color: white;
  }
  
  .places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .place-actions {
    display: flex;
    gap: 10px;
  }
  
  .place-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
  }
  
  /* Map Modal */
  .map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
  }
  
  .map-modal-content {
    background-color: white;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
  }
  
  #map {
    height: 400px;
    margin: 20px 0;
    border-radius: 10px;
  }
  
  .map-directions {
    margin-top: 20px;
  }
  
  /* Review Modal */
  .review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
  }
  
  .review-modal-content {
    background-color: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
  }
  
  .rating-select {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
  }
  
  .rating-select i.fas {
    color: #ffc107;
  }
  
  /* About Page Styles */
  .about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/about-banner.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 30px;
  }
  
  .about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .about-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .about-section {
    padding: 80px 30px;
    background-color: white;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-image-wrapper {
    width: 100%;
    max-width: 600px;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-image {
    position: relative;
  }
  
  .about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .about-text p {
    margin-bottom: 20px;
  }
  
  .mission-section {
    padding: 80px 30px;
    background-color: #f0f8ff;
  }
  
  .mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .mission-list {
    margin-top: 20px;
  }
  
  .mission-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
  }
  
  .mission-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
  }
  
  .mission-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  
  .team-section {
    padding: 80px 30px;
    background-color: white;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .team-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .about-team-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .about-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

  
  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-info {
    padding: 20px;
  }
  
  .team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  
  .team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .team-bio {
    color: var(--text-light);
    margin-bottom: 20px;
  }
  
  .team-social {
    display: flex;
    gap: 10px;
  }
  
  .team-social a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .team-social a:hover {
    background-color: var(--dark-color);
  }
  
  .contact-section {
    padding: 80px 30px;
    background-color: #f0f8ff;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .contact-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  
  .contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .contact-details p {
    color: var(--text-light);
  }
  
  .contact-form-container {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
  }
  
  .contact-form .btn {
    width: 100%;
  }
  
  .map-section {
    padding: 80px 30px;
    background-color: white;
  }
  
  .map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero,
    .about-content,
    .mission-content,
    .newsletter,
    .contact-container {
      grid-template-columns: 1fr;
    }
  
    .hero-image,
    .about-image,
    .mission-image,
    .newsletter-image {
      order: -1;
    }
  
    .hero-content h1,
    .about-text h2,
    .mission-text h2,
    .newsletter-content h2 {
      font-size: 2rem;
    }
  
    .places-hero-content h1,
    .about-hero-content h1 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 768px) {
    nav {
      display: none;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hero-buttons {
      flex-direction: column;
    }
  
    .search-container,
    .newsletter-form {
      flex-direction: column;
    }
  
    .search-container input,
    .newsletter-form input {
      border-radius: 50px;
      margin-bottom: 10px;
    }
  
    .search-container button,
    .newsletter-form button {
      border-radius: 50px;
      width: 100%;
    }
  
    .filter-container {
      flex-direction: column;
      align-items: stretch;
    }
  
    .search-filter {
      max-width: 100%;
      margin-left: 0;
    }
  }
  
  @media (max-width: 576px) {
    .section-header h2 {
      font-size: 2rem;
    }
  
    .places-container,
    .places-grid {
      grid-template-columns: 1fr;
    }
  
    .place-actions {
      flex-direction: column;
    }
  }
  
  /* Responsive fixes for about page */
  @media (max-width: 768px) {
    .about-content {
      gap: 30px;
    }
  
    .about-image-wrapper {
      height: 300px;
    }
  
    .about-text h2 {
      font-size: 2rem;
    }
  
    .mission-content {
      gap: 30px;
    }
  
    .team-card {
      max-width: 350px;
      margin: 0 auto;
    }
  
    .contact-container {
      gap: 30px;
    }
  
    .contact-info {
      grid-template-columns: 1fr;
    }
  
    .contact-card {
      max-width: 350px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 576px) {
    .about-hero-content h1 {
      font-size: 2.5rem;
    }
  
    .about-image-wrapper {
      height: 250px;
    }
  
    .team-image {
      height: 250px;
    }
  }
nav ul li a {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  color: var(--text-color);
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a:hover::after {
  transform: scaleX(1);
}

nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active::after {
  transform: scaleX(1);
}
