/* Custom CSS for Sanskruti Travels */

:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6600;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6600 0%, #e55100 100%);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    
}

.navbar-nav .nav-link:hover {
    color: var(--warning-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 68, 153, 0.8)), 
                url('https://pixabay.com/get/g5101a8ea5403e6628183b880a050f731664339ad7f5756fa2e647ead61b3ab0a37e37eef17403b0361ba4c6469eb102ee60edc57581c2f413451d1a2585f95e5_1280.jpg') center/cover;
    position: relative;
    padding-top: 120px;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-search-card {
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 60px;
    margin-bottom: 0;
}

.page-header h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Offer Cards */
.offer-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.offer-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover img {
    transform: scale(1.05);
}

.price-section {
    margin: 1rem 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.offer-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Destination Cards */
.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 250px;
    cursor: pointer;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: center;
    transform: translateY(50%);
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-overlay {
    transform: translateY(0);
}

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

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

/* Package Cards */
.package-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover img {
    transform: scale(1.05);
}

.package-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.package-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.package-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

/* Package Detail Styles */
.package-detail-header {
    background: var(--gradient-primary);
    padding: 120px 0 40px;
    color: white;
}

.package-badges .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
}

.sticky-top {
    top: 100px;
}

.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.itinerary-day {
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin-left: 1.5rem;
}

/* Filter Styles */
.filter-card {
    margin-bottom: 2rem;
}

.nav-pills .nav-link {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    margin: 0 0.25rem;
    border-radius: 25px;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Team Cards */
.team-card {
    padding: 2rem 1rem;
    text-align: center;
}

.team-img {
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-info .card {
    border: none;
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    text-decoration: none;
}
/* Logo */
.logo-img {
  /* height: auto; */
  /* width: 100px; */
  /* max-width: 100%; */
  margin-right: 10px;
  /* padding-right: 30px; */
  transition: transform 0.3s ease;
  transform: scale(1.5);
}

.logo-img:hover {
  transform: scale(1.0);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .destination-overlay {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.7);
    }
    
    .package-detail-header {
        padding: 100px 0 30px;
    }
    
    .sticky-top {
        position: relative !important;
        top: auto !important;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .feature-box {
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    .logo-img {
    margin-right: 15px;
    padding-right: 20px;
    transform: scale(0.9)
  }
    
    
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Custom Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-warning {
    background: var(--secondary-color);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    color: white;
}

.btn-warning:hover {
    background: #e55100;
    color: white;
}

/* Form Styles */
.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 12px 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Statistics */
.stat-item {
    padding: 2rem 1rem;
}

.stat-item i {
    opacity: 0.8;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0 0 1rem 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: var(--warning-color);
}

/* Accordion */
.accordion-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: var(--box-shadow);
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    footer {
        display: none !important;
    }
    
    .page-header {
        background: none !important;
        color: black !important;
    }
}
@media (max-width: 480px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 40px;
        text-align: center;
    }

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

    .logo-img {
        margin-right: 10px;
        padding-right: 10px;
        transform: scale(0.9)
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
        padding: 10px 18px;
    }

    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }

    .feature-box {
        padding: 0.8rem;
    }

    .package-detail-header {
        padding: 80px 0 20px;
    }

    .stat-item {
        padding: 1rem 0.5rem;
        text-align: center;
    }

    .breadcrumb-item a {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-warning {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .form-control,
    .form-select {
        padding: 10px 12px;
    }
}
