/* Custom Colors */
:root {
  --gold: #ffd700;
  --dark-bg: #1a1a1a;
  --light-dark: #2d2d2d;
}

/* Global Styles */
html,body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  position: relative;
}

.text-gold {
  color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #dfdfdf 0%, #2d2d2d 50%, #1a1a1a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23FFD700" opacity="0.03" width="100" height="100"/><circle cx="50" cy="50" r="30" fill="%23FFD700" opacity="0.05"/></svg>');
  background-size: 100px 100px;
  animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* Logo */
.logo {
  position: absolute;
  top: 30px;
  left: 50px;
  z-index: 100;
}

.logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

/* Phone Button */
.phone-button {
  position: absolute;
  top: 30px;
  right: 420px;   
  background: white;
  padding: 12px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
  text-decoration: none;
  color: #1a1a1a;
}

.phone-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  color: #1a1a1a;
}

.phone-button i {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 12px;
  color: #000;
}

.phone-number {
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  padding-left: 50px;
  animation: slideInLeft 1s ease-out;
}

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

.badge-premium {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 12px 30px;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.hero-heading {
  font-size: 56px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-heading .text-gold {
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
  font-size: 22px;
  color: #d0d0d0;
  font-weight: 500;
  margin-top: 20px;
}

/* Diagonal Section */
.diagonal-section {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 8;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

/* Booking Form - Compact Version */
.booking-form-container {
  position: absolute;
  right: 30px; /* closer to edge */
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 25px 20px; /* reduced padding */
  border-radius: 15px; /* slightly smaller radius */
  width: 250px; /* smaller width */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); /* lighter shadow */
  z-index: 100;
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(30px); /* smaller distance */
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.form-title {
  font-size: 22px; /* smaller title */
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 8px;
  position: relative;
}

.form-title::after {
  width: 40px; /* shorter underline */
  height: 3px;
  background: var(--gold);
  margin: 8px auto 20px;
}

.booking-form-container .form-control,
.booking-form-container .form-select {
  padding: 10px 12px; /* smaller padding */
  font-size: 14px; /* smaller text */
  border: 2px solid #e0e0e0;
  border-radius: 6px; /* smaller radius */
}

.booking-form-container .form-control:focus,
.booking-form-container .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.btn-submit {
  padding: 12px; /* smaller button */
  font-size: 14px; /* smaller font */
  background: linear-gradient(135deg, #1a1a1a, #000);
  color: var(--gold);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: var(--gold);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  text-decoration: none;
}

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

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 8px 20px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

/* Section Heading */
.section-heading {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-description {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

/* About Section */
.about-section {
  background: #f8f8f8;
}

.feature-item {
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), #ffa500);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.feature-item h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--gold);
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23FFD700" opacity="0.02" width="100" height="100"/></svg>');
  background-size: 100px 100px;
}

.place-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.place-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.place-card:hover .place-image img {
  transform: scale(1.1);
}

.place-distance {
  font-size: 12px; /* Smaller badge text */
  font-weight: bold;
  padding: 5px 10px; /* More compact badge */
}

.place-card .card-title {
  font-size: 20px; /* Slightly smaller for better fit */
  font-weight: 700;
  color: #1a1a1a; /* Darker text for contrast */
  margin-bottom: 5px; /* Reduced spacing */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.place-card .card-text {
  font-size: 13px; /* Slightly smaller for neat look */
  color: #555; /* Softer color for readability */
  margin-bottom: 15px; /* Balanced spacing */
  line-height: 1.5; /* Better readability */
}

.place-card .price {
  font-size: 14px; /* Slightly larger for emphasis */
  color: #333;
}

.place-card .price strong {
  font-size: 18px; /* Adjusted size for prominence */
  color: var(--gold);
  display: block;
  margin-top: 3px;
}

/* Why Choose Us Section */
.why-choose-section {
  background: var(--dark-bg);
}

.reason-card {
  background: var(--light-dark);
  padding: 30px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.reason-card h5 {
  font-weight: bold;
  margin: 15px 0 10px;
}

.reason-card p {
  color: #d0d0d0;
  font-size: 15px;
  line-height: 1.6;
}

.cta-box {
  background: var(--gold);
  padding: 40px 20px;
  border-radius: 20px;
  color: var(--dark-bg);
}

.cta-box h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 16px;
  margin-bottom: 25px;
}

/* Counter Section */
.counter-section {
  background: var(--dark-bg);
}

.counter-item {
  background: #000;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-10px);
}

.counter-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Local Attractions */
.attraction-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.attraction-image {
  position: relative;
  overflow: hidden;
}

.attraction-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.1);
}

.attraction-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.attraction-card:hover .attraction-overlay {
  opacity: 1;
}

.attraction-card .card-body h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.attraction-card .card-body p {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
  background: #000;
}

.testimonial-card {
  background: #111;
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  color: white;
}

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

.testimonial-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

/* Contact Section */
.contact-info h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.map-container {
  overflow: hidden;
}

/* Footer */
.footer {
  background: var(--dark-bg);
}

.footer h4,
.footer h5 {
  color: var(--gold);
}

.footer a:hover {
  color: var(--gold) !important;
}

/* Responsive Design */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Desktop (1200px) */
@media (max-width: 1200px) {
  .hero-heading {
    font-size: 48px;
  }

  .section-heading {
    font-size: 42px;
  }

  .phone-button {
    right: 360px;
  }

  .booking-form-container {
    width: 330px;
    padding: 35px;
  }

  .diagonal-section {
    width: 48%;
  }
}

/* Laptop (992px) */
@media (max-width: 992px) {
  .diagonal-section {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .booking-form-container {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 50px auto 0;
    width: 100%;
    max-width: 450px;
  }

  .hero-content {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .hero-heading {
    font-size: 42px;
  }

  .section-heading {
    font-size: 38px;
  }

  .logo {
    left: 20px;
    top: 20px;
  }

  .logo-img {
    height: 50px;
  }

  .phone-button {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    padding: 10px 20px;
  }

  .phone-number {
    font-size: 15px;
  }

  .badge-premium {
    font-size: 18px;
    padding: 10px 25px;
  }

  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .place-image {
    height: 220px;
  }

  .attraction-image img {
    height: 180px;
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 50px;
  }

  .hero-heading {
    font-size: 36px;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-heading {
    font-size: 32px;
  }

  .section-description {
    font-size: 16px;
  }

  .badge-premium {
    font-size: 16px;
    padding: 8px 20px;
  }

  .logo {
    left: 15px;
    top: 15px;
  }

  .logo-img {
    width: 60px;
  }

  .phone-button {
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    padding: 8px 15px;
    gap: 8px;
  }

  .phone-button i {
    font-size: 10px;
    padding: 10px;
  }

  .phone-number {
    font-size: 14px;
  }

  .booking-form-container {
    padding: 30px 20px;
    width: 95%;
    max-width: 400px;
  }

  .form-title {
    font-size: 24px;
  }

  .booking-form-container .form-control,
  .booking-form-container .form-select {
    padding: 12px;
    font-size: 14px;
  }

  .btn-submit {
    padding: 14px;
    font-size: 16px;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .feature-item h5 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 13px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }

  .stats-row {
    gap: 20px !important;
  }

  .place-image {
    height: 200px;
  }

  .place-card .card-title {
    font-size: 22px;
  }

  .counter-number {
    font-size: 40px;
  }

  .counter-label {
    font-size: 16px;
  }

  .counter-item {
    padding: 25px 30px;
  }

  .attraction-image img {
    height: 200px;
  }

  .reason-card {
    padding: 25px 15px;
  }

  .cta-box {
    padding: 30px 15px;
  }

  .cta-box h3 {
    font-size: 24px;
  }

  .cta-box p {
    font-size: 15px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    left: 20px;
  }
  .call-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* Mobile (576px) */
/* @media (max-width: 576px) {
  .hero-section {
    padding: 80px 0 40px;
  }

  .hero-heading {
    font-size: 28px;
    letter-spacing: 0.5px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-description {
    font-size: 15px;
  }

  .badge-premium {
    font-size: 14px;
    padding: 7px 18px;
  }

  .logo {
    left: 12px;
    top: 12px;
  }

  .logo-img {
    height: px;
  }

  .phone-button {
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    padding: 8px 12px;
    gap: 6px;
  }

  .phone-button i {
    font-size: 9px;
    padding: 8px;
    width: 18px;
    height: 18px;
  }

  .phone-number {
    font-size: 13px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .booking-form-container {
    padding: 25px 18px;
    width: 100%;
    max-width: none;
    margin: 30px 15px 0;
  }

  .form-title {
    font-size: 22px;
  }

  .booking-form-container .form-control,
  .booking-form-container .form-select {
    padding: 11px;
    font-size: 14px;
  }

  .btn-submit {
    padding: 13px;
    font-size: 15px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .feature-item h5 {
    font-size: 15px;
  }

  .feature-item p {
    font-size: 12px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .stats-row {
    flex-direction: column;
    gap: 15px !important;
    align-items: center;
  }

  .stat-item {
    min-width: 150px;
  }

  .place-image {
    height: 180px;
  }

  .place-card .card-title {
    font-size: 20px;
  }

  .place-card .card-text {
    font-size: 13px;
  }

  .place-card .price {
    font-size: 12px;
  }

  .place-card .price strong {
    font-size: 18px;
  }

  .counter-number {
    font-size: 36px;
  }

  .counter-label {
    font-size: 14px;
  }

  .counter-item {
    padding: 20px 25px;
  }

  .attraction-image img {
    height: 180px;
  }

  .attraction-card .card-body h5 {
    font-size: 20px;
  }

  .attraction-card .card-body p {
    font-size: 14px;
  }

  .reason-card {
    padding: 20px 15px;
  }

  .reason-card h5 {
    font-size: 18px;
  }

  .reason-card p {
    font-size: 14px;
  }

  .cta-box {
    padding: 25px 15px;
  }

  .cta-box h3 {
    font-size: 22px;
  }

  .cta-box p {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 25px 18px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .testimonial-img {
    width: 45px;
    height: 45px;
  }

  .contact-info h5 {
    font-size: 15px;
  }

  .contact-info p {
    font-size: 13px;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 15px;
    left: 15px;
  }

  .footer h4,
  .footer h5 {
    font-size: 18px;
  }

  .footer p {
    font-size: 14px;
  }
} */

/* Extra Small Mobile (400px) */
/* @media (max-width: 400px) {
  .hero-heading {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-heading {
    font-size: 24px;
  }

  .badge-premium {
    font-size: 12px;
    padding: 6px 15px;
  }

  .logo-img {
    height: 35px;
  }

  .logo {
    left: 10px;
    top: 10px;
  }

  .phone-button {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    padding: 6px 10px;
    gap: 5px;
  }

  .phone-button i {
    font-size: 8px;
    padding: 7px;
    width: 16px;
    height: 16px;
  }

  .phone-number {
    font-size: 11px;
  }

  .booking-form-container {
    padding: 20px 15px;
  }

  .form-title {
    font-size: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .counter-number {
    font-size: 32px;
  }

  .counter-item {
    padding: 18px 20px;
  }

  .place-card .card-title {
    font-size: 18px;
  }

  .attraction-card .card-body h5 {
    font-size: 18px;
  }

  .cta-box h3 {
    font-size: 20px;
  }
} */

/* Touch Device Optimizations */
/* @media (hover: none) and (pointer: coarse) {
  .place-card:hover,
  .attraction-card:hover,
  .reason-card:hover,
  .counter-item:hover,
  .testimonial-card:hover {
    transform: none;
  }

  .place-card:active,
  .attraction-card:active {
    transform: scale(0.98);
  }

  .btn:active {
    transform: scale(0.95);
  }
} */

/* Landscape Mode for Mobile */
/* @media (max-width: 896px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero-heading {
    font-size: 32px;
  }

  .booking-form-container {
    margin-top: 30px;
  }
} */

/* Print Styles */
@media print {
  .whatsapp-float,
  .booking-form-container {
    display: none !important;
  }

  .call-float,
  .booking-form-container {
    display: none !important;
  }

  .hero-section::before {
    display: none;
  }
}

/* Floating Call Icon */
.call-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  text-decoration: none;
}

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

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}


/* Optional pulse animation for attention */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.call-float {
    animation: pulse 2s infinite;
}
