/* মূল স্টাইল */
:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --secondary: #ffc107;
    --dark: #1e293b;
    --light: #f8fafc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
}

/* নেভিগেশন */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand i {
    margin-right: 8px;
    font-size: 1.5rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.dropdown-item {
    padding: 8px 20px;
}

.dropdown-item:hover {
    background: #f0fdf4;
    color: var(--primary);
}

/* হিরো সেকশন */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* বাটন */
.btn-success {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
}

.btn-success:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46,125,32,0.3);
}

.btn-outline-success {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-outline-success:hover {
    background: var(--primary);
    color: white;
}

/* সেবা কার্ড */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46,125,32,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(46,125,32,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

/* প্যাকেজ কার্ড */
.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46,125,32,0.15);
}

.package-image {
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.package-content {
    padding: 20px;
}

.package-category {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-hajj { background: #2e7d32; color: white; }
.category-umrah { background: #1976d2; color: white; }
.category-ramadan { background: #ffc107; color: #1e293b; }

.package-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.package-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: #64748b;
    font-size: 0.9rem;
}

.package-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

/* খালি স্টেট */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* ভিডিও কার্ড */
.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 20px;
}

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(46,125,32,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
}

/* গ্যালারি আইটেম */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* কেন আমরা */
.why-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    height: 100%;
}

.why-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* প্যাকেজ বিস্তারিত */
.package-detail-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.package-detail-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.detail-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.price-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
}

/* রুম টাইপ টেবিল */
.room-table {
    width: 100%;
    border-collapse: collapse;
}

.room-table th {
    background: var(--primary);
    color: white;
    padding: 12px;
    text-align: center;
}

.room-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

/* ইটিনারারি */
.itinerary-day {
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 25px;
    position: relative;
}

.itinerary-day:before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
}

.day-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

/* ফুটার */
footer {
    background: #1a2a36;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* WhatsApp ফ্লোটিং বাটন */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* রেসপনসিভ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .package-title {
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}