/* ============================================
   TravelCart - Modern Travel Website Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #0A2463;
    --secondary-orange: #FF6B35;
    --gradient-start: #0A2463;
    --gradient-end: #FF6B35;
    --gradient: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    --light-bg: #f8f9fa;
    --dark-text: #1a1a2e;
    --white: #ffffff;
    --light-gray: #e9ecef;
    --dark-gray: #6c757d;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--primary-blue), #1a3a8a);
    padding: 10px 0;
    font-size: 14px;
}

.top-contact a {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-contact a:hover {
    color: var(--secondary-orange);
}

.top-social a {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 15px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.top-social a:hover {
    background: var(--secondary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   Main Header
============================================ */

.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.sticky {
    box-shadow: var(--shadow-md);
}

/* Navbar */
.main-header .navbar {
    padding: 8px 0;
    min-height: 80px;
    display: flex;
    align-items: center;
}

/* ============================================
   Logo Styling
============================================ */

.navbar-brand{
    display:flex;
    align-items:center;
    padding:0;
}

/* Logo container */
.logo{
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Logo image */
.logo img,
.logo-img{
    height:80px;
    width:auto;
    max-width:220px;
    object-fit:contain;
    display:block;
    transition:0.3s;
}

/* Logo hover effect */
.logo img:hover{
    transform:scale(1.05);
}

/* ============================================
   Navigation Menu
============================================ */

.navbar-nav{
    align-items:center;
}

.navbar-nav .nav-link {
    color: var(--dark-text);
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* underline animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

/* ============================================
   Header Buttons
============================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-contact {
    background: var(--gradient);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

/* ============================================
   Mobile Toggle
============================================ */

.navbar-toggler {
    border: none;
    padding: 10px;
    width: 40px;
    height: 40px;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.toggler-icon span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px,6px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

/* ============================================
   Responsive Header
============================================ */

@media (max-width:991px){

.main-header .navbar-collapse{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:var(--shadow-md);
    margin-top:10px;
}

}

/* Mobile logo */
@media (max-width:768px){

.logo img,
.logo-img{
height:50px;
max-width:160px;
}

}

/* Small mobile */
@media (max-width:480px){

.logo img,
.logo-img{
height:45px;
max-width:140px;
}

}
/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient);
    z-index: 1001;
    transition: width 0.1s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.85), rgba(255, 107, 53, 0.3));
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: var(--white);
    max-width: 700px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-subtitle::before {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--secondary-orange);
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--secondary-orange);
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-hero-primary {
    background: var(--secondary-orange);
    color: var(--white);
    border: 2px solid var(--secondary-orange);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Hero Slider Navigation */
.hero-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--secondary-orange);
    width: 40px;
    border-radius: 6px;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--secondary-orange);
}

.section-subtitle::before {
    right: calc(100% + 15px);
}

.section-subtitle::after {
    left: calc(100% + 15px);
}

.section-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--dark-gray);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-img-floating {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
    animation: float 3s ease-in-out infinite;
}

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

.about-text .section-title {
    font-size: 40px;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature h4 {
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.about-feature p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* ============================================
   Service Cards (3D Effect)
   ============================================ */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    transform-style: preserve-3d;
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--secondary-orange);
    transform: scale(1.1) rotateY(360deg);
}

.service-card:hover h4,
.service-card:hover p {
    color: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ============================================
   Package Cards
   ============================================ */
.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-content {
    padding: 25px;
}

.package-location {
    font-size: 14px;
    color: var(--secondary-orange);
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.package-title a:hover {
    color: var(--secondary-orange);
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.package-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.package-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-gray);
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffc107;
    font-size: 14px;
}

/* ============================================
   Popular Destinations
   ============================================ */
.destination-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 36, 99, 0.9), transparent);
    z-index: 1;
    transition: var(--transition);
}

.destination-card:hover::before {
    background: linear-gradient(to top, rgba(255, 107, 53, 0.9), transparent);
}

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

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

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

.destination-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.destination-tagline {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.destination-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-orange);
}

/* ============================================
   Trending Section (Swiper)
   ============================================ */
.trending-slider {
    padding: 20px 0;
}

.trending-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.trending-card:hover {
    transform: rotateY(-5deg) translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.trending-image {
    height: 200px;
    overflow: hidden;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.trending-content {
    padding: 20px;
}

.trending-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.trending-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary-blue);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gradient);
    color: var(--white);
}

