/* ==========================================
   CSS Variables and Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-dark: #060047;
    --primary-magenta: #B3005E;
    --primary-pink: #E90064;
    --accent-light: #FF5F9E;
    --neutral-light: #F8F8F8;
    --neutral-medium: #F5F5F5;
    --text-dark: #060047;
    --text-medium: #666;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #060047, #B3005E);
    --gradient-secondary: linear-gradient(135deg, #B3005E, #E90064);
    --gradient-accent: linear-gradient(135deg, #E90064, #FF5F9E);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 80px;
}

.destination-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.destination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: var(--gradient-secondary);
  color: white;
  box-shadow: 0 4px 14px rgba(185, 0, 94, 0.3);
  transition: all 0.3s ease;
}

.destination-btn i {
  font-size: 16px;
}

.destination-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 0, 100, 0.4);
  background: var(--gradient-accent);
}

.book-btn {
  background-color: #f4f4f4;
  color: var(--primary-dark);
  border: 1px solid #ddd;
}

/* ==========================================
   Header Styles
   ========================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 0, 71, 0.1);
  box-shadow: 0 8px 32px rgba(6, 0, 71, 0.1);
  transition: all 0.3s ease-in-out;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-magenta);
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-pink);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-magenta);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.app-store-btn {
    background: var(--primary-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(6, 0, 71, 0.3);
}

.app-store-btn:hover {
    background: var(--primary-magenta);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 0, 94, 0.4);
}

.cta-button {
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 0, 94, 0.3);
}

.cta-button:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 0, 100, 0.4);
}

/* ==========================================
   Hero Section Styles
   ========================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 25%, #e8f0ff 50%, #f0e8ff 75%, #f8f0ff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 0, 71, 0.08) 0%, rgba(179, 0, 94, 0.05) 50%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 95, 158, 0.2);
    color: var(--primary-dark);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-magenta);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.primary-btn {
    background: var(--gradient-secondary);
    color: white;
    padding: 15px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(185, 0, 94, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-btn:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 0, 100, 0.4);
}

.secondary-btn {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 15px 25px;
    border: 2px solid var(--primary-magenta);
    border-radius: 35px;
}

.secondary-btn:hover {
    background: var(--primary-magenta);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(179, 0, 94, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.bike-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bike-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(6, 0, 71, 0.15);
    text-align: center;
    position: relative;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 95, 158, 0.2);
}

.bike-icon {
    font-size: 4rem;
    color: var(--primary-magenta);
    margin-bottom: 20px;
    display: block;
}

.bike-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.bike-desc {
    color: var(--text-medium);
    font-size: 1rem;
}

.floating-elements {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.floating-element {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(6, 0, 71, 0.15);
  overflow: hidden;
  z-index: 11;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 95, 158, 0.3);
}

.floating-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0.5s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* ==========================================
   Explore Sambalpur Section Styles
   ========================================== */
.explore-sambalpur {
    padding: 100px 40px;
    background: var(--neutral-light);
}

.explore-container {
    max-width: 1400px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 0, 71, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 95, 158, 0.1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 0, 71, 0.15);
    border-color: rgba(255, 95, 158, 0.3);
}

.destination-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Add background images for each destination */
.destination-image.dam {
    background-image: url('images/hirakud-resorvoir.PNG');
}

.destination-image.temple {
  background-image: url('images/humatemple.PNG');
}

.destination-image.wildlife {
    background-image: url('images/debrigarh.PNG');
}

.destination-image.heritage {
    background-image: url('images/samleswaritemple.PNG');
}

.destination-image.waterfall {
    background-image: url('images/gudguda.PNG');
}

.destination-image.lake {
    background-image: url('images/rightdyke.PNG');
}

.destination-content {
    padding: 30px;
}

.destination-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.destination-desc {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.destination-info {
    margin-bottom: 25px;
}

.distance-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 95, 158, 0.1), rgba(233, 0, 100, 0.1));
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
    border: 1px solid rgba(255, 95, 158, 0.2);
}

.distance-tag i {
    color: var(--primary-magenta);
}

.destination-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 0, 94, 0.3);
}

.destination-btn:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 0, 100, 0.4);
}

.destination-btn i {
    font-size: 1.1rem;
}

/* ==========================================
   Footer Styles
   ========================================== */
.footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-magenta));
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  animation: shimmer 4s linear infinite;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.footer h3, .footer h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links li a:hover {
  color: var(--text-medium);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: white
}

/* ==========================================
   Common Section Styles
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Features Section Styles
   ========================================== */
.features {
    padding: 100px 40px;
    background: var(--white);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(6, 0, 71, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 95, 158, 0.05), rgba(233, 0, 100, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 0, 71, 0.15);
    border-color: var(--accent-light);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(185, 0, 94, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-desc {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ==========================================
   CTA Section Styles
   ========================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite reverse;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-white {
    background: white;
    color: var(--primary-dark);
    padding: 15px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn-white:hover {
    background: var(--accent-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 95, 158, 0.4);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features {
        padding: 60px 20px;
    }

    .explore-sambalpur {
        padding: 60px 20px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .destination-content {
        padding: 20px;
    }
    
    .destination-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }
}