/* ---------- RESET ---------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f8fbff;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden; /* ✅ Prevent sideways scroll */
  }

/* ---------- HEADINGS ---------- */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

h2 {
    text-align: center;
    color: #0077cc;
    font-size: 2rem;
}

/* ---------- CAROUSEL ---------- */
.carousel-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.carousel-container {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden; /* ✅ Important */
  }

.carousel-slide {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease-in-out;
  }
  
  .carousel-slide img {
    flex: 0 0 100%;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
  }
  

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    z-index: 10;
    transition: 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.prev { left: 15px; } 
.next { right: 15px; }

.carousel-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots span {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dots span.active {
    background-color: #25D366;
    transform: scale(1.3);
}

/* ---------- OVERLAY VILLA INFO ---------- */
.villa-overlay {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    text-align:center;
    color:white;
    background: rgba(0,0,0,0.25);
    border-radius:15px;
    max-width:700px;
    width:90%;
    padding:20px;
}

.villa-overlay h2 {
    font-size: 2.3rem;
    color: #fff;
}

.villa-overlay p {
    font-size:1.1rem;
    color:#fff;
    font-weight:600;
    line-height:1.5;
    margin:15px 0;
}

.villa-overlay .Book-btn {
    background-color:#0077cc;
    color:white;
    padding:12px 26px;
    border-radius:30px;
    border:none;
    cursor:pointer;
    font-weight:600;
    text-transform:uppercase;
    font-size:0.95rem;
    transition:0.3s;
}

.villa-overlay .Book-btn:hover { 
    background-color:#004a80; 
}

/* ---------- TOUR GRID ---------- */
.activity-section { 
    text-align: center; 
    margin-top: 40px; 
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    gap: 25px;
    padding: 30px;
    max-width: 1300px;
    margin: 0 auto 80px;
}

.tour-card {
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,119,204,0.25);
    transition:0.3s;
}

.tour-card:hover { 
    transform:translateY(-6px); 
    box-shadow:0 8px 25px rgba(0,119,204,0.35); 
}

.tour-card img { 
    width:100%; 
    height:220px; 
    object-fit:cover; 
}

.tour-card-content { 
    padding:20px; 
    text-align:left; 
}

.tour-card-content h3 { 
    color:#003366; 
    font-size:1.4rem; 
}

.tour-card-content .tour-price { 
    color:#0077cc; 
    font-weight:700; 
    margin-bottom:10px; 
}

.tour-card-content .tour-description { 
    font-size:0.95rem; 
    color:#555; 
    margin-bottom:20px; 
    line-height:1.5; 
}

.call-btn {
    background-color:#0077cc;
    color:white;
    padding:12px 26px;
    border-radius:30px;
    border:none;
    cursor:pointer;
    font-weight:600;
    text-transform:uppercase;
    font-size:0.95rem;
    transition:0.3s;
}

.call-btn:hover { 
    background-color:#004a80; 
    box-shadow:0 6px 20px rgba(0,74,128,0.5); 
}

/* ---------- FOOTER ---------- */
footer { 
    background-color:#222; 
    color:#ccc; 
    padding:50px 20px 20px; 
    margin-top:50px; 
}

.footer-container {
    display:grid;
    grid-template-columns:repeat(3, 1fr); /* 3 columns */
    gap:30px;
    max-width:1300px;
    margin:0 auto;
}

.footer-col h3 { 
    color:#fff; 
    margin-bottom:15px; 
    font-size:20px; 
    border-bottom:2px solid #c59d5f; 
    display:inline-block; 
    padding-bottom:5px; 
}

.footer-col ul { 
    list-style:none; 
    padding:0; 
}

.footer-col ul li { 
    margin-bottom:10px; 
}

.footer-col ul li a { 
    color:#ccc; 
    text-decoration:none; 
}

.footer-col ul li a:hover { 
    color:#fff; 
}

.footer-bottom { 
    text-align:center; 
    margin-top:30px; 
    font-size:14px; 
    color:#999; 
}
.footer-logo{
    color:#fff; 
    margin-bottom:15px; 
    font-size:20px; 
    border-bottom:2px solid #c59d5f; 
    display:inline-block; 
    padding-bottom:5px; 
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* ---------- RESPONSIVE MEDIA QUERIES ---------- */
@media (max-width: 1024px) {
    .carousel-container { height: 60vh; }
    .carousel-slide img { height: 60vh; }
    .villa-overlay h2 { font-size: 2rem; }
    .villa-overlay p { font-size: 1rem; }
    .tour-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .carousel-container { height: 50vh; }
    .carousel-slide img { height: 50vh; }
    .villa-overlay { padding: 15px; }
    .villa-overlay h2 { font-size: 1.5rem; }
    .villa-overlay p { font-size: 0.95rem; }
    .carousel-btn { padding: 8px 12px; font-size: 16px; }
    .tour-card img { height: 180px; }
    .tour-grid { grid-template-columns: 1fr; padding: 20px; gap: 20px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    .carousel-container { height: 40vh; }
    .carousel-slide img { height: 40vh; }
    .villa-overlay h2 { font-size: 1.2rem; }
    .villa-overlay p { font-size: 0.85rem; }
    .tour-card img { height: 150px; }
    .tour-card-content { padding: 15px; }
    .call-btn { padding: 10px 20px; font-size: 0.85rem; }
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 20;
  }
  
  .carousel-dots span {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .carousel-dots span.active {
    background-color: #25D366;
    transform: scale(1.3);
  }
  

  @media (max-width: 1024px) {
    .carousel-container, .carousel-slide img { height: 60vh; }
  }
  
  @media (max-width: 768px) {
    .carousel-container, .carousel-slide img { height: 50vh; }
  }
  
  @media (max-width: 480px) {
    .carousel-container, .carousel-slide img { height: 40vh; }
  }
  