/* Trip Details Page Styles */

.travels-section {
    background: linear-gradient(
224deg, #ff9e0085 20%, #c63333 50%);
    min-height: 100vh;
    padding: 2rem 0;
}

.trip-details-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.trip-header {
    background: linear-gradient(135deg, #c83333 0%, #a62e2e 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.trip-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trip-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.trip-meta .alert {
    margin-bottom: 0;
    font-weight: 600;
    border-radius: 25px;
}

.trip-description {
    padding: 2rem;
    line-height: 1.8;
    color: #555;
}

.trip-images-section {
    padding: 2rem;
    background: #f8f9fa;
}

.slides-images {
    position: relative;
}

.price-cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 200px;
}

.price-card h4 {
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.price-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
}

.kids-price {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.kids-price h5 {
    margin-bottom: 1rem;
}

.booking-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.search-form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.btn-search {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-search:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-1px);
}

.card-image {
    overflow: hidden;
    border-radius: 0.75rem 0.75rem 0 0;
}

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

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

.h-100 {
    height: 100% !important;
}

.hover-elevate-up:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem 0.5rem rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3f4254;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #7e8299;
    line-height: 1.6;
}

.flex-column {
    flex-direction: column !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}
.section-title{
    color: #c83333 !important;
}
.btn-primary {
    background-color: #c83333;
    border-color: #c83333;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0074cc;
    border-color: #0074cc;
    color: white;
    transform: translateY(-1px);
}

