.text-primary{
    color: #fd5056 !important;
}

.kailash-hero-modern {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0.6) contrast(1.1);
    animation: heroZoom 20s ease-in-out infinite;
}

@keyframes heroZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(30, 41, 59, 0.9) 50%,
        rgba(15, 23, 42, 0.95) 100%
    );
    z-index: 2;
    mix-blend-mode: overlay;
}

.floating-elements-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-om {
    position: absolute;
    top: 20%;
    right: 15%;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.1);
    font-weight: bold;
    animation: omFloat 8s ease-in-out infinite;
    z-index: 4;
}

@keyframes omFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

.particle-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.particle-2 {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
    animation-duration: 5s;
}

.particle-3 {
    bottom: 40%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.particle-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 8s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-60px) translateX(-5px);
        opacity: 0;
    }
}

.z-index-10 {
    z-index: 10;
}

.registration-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 33px;
}

.registration-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.registration-badge:hover::before {
    left: 100%;
}

.badge-inner {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-heading-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-main-title {
    font-size: clamp(3.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 50%, #FFD700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
    position: relative;
}

.title-line {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideUp 1s ease forwards;
}

.title-line-1 { animation-delay: 0.2s; }
.title-line-2 { animation-delay: 0.4s; }
.title-line-3 { animation-delay: 0.6s; }
.title-line-4 { animation-delay: 0.8s; }

@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-glow {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    opacity: 0.6;
    border-radius: 1px;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scaleX(0.8); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scaleX(1.2); }
}

.hero-description {
    margin: 0 auto 3rem;
    position: relative;
}

.cta-buttons {
    gap: 1.5rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1F2937;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.3),
        0 4px 15px rgba(255, 165, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.4),
        0 8px 25px rgba(255, 165, 0, 0.3);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.btn-hero-secondary {
    background: transparent;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1F2937;
    transform: translateY(-3px);
    border-color: transparent;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.btn-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover .btn-wave,
.btn-hero-secondary:hover .btn-wave {
    left: 100%;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #FFD700, transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
}

.scroll-arrow {
    color: #FFD700;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 992px) {
    .hero-main-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .floating-om {
        font-size: 2.5rem;
        top: 10%;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .registration-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-description {
        padding: 0 1rem;
    }

}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-description p {
        font-size: 1.1rem;
    }
    
    .floating-elements-container {
        display: none;
    }
}

.kailash-hero-modern * {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.info-card {
    transition: all 0.3s ease;
    border: none;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.timing-card {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
}

.dates-card {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
}

.date-badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.date-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

.date-badge.available::after {
    content: "Book Now";
    display: block;
    font-size: 0.6em;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.om-symbol {
    font-size: 4rem;
    opacity: 0.1;
    font-weight: bold;
    color: #ff5700;
    position: relative;
}

@media (max-width: 768px) {
    .dates-grid .col-4 {
        margin-bottom: 0.5rem;
    }
}

[data-aos] {
    transition-duration: 0.6s;
}

.yatra-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.yatra-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
}

.yatra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.yatra-card:hover::before {
    opacity: 1;
}

.card-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-card:hover .card-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yatra-card:hover .image-overlay {
    opacity: 1;
}

.card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        transparent 100%
    );
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-card:hover .card-title-overlay {
    transform: translateY(0);
}

.yatra-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 2;
    background: transparent;
}

.card-title {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.yatra-card:hover .card-title::after {
    width: 80px;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 400;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 1.5rem;
}

.card-meta small {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.yatra-card:nth-child(1) .card-title::after {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
}

.yatra-card:nth-child(2) .card-title::after {
    background: linear-gradient(135deg, #0dcaf0, #17a2b8);
}

.yatra-card:nth-child(3) .card-title::after {
    background: linear-gradient(135deg, #28a745, #20c997);
}

@media (max-width: 768px) {
    .card-image-container {
        height: 240px;
    }
    
    .yatra-title {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .yatra-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 576px) {
    .card-image-container {
        height: 200px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .yatra-title {
        font-size: 1.25rem;
    }
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.card-image {
    animation: imageFadeIn 0.6s ease-out;
}

.accordion-button {
    font-size: 1.1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #0d6efd;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13,110,253,.25);
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.section-badge .badge {
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(13,110,253,0.2);
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

.inclusion-card,
.exclusion-card {
    transition: all 0.3s ease;
    border: none;
}

.inclusion-card:hover,
.exclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-header-section {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

.section-icon {
    font-size: 1.2rem;
}

.inclusion-card ul li i,
.exclusion-card ul li i {
    font-size: 0.8rem;
    min-width: 15px;
}

.inclusion-card ul li {
    font-size: 0.9rem;
}

.exclusion-card ul li {
    font-size: 0.9rem;
}

.registration-table-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.registration-table {
    width: 100%;
    margin: 0;
    border: none;
    background: transparent;
    font-size: 0.9rem;
}

.registration-table thead tr {
    background: linear-gradient(135deg, #fd5056 0%, #e63946 100%);
    color: white;
}

.registration-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    white-space: nowrap;
}

.step-number-header {
    width: 80px;
    text-align: center;
}

.step-action-header {
    width: 150px;
}

.step-details-header {
    min-width: 300px;
}

.step-time-header {
    width: 100px;
    text-align: center;
}

.registration-table tbody tr {
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.registration-table tbody tr:hover {
    background-color: #fdf2f2;
}

.registration-table tbody tr:last-child {
    border-bottom: none;
}

.registration-table tbody tr.completed {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
}

.table-row td {
    padding: 1.25rem 0.75rem;
    vertical-align: top;
    border: none;
    line-height: 1.5;
}

.step-number-cell {
    text-align: center;
    width: 80px;
    padding: 1rem 0.5rem;
}

.step-badge {
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #fd5056;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
}

.step-badge.completed {
    background: #fd5056;
    border-color: #fd5056;
}

.step-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fd5056;
    line-height: 1;
}

.step-badge.completed .step-number {
    color: white;
}

.check-icon {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.6rem;
    color: #28a745;
    background: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.step-action-cell {
    width: 150px;
    padding: 1rem 0.75rem;
}

.step-action {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.step-subtext {
    font-size: 0.75rem;
    color: #6c757d !important;
}

.step-details-cell {
    min-width: 300px;
    color: #495057;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 1rem 0.75rem;
}

.step-time-cell {
    text-align: center;
    width: 100px;
    padding: 1rem 0.5rem;
}

.time-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.time-fast {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.time-secure {
    background: #cce5ff;
    color: #004085;
    border-color: #b3d7ff;
}

.time-complete {
    background: #fd5056;
    color: white;
    border-color: #fd5056;
    font-weight: 600;
}

.process-summary {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #fd5056;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.summary-text h5 {
    margin-bottom: 0.5rem;
}

.summary-text p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.success-indicator {
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

@media (max-width: 992px) {
    .registration-table th,
    .registration-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .step-details-cell {
        min-width: 250px;
    }
    
    .step-action {
        font-size: 0.85rem;
    }
    
    .step-subtext {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 1.5rem;
    }
    
    .registration-table {
        font-size: 0.8rem;
    }
    
    .registration-table th,
    .registration-table td {
        padding: 0.75rem 0.25rem;
    }
    
    .step-details-cell {
        min-width: 200px;
        font-size: 0.75rem;
    }
    
    .step-action-cell {
        width: 120px;
    }
    
    .step-action {
        font-size: 0.8rem;
    }
    
    .step-subtext {
        display: none;
    }
    
    .time-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .process-summary {
        padding: 1rem;
    }
    
    .summary-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .registration-table-container {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-bottom: 1px solid #e9ecef;
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
    }

    .table-wrapper {
        min-width: 100%; 
        padding: 0;
        width: 100%;
    }

    .registration-table {
        width: 100%;
        min-width: 600px; 
        table-layout: fixed; 
        border-collapse: collapse;
    }

    .registration-table th,
    .registration-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
        white-space: nowrap; 
        overflow: hidden;
        text-overflow: ellipsis; 
        vertical-align: middle;
        text-align: center;
    }

    .step-number-cell {
        width: 60px;
        min-width: 60px; 
        padding: 0.5rem 0.25rem;
        text-align: center;
    }

    .step-badge {
        width: 32px;
        height: 32px;
        flex-shrink: 0; 
    }

    .step-number {
        font-size: 0.8rem;
    }

    .step-details-header,
    .step-details-cell {
        display: none;
    }

    .step-action-header {
        width: 100px;
        min-width: 100px; 
    }

    .step-time-header,
    .step-time-cell {
        width: 80px;
        min-width: 80px; 
        text-align: center;
    }

    .action-buttons {
        white-space: nowrap;
        padding: 0.25rem;
    }

    .action-buttons button,
    .action-buttons a {
        margin: 0 0.125rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        min-width: 32px; 
    }

    .process-summary {
        margin-top: 1.5rem;
        padding: 0.75rem;
        text-align: center;
    }

    .summary-text h5 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    body {
        overflow-x: hidden;
    }

    .main-container,
    .page-wrapper {
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .registration-table {
        min-width: 500px; 
    }

    .step-action-header {
        min-width: 80px; 
    }

    .action-buttons button,
    .action-buttons a {
        padding: 0.2rem 0.4rem;
        font-size: 0.65rem;
        min-width: 28px;
    }
}

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #fd5056;
    border-radius: 3px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #e43d47;
}

.registration-table td:focus-within,
.registration-table th:focus-within {
    outline: 2px solid #fd5056;
    outline-offset: -2px;
}

.step-badge:focus {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
}

@media print {
    .registration-table {
        font-size: 10pt;
    }
    
    .registration-table th,
    .registration-table td {
        border: 1px solid #dee2e6;
        padding: 0.5rem;
    }
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.text-danger {
    color: #fd5056 !important;
}

.hover-primary:hover {
    color: #fd5056 !important;
}

.section-badge .badge {
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(253, 80, 86, 0.2);
    letter-spacing: 0.5px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(253, 80, 86, 0.1);
}

.blog-image-wrapper {
    height: 220px;
    position: relative;
}

.blog-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 80, 86, 0.7) 0%, rgba(253, 80, 86, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image-overlay {
    opacity: 1;
}

.blog-category-badge {
    top: 15px;
    left: 15px;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-date-badge {
    top: 15px;
    right: 15px;
    z-index: 2;
}

.date-circle {
    width: 50px;
    height: 50px;
    background: rgba(253, 80, 86, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(253, 80, 86, 0.3);
}

.date-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: -2px;
}

.date-day {
    font-size: 1.2rem;
    line-height: 1;
}

/* Blog Content */
.blog-content {
    position: relative;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.author-avatar {
    font-size: 0.8rem;
}

.avatar-circle {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
}

.author-name {
    font-size: 0.8rem;
}

.reading-time {
    font-size: 0.8rem;
}

.blog-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.blog-title a {
    display: block;
}

.blog-title a:hover {
    color: #fd5056 !important;
}

.blog-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-footer {
    border-top: 1px solid #f1f3f4;
    padding-top: 1rem;
}

.blog-tags .badge {
    font-size: 0.7rem;
    font-weight: 500;
}

.read-more-link {
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.read-more-link:hover {
    color: #e43d47 !important;
    transform: translateX(4px);
}

.read-more-link i {
    transition: transform 0.2s ease;
}

.read-more-link:hover i {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-image-wrapper {
        height: 200px;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
    }
    
    .display-4 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-image-wrapper {
        height: 180px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .blog-title {
        font-size: 0.95rem;
    }
    
    .blog-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 1rem;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .blog-image-wrapper {
        height: 160px;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .section-badge .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .date-circle {
        width: 40px;
        height: 40px;
    }
    
    .date-month {
        font-size: 0.65rem;
    }
    
    .date-day {
        font-size: 1rem;
    }
    
    .blog-category-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Print Styles */
@media print {
    .blog-card {
        box-shadow: none;
        border: 1px solid #dee2e6;
        break-inside: avoid;
    }
    
    .blog-image-wrapper {
        height: auto;
        max-height: 150px;
    }
    
    .blog-image {
        max-height: 150px;
        object-fit: cover;
    }
}

/* Focus States for Accessibility */
.blog-card:focus-within {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
}

.blog-title a:focus {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Custom Scrollbar for Blog Section */
.blog-card::-webkit-scrollbar {
    width: 4px;
}

.blog-card::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.blog-card::-webkit-scrollbar-thumb {
    background: #fd5056;
    border-radius: 2px;
}

.blog-card::-webkit-scrollbar-thumb:hover {
    background: #e43d47;
}

.col-lg-12 .yatra-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.6) 100%);
    border-left: 4px solid #fd5056;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.col-lg-12 .yatra-paragraph::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 80, 86, 0.02), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 0;
}

.col-lg-12 .yatra-paragraph:hover::before {
    transform: translateX(100%);
}

.col-lg-12 .yatra-paragraph:hover {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(233, 236, 239, 0.8) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
    border-left-width: 6px;
}

.col-lg-12 .yatra-paragraph:last-child {
    margin-bottom: 0;
}

.col-lg-12 .yatra-paragraph:last-of-type {
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.5rem;
}

.col-lg-12 .yatra-paragraph:first-child::after {
    content: '"';
    position: absolute;
    top: -8px;
    left: 20px;
    font-size: 3rem;
    color: #fd5056;
    font-weight: 300;
    line-height: 1;
    z-index: -1;
}

.col-lg-12 .yatra-paragraph:last-child::before {
    content: '"';
    position: absolute;
    bottom: -25px;
    right: 20px;
    font-size: 3rem;
    color: #fd5056;
    font-weight: 300;
    line-height: 1;
    z-index: -1;
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .col-lg-12 .yatra-paragraph {
        font-size: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .col-lg-12 .yatra-paragraph::after,
    .col-lg-12 .yatra-paragraph::before {
        font-size: 2.5rem;
        left: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .col-lg-12 .yatra-paragraph {
        font-size: 0.95rem;
        padding: 0.875rem;
        border-left-width: 3px;
        border-radius: 0 6px 6px 0;
        margin-bottom: 0.875rem;
    }
    
    .col-lg-12 .yatra-paragraph:hover {
        transform: translateX(2px);
        border-left-width: 4px;
    }
    
    .col-lg-12 .yatra-paragraph::after,
    .col-lg-12 .yatra-paragraph::before {
        font-size: 2rem;
        left: 12px;
        right: 12px;
        top: -6px;
        bottom: -20px;
    }
}

@media (max-width: 576px) {
    .col-lg-12 .yatra-paragraph {
        font-size: 0.9rem;
        padding: 0.75rem;
        border-radius: 0;
        border-left: none;
        border: 1px solid rgba(253, 80, 86, 0.1);
        margin: 0 0 0.75rem 0;
    }
    
    .col-lg-12 .yatra-paragraph:first-child {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }
    
    .col-lg-12 .yatra-paragraph:last-child {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        margin-bottom: 1rem;
    }
    
    .col-lg-12 .yatra-paragraph::after,
    .col-lg-12 .yatra-paragraph::before {
        display: none;
    }
    
    .col-lg-12 .yatra-paragraph:hover {
        transform: none;
    }
}

.col-lg-12 .yatra-paragraph:focus-within {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .col-lg-12 .yatra-paragraph {
        border: 2px solid #fd5056;
        background: #ffffff;
        color: #212529;
    }
    
    .col-lg-12 .yatra-paragraph:hover {
        border-width: 3px;
        background: #fafafa;
    }
}

/* Print styles */
@media print {
    .col-lg-12 .yatra-paragraph {
        box-shadow: none;
        border: 1px solid #dee2e6;
        background: #fff;
        color: #000;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    .col-lg-12 .yatra-paragraph::after,
    .col-lg-12 .yatra-paragraph::before {
        color: #000 !important;
        font-size: 2rem;
    }
}

/* Packages Section Styles */
.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-badge .badge {
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.2);
    letter-spacing: 0.5px;
}

/* Package Cards */
.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f1f3f4;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(253, 80, 86, 0.1);
    border-color: rgba(253, 80, 86, 0.15);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #fd5056 0%, #e63946 100%);
}

.package-image-wrapper {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.package-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-card:hover .package-image {
    transform: scale(1.1);
}

.package-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover .package-image-overlay {
    opacity: 1;
}

.package-type-badge .badge {
    font-size: 0.75rem;
    box-shadow: none;
}

.package-location-tag {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.location-circle {
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.location-text {
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Package Content */
.package-content {
    position: relative;
    z-index: 2;
}

.package-header {
    border-bottom: 1px solid #f1f3f4;
    padding-bottom: 1rem;
}

.package-title {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-description {
    min-height: 60px;
}

.package-description p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Package Details */
.package-details {
    padding: 1rem 0;
}

.detail-item {
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-2px);
}

.detail-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
}

.detail-value {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Package CTA */
.package-cta {
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4;
}

.btn-danger {
    background: linear-gradient(135deg, #fd5056 0%, #e63946 100%);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.3);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.4);
    background: linear-gradient(135deg, #e63946 0%, #d63031 100%);
    color: white;
}

.btn-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-danger:hover .btn-wave {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .package-image-wrapper {
        height: 240px;
    }
    
    .package-title {
        font-size: 1.1rem;
    }
    
    .package-description p {
        font-size: 0.8rem;
    }
    
    .detail-value {
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .package-card {
        margin-bottom: 2rem;
    }
    
    .package-image-wrapper {
        height: 200px;
    }
    
    .package-content {
        padding: 1.25rem;
    }
    
    .package-title {
        font-size: 1rem;
        -webkit-line-clamp: 1;
    }
    
    .package-description {
        min-height: 50px;
    }
    
    .package-description p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .package-details .row {
        margin: 0 -0.5rem;
    }
    
    .package-details .col-4 {
        padding: 0 0.5rem;
    }
    
    .detail-item {
        padding: 0.75rem 0;
    }
    
    .detail-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
    }
    
    .detail-label {
        font-size: 0.65rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .package-image-wrapper {
        height: 180px;
    }
    
    .package-type-badge {
        margin: 1rem;
    }
    
    .package-type-badge .badge {
        font-size: 0.7rem;
        padding: 0.5rem 0.75rem;
    }
    
    .package-location-tag {
        padding: 0.4rem 0.75rem;
        margin: 1rem;
    }
    
    .location-circle {
        width: 30px;
        height: 30px;
    }
    
    .location-text {
        font-size: 0.8rem;
    }
    
    .package-content {
        padding: 1rem;
    }
    
    .package-title {
        font-size: 0.95rem;
    }
    
    .btn-danger {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}

@media print {
    .package-card {
        box-shadow: none;
        border: 1px solid #dee2e6;
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .package-image-wrapper {
        height: auto;
        max-height: 200px;
    }
    
    .package-image {
        max-height: 200px;
        object-fit: cover;
    }
    
    .btn-danger {
        background: #fd5056 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
}

.package-card:focus-within {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
}

.package-title:focus,
.btn-danger:focus {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
    border-radius: 4px;
}

.package-card::-webkit-scrollbar {
    width: 4px;
}

.package-card::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.package-card::-webkit-scrollbar-thumb {
    background: #fd5056;
    border-radius: 2px;
}

.package-card::-webkit-scrollbar-thumb:hover {
    background: #e43d47;
}

.dates-card {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.dates-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fd5056, #e63946, #fd5056);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Calendar Header */
.calendar-header {
    background: rgba(253, 80, 86, 0.1);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(253, 80, 86, 0.2);
}

.calendar-nav {
    position: relative;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(253, 80, 86, 0.2);
    border-color: #fd5056;
    transform: scale(1.1);
}

.month-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.regular-dot {
    background: rgba(13, 110, 253, 0.7);
}

.fullmoon-dot {
    background: linear-gradient(135deg, #fd5056, #e63946);
    box-shadow: 0 0 8px rgba(253, 80, 86, 0.4);
}

/* Calendar Grid */
.calendar-grid {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    min-height: 300px;
}

.calendar-weekdays {
    margin-bottom: 0.5rem;
    text-align: center;
}

.calendar-weekdays small {
    font-size: 0.65rem;
    line-height: 1.2;
}

.calendar-row {
    margin-bottom: 0.25rem;
}

.calendar-day {
    padding: 0.25rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13.5%;
}

.day-number {
    width: 100%;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.empty-date {
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    cursor: default;
}

.departure-date {
    background: rgba(13, 110, 253, 0.2);
    color: #0d6efd;
    border-color: rgba(13, 110, 253, 0.4);
}

.fullmoon-date {
    background: linear-gradient(135deg, #fd5056, #e63946);
    color: white;
    border-color: #fd5056;
    box-shadow: 0 0 12px rgba(253, 80, 86, 0.4);
    transform: scale(1.1);
    font-size: 0.9rem;
}

.day-number.hovered {
    transform: scale(1.2);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.day-number.hovered.departure-date {
    background: rgba(13, 110, 253, 0.3);
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
}

.day-number.hovered.fullmoon-date {
    background: linear-gradient(135deg, #e63946, #d63031);
    box-shadow: 0 0 20px rgba(253, 80, 86, 0.6);
    transform: scale(1.3);
}

/* Book Now Button */
.date-overlay {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, #fd5056, #e63946);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.4);
}

.day-number.hovered .date-overlay {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    top: 50%;
}

.book-btn {
    background: none;
    border: none;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.2s ease;
}

.book-btn:hover {
    transform: scale(1.05);
}

.book-btn i {
    font-size: 0.75rem;
}

.book-btn span {
    white-space: nowrap;
}

/* Package Toggle */
.package-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.form-check-input:checked {
    background-color: #fd5056;
    border-color: #fd5056;
}

.form-check-input:checked::after {
    border-color: #fd5056;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.form-check-label:hover {
    color: white;
}

.form-check-input:checked + .form-check-label {
    color: #fd5056;
    font-weight: 600;
}

/* Availability Summary */
.availability-summary {
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.availability-badge {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-grid {
        padding: 0.75rem;
        min-height: 250px;
    }
    
    .calendar-day {
        height: 50px;
    }
    
    .day-number {
        height: 28px;
        font-size: 0.8rem;
    }
    
    .date-overlay {
        width: 100px;
        height: 32px;
    }
    
    .book-btn {
        font-size: 0.65rem;
    }
    
    .package-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .dates-card {
        padding: 1.25rem;
    }
    
    .calendar-header {
        padding: 0.75rem;
    }
    
    .month-title {
        font-size: 1.1rem;
    }
    
    .calendar-weekdays small {
        font-size: 0.6rem;
    }
    
    .calendar-row .col-1 {
        padding: 0.125rem;
    }
    
    .day-number {
        height: 31px;
        font-size: 0.75rem;
    }
    
    .date-overlay {
        width: 80px;
        height: 28px;
        top: -40%;
    }
    
    .book-btn span {
        display: none;
    }
    
    .book-btn i {
        font-size: 0.7rem;
    }
}

/* Print Styles */
@media print {
    .dates-card {
        background: white !important;
        color: black !important;
        box-shadow: none;
    }
    
    .calendar-grid {
        background: #f8f9fa !important;
    }
    
    .day-number.departure-date {
        background: #e3f2fd !important;
        color: #1976d2 !important;
    }
    
    .day-number.fullmoon-date {
        background: #ffebee !important;
        color: #c62828 !important;
    }
    
    .nav-btn, .book-btn {
        display: none;
    }
}

.calendar-day:focus-within {
    outline: 2px solid #fd5056;
    outline-offset: -2px;
}

.book-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    border-radius: 4px;
}

@media only screen and (max-width: 1199px) {
    .main-responsive-nav .mean-bar {
        z-index: 100 !important;
    }
}