/* ============================================
   Deals Section
   ============================================ */
.deals-section {
    background: linear-gradient(135deg, var(--primary-blue), #1a3a8a);
    color: var(--white);
}

.deals-section .section-title,
.deals-section .section-desc {
    color: var(--white);
}

.deals-section .section-subtitle {
    color: var(--secondary-orange);
}

.deal-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.deal-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.deal-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--secondary-orange);
}

.deal-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.deal-image {
    position: relative;
    height: 200px;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.deal-content {
    padding: 25px;
}

.deal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.deal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-orange);
    margin-bottom: 15px;
}

.deal-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-gray);
}

.deal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.deal-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--dark-gray);
    background: var(--light-bg);
    padding: 5px 12px;
    border-radius: 15px;
}

.deal-feature i {
    color: var(--secondary-orange);
    font-size: 12px;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-section {
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    color: rgba(255, 107, 53, 0.1);
    font-family: serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-orange);
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-text {
    color: var(--dark-gray);
    font-style: italic;
    line-height: 1.8;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), #1a3a8a);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 70%);
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-cta-primary {
    background: var(--secondary-orange);
    color: var(--white);
    border: 2px solid var(--secondary-orange);
}

.btn-cta-primary:hover {
    background: transparent;
    color: var(--white);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter-section {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.newsletter-wrapper {
    background: var(--gradient);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.newsletter-content h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.newsletter-form .input-group {
    background: var(--white);
    border-radius: 30px;
    padding: 5px;
}

.newsletter-form input {
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    background: transparent;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: none;
}

.btn-subscribe {
    background: var(--secondary-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ============================================
   Footer
   ============================================ */

.footer-main{
background:linear-gradient(135deg,#0a1b3d,#08122a);
color:rgba(255,255,255,0.85);
padding-top:80px;
}

/* Footer Logo */

.footer-logo img{
height:120px;
width:auto;
object-fit:contain;
margin-bottom:15px;
}

/* Footer Description */

.footer-desc{
margin-bottom:25px;
line-height:1.8;
font-size:15px;
color:rgba(255,255,255,0.7);
}

/* Social Icons */

.footer-social{
display:flex;
gap:12px;
}

.footer-social a{
width:40px;
height:40px;
background:rgba(255,255,255,0.08);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
transition:0.3s;
}

.footer-social a:hover{
background:var(--secondary-orange);
transform:translateY(-3px);
}

/* Footer Titles */

.footer-title{
color:#ffffff;
font-size:20px;
font-weight:600;
margin-bottom:25px;
position:relative;
padding-bottom:12px;
}

.footer-title:after{
content:'';
position:absolute;
bottom:0;
left:0;
width:40px;
height:3px;
background:var(--gradient);
border-radius:3px;
}

/* Footer Links */

.footer-links li{
margin-bottom:12px;
}

.footer-links a{
display:flex;
align-items:center;
gap:10px;
color:rgba(255,255,255,0.75);
transition:0.3s;
}

.footer-links a:hover{
color:var(--secondary-orange);
padding-left:6px;
}

.footer-links i{
font-size:12px;
color:var(--secondary-orange);
}

/* Contact */

.footer-contact li{
display:flex;
align-items:flex-start;
gap:15px;
margin-bottom:20px;
}

.footer-contact i{
width:42px;
height:42px;
background:rgba(255,107,53,0.12);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:var(--secondary-orange);
flex-shrink:0;
}

.footer-contact a{
color:rgba(255,255,255,0.8);
}

.footer-contact a:hover{
color:var(--secondary-orange);
}

/* Footer Bottom */

.footer-bottom{
background:rgba(0,0,0,0.25);
padding:20px 0;
margin-top:60px;
}

.copyright{
margin-bottom:0;
color:rgba(255,255,255,0.6);
}

.payment-methods{
display:flex;
align-items:center;
justify-content:flex-end;
gap:10px;
color:rgba(255,255,255,0.6);
}

.payment-methods i{
font-size:30px;
color:rgba(255,255,255,0.8);
}

/* Responsive */

@media(max-width:768px){

.footer-logo img{
height:90px;
}

}

/* ============================================
   Page Hero (Inner Pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.9), rgba(255, 107, 53, 0.5));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary-orange);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: 100px 0;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-form .form-control {
    padding: 14px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--secondary-orange);
    box-shadow: none;
}

.contact-info-card {
    background: var(--gradient);
    border-radius: var(--border-radius);
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-map {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Package Details Page
   ============================================ */
.package-gallery {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
}

.gallery-main {
    height: 500px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.gallery-thumb {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-details-header {
    margin-bottom: 30px;
}

.package-details-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.package-details-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.package-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
}

.package-detail-item i {
    color: var(--secondary-orange);
}

.package-price-tag {
    background: var(--gradient);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 28px;
    font-weight: 700;
}

.package-price-tag span {
    font-size: 16px;
    font-weight: 400;
}

.package-highlights {
    margin-bottom: 40px;
}

.package-highlights h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.highlight-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}

.highlight-item i {
    color: var(--secondary-orange);
    font-size: 18px;
}

.package-description {
    margin-bottom: 40px;
}

.package-description h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.package-description p {
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ============================================
   About Page
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue), #1a3a8a);
    padding: 100px 0;
    color: var(--white);
}

.about-hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
}

.about-stats {
    background: var(--gradient);
    padding: 60px 0;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius);
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.about-team {
    padding: 100px 0;
}

.team-card {
    text-align: center;
    transition: var(--transition);
}

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

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 5px solid var(--light-bg);
    transition: var(--transition);
}

.team-card:hover .team-image {
    border-color: var(--secondary-orange);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-role {
    color: var(--secondary-orange);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   Admin Panel Styles
   ============================================ */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1e293b, #0f172a);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.admin-sidebar-brand {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-sidebar-brand .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.admin-sidebar-brand .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.admin-sidebar-brand .logo-accent {
    color: var(--secondary-orange);
}

.admin-menu {
    padding: 20px 0;
}

.admin-menu-item {
    display: block;
    padding: 14px 25px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-menu-item:hover,
.admin-menu-item.active {
    background: rgba(255, 107, 53, 0.1);
    color: var(--white);
    border-left-color: var(--secondary-orange);
}

.admin-menu-item i {
    width: 20px;
    text-align: center;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    background: #f1f5f9;
}

.admin-header {
    background: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header-title h3 {
    margin-bottom: 0;
    color: var(--primary-blue);
}

.admin-header-user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.admin-user-name {
    font-weight: 500;
    color: var(--primary-blue);
}

.admin-user-role {
    font-size: 12px;
    color: var(--dark-gray);
}

.admin-content {
    padding: 30px;
}

.admin-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.admin-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon-wrapper.blue {
    background: rgba(10, 36, 99, 0.1);
    color: var(--primary-blue);
}

.stat-icon-wrapper.orange {
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary-orange);
}

.stat-icon-wrapper.green {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.stat-icon-wrapper.purple {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.stat-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-content p {
    color: var(--dark-gray);
    margin-bottom: 0;
    font-size: 14px;
}

/* Admin Tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.admin-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 14px;
    text-transform: uppercase;
}

.admin-table tbody tr:hover {
    background: rgba(10, 36, 99, 0.02);
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.active {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.status-badge.inactive {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

/* Admin Buttons */
.btn-admin {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-admin-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-admin-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-admin-secondary {
    background: var(--light-bg);
    color: var(--primary-blue);
}

.btn-admin-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-admin-danger {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.btn-admin-danger:hover {
    background: #dc2626;
    color: var(--white);
}

.btn-admin-sm {
    padding: 6px 12px;
    font-size: 13px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Login Page */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), #1a3a8a);
}

.login-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-lg);
}

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.login-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transform: rotate(-10deg);
}

.login-logo .logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.login-logo .logo-accent {
    color: var(--secondary-orange);
}

.login-title {
    text-align: center;
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .about-content {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    
    .main-header .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
        margin-top: 15px;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .admin-sidebar {
        transform: translateX(-100%);
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .highlight-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .package-card {
        margin-bottom: 30px;
    }
    
    .newsletter-wrapper {
        padding: 30px;
    }
    
    .newsletter-content {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .package-details-title {
        font-size: 28px;
    }
    
    .gallery-main {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-content {
        padding: 15px;
    }
    
    .login-card {
        padding: 30px;
        margin: 15px;
    }
}

@media (max-width:768px){

.logo img,
.logo-img{
height:42px;
}

}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Initial hidden state for AOS */
[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
}

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

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

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

.border-radius {
    border-radius: var(--border-radius);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--secondary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Image Placeholder */
.img-placeholder {
    background: linear-gradient(135deg, var(--primary-blue), #1a3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
}