.w-100 {
    width: 100% !important;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

/* .bg-primary {
    background-color: #ea972d !important;
} */

.bg-warning {
    background-color: #ffc700 !important;
}

.alert-info {
    color: #2d5a8c;
    background-color: #e1f0ff;
    border-color: #b5d4ff;
    border-radius: 0.5rem;
    padding: 1rem;
}

.text-center {
    text-align: center !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.trip-details-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trip-header-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    /* margin-bottom: 2rem; */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.trip-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.trip-meta-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.badge-primary {
    background: linear-gradient(46deg, #c83333 0%, #a62e2e 100%);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.trip-dates {
    display: flex;
    gap: 2rem;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #e2830736;
    border-radius: 10px;
    flex: 1;
}

.date-item i {
    opacity: 0.8;
}

.date-item div small {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.date-item div .fw-bold {
    font-size: 1.1rem;
    color: #1e293b;
}

.booking-action {
    text-align: center;
}

.btn-booking {
    background: linear-gradient(135deg, #c83333 0%, #a62e2e 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 51, 51, 0.3);
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    color: white;
}

.images-gallery {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #f8f9fa;
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.thumbnail-images {
    margin-top: 1rem;
}

.thumbnail-images .row {
    justify-content: center;
}

.thumbnail-images .col-3 {
    padding: 0.25rem;
}

.thumbnail-images img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    transform: scale(1.05);
    border-color: #c83333;
    box-shadow: 0 4px 12px rgba(0, 158, 247, 0.3);
}

.trip-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: fit-content;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.info-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.alert-special {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 1rem;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.price-cards {
    display: grid;
    gap: 1rem;
}

.price-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.room-type {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    /* color: #969605; */
}

.kids-price-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.kids-price-info p:last-child {
    margin-bottom: 0;
}

/* Price Table Styles */
.table {
    margin-bottom: 0;
}

.table th {
    padding: 1rem 0.75rem;
    border: 2px solid #e4e6ea;
}

.table td {
    padding: 1rem 0.75rem;
    border: 2px solid #e4e6ea;
    vertical-align: middle;
}

.bg-light-primary {
    background-color: #e1f5fe !important;
}

.bg-light-success {
    background-color: #e8f5e8 !important;
}

.bg-light-warning {
    background-color: #fff8e1 !important;
}

.bg-light-info {
    background-color: #e3f2fd !important;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trip-meta {
        flex-direction: column;
        align-items: center;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
    }

    .trip-title {
        font-size: 1.8rem;
    }

    .card-body {
        padding: 1rem;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Cursor pointer */
.cursor-pointer {
    cursor: pointer;
}

/* Modern Trip Card Styles */
.trip-card-modern {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.trip-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Price Badge Overlay */
.price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
  background: linear-gradient(129deg, #d48827 20%, #c63333 50%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: 600;
}

.price-amount {
    font-size: 1.1rem;
    line-height: 1;
}

.price-currency {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Destination Badge */
.destination-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(129deg, #c83333 0%, #a62e2e 100%);

    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.destination-badge i {
    opacity: 0.8;
}

/* Trip Title */
.trip-title {
    color: #1a202c;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

/* Trip Info */
.trip-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.info-item i {
    flex-shrink: 0;
    opacity: 0.8;
    margin-right: 8px;
}

.info-label {
    font-size: 0.7rem;
    color: #718096;
    font-weight: 500;
    margin-bottom: 1px;
}

.info-value {
    font-size: 0.85rem;
    color: #2d3748;
    font-weight: 600;
}

/* Dates Row - New Simple Design */
.dates-row {
    justify-content: center !important;
}

.dates-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.date-block {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.date-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.date-block.departure {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(102, 126, 234, 0.15) 100%);
    border-color: rgba(102, 126, 234, 0.2);
}

.date-block.return {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.15) 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

.date-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    gap: 4px;
}

.date-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a5568;
}

.date-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.date-main {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
}

.time-main {
    font-size: 0.8rem;
    font-weight: 600;
    color: #718096;
    opacity: 0.9;
}

.arrow-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 2px solid #cbd5e0;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.8rem;
    min-width: 60px;
    transition: all 0.3s ease;
}

.arrow-separator:hover {
    background: linear-gradient(135deg, #c63333 0%, #ff9e0085 100%);
    color: white;
    border-color: #c63333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.2);
}

.separator-text {
    font-size: 0.7rem;
    opacity: 0.8;
}

.arrow-separator i {
    transition: transform 0.3s ease;
}

.arrow-separator:hover i {
    transform: translateX(-2px);
}

/* Modern Button */
.btn-modern {
  background: linear-gradient(129deg, #c83333 0%, #a62e2e 100%);
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.btn-modern i {
    transition: transform 0.3s ease;
}

.btn-modern:hover i {
    transform: translateX(-3px);
}

/* Trip Image Styles */
.trip-image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.trip-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trip-image:hover {
    transform: scale(1.05);
}

.trip-image-container .d-flex {
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .trip-card-modern {
        margin-bottom: 1rem;
    }

    .trip-image-container {
        height: 160px;
    }

    .trip-info {
        gap: 4px;
    }

    .info-item {
        padding: 3px 0;
    }

    .dates-container {
        flex-direction: column;
        gap: 12px;
    }

    .date-block {
        min-width: 100px;
        padding: 10px 12px;
    }

    .arrow-separator {
        min-width: 50px;
        padding: 6px 8px;
        font-size: 0.7rem;
    }

    .separator-text {
        font-size: 0.6rem;
    }

    .trip-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .trip-card-modern {
        margin-bottom: 1rem;
    }

    .price-badge {
        padding: 6px 12px;
        top: 12px;
        right: 12px;
    }

    .price-amount {
        font-size: 1rem;
    }

    .destination-badge {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .trip-image-container {
        height: 140px;
    }

    .date-block {
        min-width: 90px;
        padding: 8px 10px;
    }

    .date-main {
        font-size: 0.9rem;
    }

    .time-main {
        font-size: 0.7rem;
    }

    .arrow-separator {
        min-width: 45px;
        padding: 4px 6px;
        font-size: 0.6rem;
    }

    .separator-text {
        font-size: 0.55rem;
    }

    .btn-modern {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Gallery Modal Styles */
.modal-content {
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

#modalImage {
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
}

.btn-close {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    filter: none;
}

.btn-close:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Main image hover effect */
.main-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Home Slider Cards - Special Adjustments */
.swiper-travels .swiper-slide .trip-card-modern {
    height: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.swiper-travels .swiper-slide .trip-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.swiper-travels .trip-image-container {
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.swiper-travels .trip-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.swiper-travels .trip-image-container:hover img {
    transform: scale(1.05);
}

.swiper-travels .card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.swiper-travels .trip-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 12px;
    flex-shrink: 0;
    font-weight: 600;
    color: #2d3748;
}

.swiper-travels .trip-info {
    flex: 1;
    margin-bottom: 16px;
}

.swiper-travels .dates-container {
    gap: 12px;
}

.swiper-travels .date-block {
    min-width: 105px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
}

.swiper-travels .date-main {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
}

.swiper-travels .time-main {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 2px;
}

.swiper-travels .arrow-separator {
    min-width: 50px;
    padding: 6px 8px;
    font-size: 0.8rem;
    background: #e2e8f0;
    border-radius: 6px;
    color: #4a5568;
}

.swiper-travels .separator-text {
    font-size: 0.7rem;
    font-weight: 500;
}

.swiper-travels .btn-modern {
    padding: 10px 16px;
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.swiper-travels .btn-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

/* Home Slider Responsive */
@media (max-width: 1200px) {
    .swiper-travels .trip-card-modern {
        max-width: 350px;
    }

    .swiper-travels .trip-image-container {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .swiper-travels .trip-card-modern {
        max-width: 320px;
    }

    .swiper-travels .dates-container {
        flex-direction: column;
        gap: 8px;
    }

    .swiper-travels .arrow-separator {
        align-self: center;
        margin: 6px 0;
    }
}

@media (max-width: 768px) {
    .swiper-travels .trip-card-modern {
        max-width: 300px;
    }

    .swiper-travels .trip-image-container {
        height: 160px;
    }

    .swiper-travels .card-body {
        padding: 14px;
    }

    .swiper-travels .trip-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .swiper-travels .date-block {
        min-width: 110px;
        padding: 8px 10px;
    }

    .swiper-travels .date-main {
        font-size: 0.9rem;
    }

    .swiper-travels .time-main {
        font-size: 0.75rem;
    }

    .swiper-travels .arrow-separator {
        min-width: 45px;
        padding: 5px 7px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .swiper-travels .trip-card-modern {
        max-width: 280px;
    }

    .swiper-travels .trip-image-container {
        height: 140px;
    }

    .swiper-travels .trip-title {
        font-size: 0.95rem;
    }

    .swiper-travels .card-body {
        padding: 12px;
    }

    .swiper-travels .dates-container {
        gap: 6px;
    }

    .swiper-travels .date-block {
        min-width: 100px;
        padding: 6px 8px;
    }
}

/* Events Horizontal Design */
.sec_events {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sec_events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="events-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.04"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.04"/><circle cx="60" cy="30" r="0.8" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23events-pattern)"/></svg>');
    pointer-events: none;
}

.events-swiper-container {
    position: relative;
    padding: 20px 0;
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    color: #9aa0a6;
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.event-date-badge .date {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #c63333;
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5f6368;
    text-transform: uppercase;
    margin-top: 2px;
}

.event-content {
    padding: 20px;
    background: white;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #202124;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.event-meta {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #5f6368;
}

.event-date-text {
    font-weight: 500;
}

.event-description {
    color: #3c4043;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.event-card .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.event-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

/* Events Navigation */
.events-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 0 20px;
}

.events-btn-prev,
.events-btn-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e8eaed;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.events-btn-prev:hover,
.events-btn-next:hover {
    background: #c63333;
    color: white;
    border-color: #c63333;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
}

.events-btn-prev::after,
.events-btn-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.events-pagination {
    position: static;
    margin-top: 20px;
}

/* Events Responsive */
@media (max-width: 768px) {
    .event-card {
        min-height: 320px;
    }

    .event-image {
        height: 160px;
    }

    .event-content {
        padding: 16px;
    }

    .event-title {
        font-size: 1rem;
    }

    .event-description {
        font-size: 0.85rem;
    }

    .events-navigation {
        padding: 0 10px;
    }

    .events-btn-prev,
    .events-btn-next {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .event-card {
        min-height: 300px;
    }

    .event-image {
        height: 140px;
    }

    .event-content {
        padding: 14px;
    }

    .event-title {
        font-size: 0.95rem;
    }
}

.btn_swiper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.2);
    color: #c63333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
}

.btn_swiper:hover {
    background: #c63333;
    color: white;
    opacity: 1;
    transform: scale(1.05);
    border-color: #c63333;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn_swiper::before {
    font-size: 1.2rem;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #c63333;
    transform: scale(1.2);
    opacity: 1;
}

/* About Section Styles */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.8" fill="%23ffffff" opacity="0.03"/><circle cx="85" cy="85" r="0.8" fill="%23ffffff" opacity="0.03"/><circle cx="45" cy="65" r="0.6" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="25" r="0.6" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    pointer-events: none;
}

/* About Content */
.about-content {
    padding: 1.5rem 0;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Features Grid */
.about-features {
    margin: 1.5rem 0;
}

.feature-item {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c63333 0%, #ff9e0085 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-item h6 {
    font-size: 1rem;
    color: #343a40;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.4;
}

/* About Image */
.about-image-container {
    position: relative;
    text-align: center;
}

.about-main-image {
    position: relative;
    display: inline-block;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.about-main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.about-main-image:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-main-image:hover .image-overlay {
    opacity: 1;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    border-radius: 20px;
}

.placeholder-content {
    padding: 2rem;
}

.placeholder-content i {
    opacity: 0.6;
}

/* Floating Stats Card */
.stats-card {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background: linear-gradient(135deg, #c63333 0%, #ff9e0085 100%);
    color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(255,255,255,0.2);
    min-width: 140px;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

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

.stats-content {
    text-align: center;
}

.stats-number {
    margin-bottom: 0.5rem;
}

.stats-number .counter {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stats-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

/* About Button */
.about-section .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    background: linear-gradient(135deg, #c63333 0%, #ff9e0085 100%);
    border: none;
    color: white;
}

.about-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* About Responsive */
@media (max-width: 992px) {
    .about-image-container {
        margin-top: 3rem;
    }

    .stats-card {
        position: static;
        margin-top: 2rem;
        display: inline-block;
        animation: none;
    }

    .about-features .col-sm-6 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .about-description p {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .stats-card {
        min-width: 120px;
        padding: 1.25rem;
    }

    .stats-number .counter {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-content {
        padding: 1rem 0;
    }

    .about-description p {
        font-size: 0.95rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-item h6 {
        font-size: 0.9rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .stats-card {
        min-width: 100px;
        padding: 1rem;
    }

    .stats-number .counter {
        font-size: 1.5rem;
    }

    .stats-label {
        font-size: 0.8rem;
    }
}
/* Custom Modern Profile Styles */
.profile-dashboard {
    background: linear-gradient(135deg, #c83333 0%, #a62e2e 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.profile-sidebar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-sidebar:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.profile-sidebar-header {
    background: linear-gradient(135deg, #c83333 0%, #a62e2e 100%);
    color: white;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.profile-sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.profile-user-info h6 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.profile-user-email {
    opacity: 0.8;
    font-size: 0.9rem;
}

.profile-nav {
    padding: 1.5rem 0;
}

.profile-nav-item {
    margin-bottom: 0.5rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-nav-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.profile-nav-item.active {
    background: linear-gradient(135deg, #c83333 0%, #a62e2e 100%);
    box-shadow: 0 5px 15px rgba(200, 51, 51, 0.3);
}

.profile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.profile-nav-item.active .profile-nav-link {
    color: white;
}

.profile-nav-link:hover {
    color: #c83333;
}

.profile-nav-item.active .profile-nav-link:hover {
    color: white;
    opacity: 0.9;
}

.profile-nav-icon {
    margin-left: 0.75rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.profile-nav-item:hover .profile-nav-icon {
    transform: scale(1.1);
}

.profile-content-area {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.profile-content-area:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Social Media Section */
.social-footer {
    background: linear-gradient(135deg, #c83333 0%, #a62e2e 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb Styling */
.profile-breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.breadcrumb-link {
    color: #c83333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: #764ba2;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        padding: 0 0.5rem;
    }

    .profile-sidebar,
    .profile-content-area {
        margin-bottom: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }
}
