* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* transition: all .2s; */
    font-family: "Poppins", sans-serif;
}

.section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.section-header {
    font-size: 33px;
    font-weight: 700;
    color: #2c3e50;
    padding: 15px 30px;
    /* border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05); */
    /* display: inline-block; */
    margin: 0 auto 40px auto;
    position: relative;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: all 0.3s ease;
}

/* Section header container alignment */
.text-center .section-header,
.container .section-header {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.noselect {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grabbing;
}

/* .header-top {
    background-color: #030e2e;
    width: 100%;
    display: flex;
    height: 50px;
}

.login-register-buttons:hover {
    border-bottom: 1px solid transparent;
}

.login-register-buttons:hover {
    border-bottom: 1px solid rgb(42, 80, 252);
} */

/* .header-top {
    background-color: #030e2e;
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
} */
/* ! HEADER TOP SECTION START */
.header-top {
    background: linear-gradient(135deg, #020c2e 0%, #1a1f3a 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Contact slide animation */
.contact-wrapper {
    height: 24px;
    width: 200px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0 12px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.contact-text {
    animation: slideDown 0.5s ease forwards;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 12px;
    font-size: 14px;
    font-weight: 600;
}

.fade-message {
    opacity: 0;
    transition: all 1s ease;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.fade-message.show {
    opacity: 1;
    transform: translateY(0);
}


/* Slide out/in animation */
@keyframes slideUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Message fade */
.fade-message {
    opacity: 0;
    transition: opacity 1s ease;
    font-weight: bold;
    color: white;
}

.fade-message.show {
    opacity: 1;
}

/* Responsive spacing */
@media (max-width: 991px) {
    .header-top .contact-wrapper {
        display: none !important;
    }

    .header-top .auth-links {
        display: none !important;
    }

    .header-top .container-fluid {
        justify-content: center !important;
    }

    .header-message {
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .auth-links {
        justify-content: center;
        margin-top: 10px;
    }
}

/* ! HEADER TOP END */

.contact-info i {
    color: #4da8ff;
}

.login-register-buttons {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.login-register-buttons::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: all 0.3s ease;
}

.login-register-buttons:hover {
    color: #ffffff;
    background: rgba(77, 168, 255, 0.3);
    border: 1px solid rgba(77, 168, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(77, 168, 255, 0.3);
}

.login-register-buttons:hover::before {
    left: 100%;
}

.nav-container {
    justify-content: space-between;
    font-size: 14px !important;
    font-weight: bold;
}

.nav-list a {
    border-bottom: 1px transparent solid;
}

.nav-list a:hover {
    /* border-bottom: 1px rgb(42, 80, 252) solid; */
    color: rgb(148, 17, 17) !important;
}

/* ! SUB-MENU START */
.sub-menu {
    background-color: white;
    box-shadow: -1px 6px 24px -2px rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    top: 70%;
    left: -50%;
    min-height: 400px;
    min-width: 600px;
}

.sub-menu-wrapper {
    transform: translateX(-50%);
    top: 150%;
    visibility: hidden;
    left: 100%;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sub-menu-wrapper-2 {
    top: 150%;
    visibility: hidden;
    right: -20%;
}

.menu-item:hover .sub-menu-wrapper-2,
.sub-menu-wrapper-2:hover {
    display: block !important;
    visibility: visible;
}

.submenu-buffer {
    position: absolute;
    top: 100%;
    left: 0;
    height: 20px;
    width: 100%;
    background: transparent;
    z-index: 1;
}

.menu-item:hover .sub-menu-wrapper,
.sub-menu-wrapper:hover {
    display: block !important;
    visibility: visible;
    margin-top: 0;

}

.sub-menu-list {
    color: white;
    font-weight: lighter;
}

.sub-menu-container {
    width: 100%;
    min-height: 500px;
    height: 100%;
}

.sub-menu-img {
    margin-top: 5%;
    width: 100%;
    min-height: 250px;
    object-fit: contain;
    border-radius: 20px;
}

.sub-menu a {
    text-decoration: none;
    color: inherit;
    border: inherit !important;
    transition: all .5s;
}

.sub-menu a:hover {
    text-decoration: none;
    color: rgb(15, 15, 179);
}


.sub-menu-item:hover {
    color: #d12f2f !important;
}

/* ! SUB-MENU END */


/* ! SEARCH AREA */
.search-area {
    position: absolute;
    background-color: white;
    width: 1120px;
    max-width: 95%;
    min-height: 150px;
    /* top: 50%; */
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Modern Search Pills */
.search-nav-pills {
    gap: 0.75rem;
}

.search-pill {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: #495057 !important;
    /* color: black !important; */
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: fit-content;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.search-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.search-pill:hover {
    color: white !important;
    border-color: #343a40;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 58, 64, 0.3);
}

.search-pill:hover::before {
    left: 0;
}

.search-pill.active {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    color: white !important;
    border-color: #212529;
    box-shadow: 0 5px 15px rgba(52, 58, 64, 0.4);
}

.search-pill i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.search-pill:hover i {
    transform: scale(1.1);
}

/* Search Form Styling */
.search-form-row {
    margin-top: 1.5rem;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    padding-right: 3rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    border-color: #4da8ff;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(77, 168, 255, 0.15);
    outline: none;
}

.search-input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.search-input:focus+.search-input-icon {
    color: #4da8ff;
}

.search-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.search-select:focus {
    border-color: #4da8ff;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(77, 168, 255, 0.15);
    outline: none;
}

.btn-search {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 58, 64, 0.3);
}

.btn-search:hover::before {
    left: 0;
}

.btn-search:active {
    transform: translateY(0);
}

/* Legacy styles for compatibility */
#search-input,
#search-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#search-input:focus,
#search-select:focus {
    border-color: #4da8ff;
    box-shadow: none;
    outline: none;
}

.title-icon {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.title-icon i {
    margin-right: 10px;
}

.form-control,
.form-select {
    border-radius: 8px;
}

.btn-dark {
    border-radius: 20px;
    padding: 10px 25px;
}


/* ! SEARCH AREA */


/* ! FEATURES START */

/* .square-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.item{
    width: 200px;
    height: 200px;
}

.carousel-wrapper {
    position: relative;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-carousel .owl-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 12px 18px;
    border-radius: 50%;
    pointer-events: all;
    transition: all 0.3s ease;
    z-index: 10;
}

.owl-carousel .owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -50px;
}

.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -50px;
}

.owl-dots {
    display: none;
}
 */


/* Featured Tours Carousel Styles */
.featured-tours-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.featured-tours-section .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-tours-section .rounded-item {
    width: 100%;
    max-width: 180px;
    margin: 0;
}

.featured-tours-section .rounded-item a {
    text-decoration: none;
    display: block;
}

.rounded-item {
    width: 180px;
}

.tour-img {
    width: 180px !important;
    height: 180px !important;
    object-fit: cover;
    border-radius: 50% !important;
    display: block;
    margin: 0 auto 8px;
    transition: transform 0.3s ease;
}

.featured-tours-section .tour-img {
    width: 100% !important;
    height: auto !important;
    max-width: 180px;
    aspect-ratio: 1 / 1;
}

.tour-img:hover {
    cursor: pointer;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

.tour-title {
    font-weight: 700;
    font-size: 16px;
    color: #2c3e50;
    text-align: center;
    margin: 0 auto;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rounded-item:hover .tour-title {
    cursor: pointer;
    color: #005bb5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}



/* ! FEATURES END */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

/* Hover Effects */
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* Icon (artık animasyon yok) */
.whatsapp-float i {
    transform: none;
    animation: none;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    background: #ffffff;
    color: #333;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 8px 8px 0;
    border-style: solid;
    border-color: transparent #ffffff transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation (sadece ışık yayılması efekti kaldı) */
@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 15px;
        left: 15px;
    }
}



/*! Category Detail Page Styles */

/* Hero Section */
.category-hero-section {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f9fa;
}

.category-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.category-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.category-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Grid Section */
.category-grid-section {
    background: #f8f9fa;
}

.category-card-link {
    text-decoration: none;
    display: block;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.category-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio for square */
    height: 300px;
    overflow: hidden;
}

.category-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card-image img {
    transform: scale(1.15);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card:hover .category-card-overlay {
    opacity: 1;
}

.category-card-overlay i {
    font-size: 3rem;
    color: white;
    transform: translateX(-20px);
    transition: transform 0.4s ease;
}

.category-card:hover .category-card-overlay i {
    transform: translateX(0);
}

.category-card-content {
    padding: 1.5rem;
    text-align: center;
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    transition: color 0.3s ease;
}

.category-card:hover .category-card-title {
    color: #4da8ff;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .category-hero-section {
        height: 300px;
    }

    .category-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 767.98px) {
    .category-hero-section {
        height: 250px;
    }

    .category-hero-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .category-card-content {
        padding: 1.25rem;
    }

    .category-card-title {
        font-size: 1.1rem;
    }

    .category-card-overlay i {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .category-hero-section {
        height: 200px;
    }

    .category-hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .category-card {
        margin-bottom: 1rem;
    }
}

/* ! POPULAR TOURS START */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    justify-content: center;
}

/* Owl Carousel için wrapper */
.carousel-wrapper-owl {
    position: relative;
    padding: 0 60px;
}

.carousel-card {
    width: 300px;
    height: 443.23px;
    background: #fff;
    border-radius: 20px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
    box-shadow: 2px 3px 25px 0px rgba(3, 3, 3, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.carousel-card:hover {
    transform: translateY(-10px);
}

.carousel-card:hover::before {
    opacity: 1;
}

.carousel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.carousel-card:hover img {
    transform: scale(1.05);
}

.carousel-card .card-body {
    padding: 1.5rem;
    position: relative;
}

.carousel-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
}

.carousel-card p {
    font-size: 0.9rem;
    margin: 0.4rem 0;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.carousel-card .price {
    font-weight: 800;
    font-size: 1.3rem;
    margin-top: 1rem;
    color: #e74c3c;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Owl Carousel Navigation Buttons */
.popular-tours-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.popular-tours-carousel .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 22px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    top: 50%;
    transform: translateY(-50%);
}

.popular-tours-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.08);
    color: #4da8ff !important;
}

.popular-tours-carousel .owl-nav .owl-prev {
    left: -27px;
}

.popular-tours-carousel .owl-nav .owl-next {
    right: -27px;
}


/* Popular Tours Section - Specific Styling (diğer owl carousel'ları etkilemez) */
.popular-tours-section .container-fluid {
    max-width: 1500px;
    padding-left: 50px;
    padding-right: 50px;
}

.popular-tours-wrapper {
    max-width: 1380px;
    margin: 0 auto;
}

.popular-tours-section .carousel-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Mobile optimizations */
@media (max-width: 991px) {
    .carousel-wrapper-owl {
        padding: 0 50px;
    }

    .popular-tours-carousel .owl-nav button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .popular-tours-carousel .owl-nav .owl-prev {
        left: -25px;
    }

    .popular-tours-carousel .owl-nav .owl-next {
        right: -25px;
    }

    .popular-tours-section .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper-owl {
        padding: 0 12px;
    }

    .popular-tours-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .popular-tours-carousel .owl-nav .owl-prev {
        left: -22px;
    }

    .popular-tours-carousel .owl-nav .owl-next {
        right: -22px;
    }

    .popular-tours-section .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 576px) {
    .carousel-wrapper-owl {
        padding: 0;
    }

    .popular-tours-carousel .owl-nav {
        display: none;
    }

    .popular-tours-section .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
    z-index: 10;
}

.nav-btn.left {
    left: -20px;
}

.nav-btn.right {
    right: -20px;
}

/* Hide scroll bar (optional) */
.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ! POPULAR TOURS END */


/* ! COUPON AREA START */

/* ----------------------------------------------------------------------------------------------------------------------- */

#promoOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Main popup box */
.promo-popup {
    background: #fff;
    padding: 30px 25px;
    max-width: 400px;
    width: 90%;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promo-popup .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    /* background-color: #e6e6e6; */
    border: #000 2px solid;
    border-radius: 50%;
    padding: 6px;
    opacity: 1;
}

z .promo-title {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.promo-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}

.promo-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.coupon-code-box {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    cursor: default;
}

.btn-black {
    background-color: #000 !important;
    color: #fff !important;
    font-weight: 600;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-black:hover {
    background-color: #222;
}

@media (max-width: 576px) {
    .promo-popup {
        padding: 25px 20px;
    }
}

/* ! COUPON AREA END */

/* ! POPULAR DESTINATIONS START */

.popular-destinations-wrapper {
    height: 300px;
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
    transition: all .4s;
}


.popular-destinations-wrapper:hover {
    box-shadow: 0px 4px 15px -4px rgba(0, 0, 0, 0.75);
}

.popular-destinations-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all .2s;
}

.popular-destinations-wrapper:hover img {
    transform: scale(1.1);
}

.popular-destinations-name {
    bottom: 1%;
    left: 4%;
}

.popular-destinations-container {
    width: 300px;
    height: 300px;
}

/* ! POPULAR DESTINATIONS END */

/* ! OFFERS AREA START */
.tour-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tour-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.3), rgba(52, 152, 219, 0.3));
    opacity: 0;
    transition: all 0.4s ease;
}

.tour-card-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.tour-card-img:hover::before {
    opacity: 1;
}

.tour-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 auto;
    margin-top: 12px;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-align: center;
}

.tour-card-title:hover {
    color: #007bff;
}

/* ! OFFERS AREA END */

/* ! TESTIMONIALS START */
.testimonial {
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    height: 200px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.05), transparent);
    transition: all 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 18px;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #2c3e50;
    margin: 15px 0;
    height: 120px;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: rgba(0, 123, 255, 0.3);
    font-family: Georgia, serif;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(0, 123, 255, 0.1);
}

.testimonial-avatar {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.testimonial-name {
    margin-left: 15px;
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
}

.carousel-item>.row {
    display: flex;
    justify-content: center;
}

/* ! TESTIMONIALS END */

/* ! OUR BLOG START */
.blog-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 25px;
    border: none;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


.blog-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    border-radius: 20px 20px 0 0;
}

.blog-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 2;
}

.blog-card:hover .card-img-top {
    transform: scale(1.1) rotate(2deg);
}

.blog-card .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 3;
}

.blog-card:hover .img-overlay {
    opacity: 1;
}

.blog-card .card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    background: transparent;
}

.blog-card .card-content {
    flex-grow: 1;
    margin-bottom: 25px;
}

.blog-card .card-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.3;
    position: relative;
    transition: all 0.3s ease;
}

.blog-card .card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.blog-card:hover .card-title::after {
    width: 60px;
}

.blog-card .card-text {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 400;
    position: relative;
}

.blog-card .card-footer {
    padding: 0;
    background: transparent;
    border: none;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.blog-card .btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.blog-card .btn:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.blog-card .btn:hover::before {
    left: 100%;
}

.blog-card .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Blog Section Responsive Styles */
@media (max-width: 991.98px) {
    .blog-card .card-body {
        padding: 25px;
    }

    .blog-card .card-content {
        margin-bottom: 20px;
    }

    .blog-card .card-img-wrapper {
        height: 220px;
    }

    .blog-card .card-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .blog-card .card-text {
        font-size: 0.95rem;
    }

    .blog-card .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .blog-card {
        margin-bottom: 25px;
    }

    .blog-card .card-body {
        padding: 20px;
    }

    .blog-card .card-content {
        margin-bottom: 18px;
    }

    .blog-card .card-img-wrapper {
        height: 200px;
    }

    .blog-card .card-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .blog-card .card-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .blog-card .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .blog-card:hover {
        transform: translateY(-10px) rotateX(3deg);
    }
}

@media (max-width: 575.98px) {
    .blog-card .card-body {
        padding: 18px;
    }

    .blog-card .card-img-wrapper {
        height: 180px;
    }

    .blog-card .card-title {
        font-size: 1rem;
        line-height: 1.25;
    }

    .blog-card .card-text {
        font-size: 0.85rem;
    }

    .blog-card .btn {
        padding: 8px 18px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .blog-card:hover {
        transform: translateY(-8px) rotateX(2deg);
    }
}

/* .blog-card {
  overflow: hidden;
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-card .img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-card .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .img-container img {
  transform: scale(1.1);
} */


/* ! OUR BLGO END */


/* ! FOOTER AREA START */
.footer {
    height: auto;
    min-height: 0;
    padding-bottom: 2.5rem;
    background-color: #f1f4f7 !important;
    position: relative;
    overflow: hidden;
}

/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23007bff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23007bff" opacity="0.05"/><circle cx="50" cy="50" r="1" fill="%23007bff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
} */

.footer a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.footer a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.footer-rights-deserved {
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #6c757d;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(108, 117, 125, 0.2);
}

.footer-list li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-list li:hover {
    transform: translateX(5px);
}

.footer-list li i {
    margin-right: 10px;
    color: #007bff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-list li:hover i {
    color: #0056b3;
    transform: scale(1.2);
}

.footer h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 2px;
}

/* Mobile Offcanvas Contact Styles */
.mobile-contact-section {
    display: none;
}

@media (max-width: 991px) {
    .mobile-contact-section {
        display: block;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .mobile-contact-item:hover {
        transform: translateX(5px);
        background-color: #e3f2fd !important;
    }

    .mobile-auth-buttons .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        transition: all 0.3s ease;
    }

    .mobile-auth-buttons .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 991.98px) {
    .footer {
        text-align: center;
        background-color: #f1f4f7;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 450px) {
    .footer {
        text-align: center;
        background-color: #f1f4f7;
    }
}

@media (max-width: 400px) {

    .footer {
        padding-bottom: 2rem;
    }

}


/* ! FOOTER AREA END */



/* ! FILTER SECTION START */

.quick-filter:hover {
    font-weight: bold;
    color: #d12f2f;
}

.filter-container {
    box-shadow: -1px 0px 11px -8px rgba(0, 0, 0, 0.79);
}

.filter-checkbox:focus {
    box-shadow: none !important;
    outline: none !important;
}

@media (max-width: 450px) {
    .quick-filters-wrapper {
        row-gap: 10px;
        text-align: center;
        flex-direction: column;
    }
}

/* ! FILTER SECTION END */


/* ! TOUR SINGLE START */
.object-fit-cover {
    object-fit: cover;
}

.tour-single {
    transition: all .3s;
}

.favorite-button {
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    position: absolute;
    top: 4%;
    left: 4%;
}

.favorite-button:hover {
    color: #d12f2f;
}

.tour-single:hover {
    box-shadow: -1px 0px 9px 0px rgba(0, 0, 0, 0.75);
}

@media (max-width: 767.98px) {
    .rounded-start-4 {
        border-radius: 0.75rem !important;
        border-bottom-left-radius: 0 !important;
        border-top-right-radius: 0.75rem !important;
        text-align: right !important;
    }
}



/* ! TOUR SINGLE END */



/* ! ABOUT START */
.about-header {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.about-header h1 {
    font-size: 2.8rem;
}

.about-card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    font-size: 2rem;
    color: #2a5298;
}

.section-title {
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 4px solid #2a5298;
    padding-left: 12px;
}

/* ! ABOUT END */



/* ! CONTACT START */

/* ! CONTACT END */

/* ! TOUR DETAIL START */
.register-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    max-width: 40%;
    width: 100%;
}

.form-label {
    font-weight: 600;
}

.btn-primary {
    background-color: #0066cc;
    border: none;
}

.btn-primary:hover {
    background-color: #005bb5;
}

.dropdown-toggle:hover {
    /* color: #d12f2f !important; */
    color: #00acdc !important;
}

.menu-item-single:hover {
    color: #00acdc !important;

}

.navbar-nav {
    height: 90px;
}

.dropdown,
.nav-item {
    align-content: center;
}

.dropdown-mega {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 0;
}

.navbar-item:hover {
    color: #d12f2f;
}

.nav-item.dropdown:hover .dropdown-mega {
    display: block;
}

/* Hero Slider Responsive (kırpma yok) */
#carouselExampleIndicators {
    width: 100%;
    max-width: 1905px;
    margin: 0 auto;
}

#carouselExampleIndicators .carousel-inner,
#carouselExampleIndicators .carousel-item {
    width: 100%;
    height: auto;
}

#carouselExampleIndicators .carousel-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: center;
}

@media (max-width: 767.98px) {
    #carouselExampleIndicators {
        max-width: 390px;
        height: clamp(240px, 69.2vw, 270px);
    }

    #carouselExampleIndicators .carousel-inner,
    #carouselExampleIndicators .carousel-item {
        height: 100%;
    }

    #carouselExampleIndicators .carousel-item img {
        height: 100%;
        object-fit: fill;
    }
}
.fixed-carousel {
    height: 50vh;
    overflow: hidden;
}

.fixed-carousel .carousel-inner,
.fixed-carousel .carousel-item {
    height: 100%;
}

.fixed-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.card-header,
.card-footer {
    background-color: #fff;
}

.highlight {
    font-weight: bold;
    font-size: 1.2rem;
}

.price-box {
    background-color: #f8f9fa;
    border-left: 5px solid #ffc107;
}

.checkmark {
    color: green;
    font-weight: bold;
}

.nav-pills .nav-link.active {
    /* background-color: #0dcaf0 !important; */
    /* color: #fff !important; */

    color: #0dcaf0 !important;
    border-bottom: 2px solid #0dcaf0 !important;
    background: white !important;
    border-radius: 0px !important;
}

.nice-select .list {
    min-width: 100%;
    width: 100%;
    white-space: normal !important;
}

.nice-select .list li {
    line-height: 25px;
    align-content: center;
}

.nice-select .option {
    white-space: normal !important;
    white-space: unset !important;

    white-space: pre-wrap;
    word-wrap: break-word;
    white-space: break-spaces;
}

.nice-select {
    white-space: normal !important;
    line-height: 1.5;
}

.nice-select-sm {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    height: 35px;
    line-height: 32px;
}


/* PRICE INCLUDED EXCLUDED  AREA START */
.services-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.service-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 20px;
}

.service-box h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #0d3b66;
}

.service-box ul {
    list-style: none;
    padding-left: 0;
}

.service-box li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.service-box i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.included i {
    color: #28a745;
}

.excluded i {
    color: #dc3545;
}

/* PRICE INCLUDED EXCLUDED AREA END */


/* Hide mega menu inside offcanvas (mobile) */
@media (max-width: 991px) {
    .dropdown-mega {
        display: none !important;
    }

    .responsive-logo {
        padding: 0 !important;
    }

    .navbar {
        padding: 0 !important;
    }

}

@media (max-width: 500px) {
    .dropdown-mega {
        display: none !important;
    }

    .responsive-logo {
        padding: 0 !important;
    }

    .navbar {
        padding: 5% !important;
    }

}

@media (max-width: 400px) {
    .dropdown-mega {
        display: none !important;
    }

    .responsive-logo {
        padding: 0 !important;
    }

    .navbar {
        padding: 0 !important;
    }

    .navbar-brand {
        margin: 0 !important;
    }
}

/* ! RESPONSIVE TABLE */
/* ! TOUR PROGRAM COMPACT DESIGN */
.tour-program-container {
    padding: 1.5rem 0;
}

.tour-day-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(13, 202, 240, 0.1);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    position: relative;
}

.tour-day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 40px;
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    color: white;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
    box-shadow: 0 2px 8px rgba(13, 202, 240, 0.2);
}

.tour-day-route {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.tour-day-route .highlight {
    color: #000000;
    font-weight: 600;
}

.tour-day-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .tour-program-container {
        padding: 1.25rem 0;
    }

    .tour-day-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .tour-day-number {
        height: 35px;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        padding: 0 0.8rem;
    }

    .tour-day-route {
        font-size: 1.1rem;
    }

    .tour-day-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .tour-day-card {
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .tour-day-number {
        height: 32px;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        padding: 0 0.6rem;
    }

    .tour-day-route {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .tour-day-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 575.98px) {
    .tour-program-container {
        padding: 1rem 0;
    }

    .tour-day-card {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .tour-day-number {
        height: 28px;
        font-size: 0.7rem;
        padding: 0 0.5rem;
    }

    .tour-day-route {
        font-size: 0.95rem;
    }

    .tour-day-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    table thead {
        display: none;
    }

    /* Make each row a block */
    table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 0.375rem;
        padding: 1rem;
        background: #fff;
    }

    /* Make each cell a flex container */
    table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border: none;
        border-bottom: 1px solid #dee2e6;
        font-size: 0.9rem;
        flex-direction: column;
        align-items: center;
        text-align: center;

    }

    /* Remove border on last td */
    table tbody td:last-child {
        border-bottom: none;
    }

    /* Add label before each cell content */
    table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        flex-basis: 50%;
        color: #555;
    }
}

/* ! RESERVATION CARD CUSTOM START */
.reservation-card-custom {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: visible;
    position: relative;
    margin-bottom: 30px;
}

.reservation-header-custom {
    background: #2d3748;
    color: white;
    padding: 20px 24px;
    border-radius: 20px 20px 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.reservation-body-custom {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 0 0 20px 20px;
}

.reservation-details-custom {
    margin-bottom: 24px;
}

.detail-row-custom {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.detail-row-custom:last-child {
    margin-bottom: 0;
}

.detail-icon-custom {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-icon-custom i {
    font-size: 16px;
    color: #4da8ff;
}

.detail-content-custom {
    flex: 1;
}

.detail-label-custom {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 2px;
}

.detail-value-custom {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.reservation-divider-custom {
    height: 1px;
    background: #e5e7eb;
    margin: 24px 0;
}

.reservation-price-custom {
    text-align: center;
    margin-bottom: 24px;
}

.price-main-custom {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
    line-height: 1;
}

.price-sub-custom {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.installment-link-custom {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4da8ff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(77, 168, 255, 0.1);
    transition: all 0.3s ease;
}

.installment-link-custom:hover {
    color: white;
    background: #4da8ff;
    text-decoration: none;
}

.reservation-button-custom {
    margin-bottom: 0;
}

.btn-purchase-custom {
    width: 100%;
    background: linear-gradient(135deg, #0f0f0f 0%, #030303 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-purchase-custom:hover {
    background: linear-gradient(135deg, #333335 0%, #000000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 12, 14, 0.4);
}

.btn-purchase-custom:active {
    transform: translateY(0);
}

.reservation-tail-custom {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #2d3748;
    z-index: 10;
}

/* ! RESERVATION CARD CUSTOM RESPONSIVE */
@media (max-width: 991.98px) {
    .reservation-card-custom {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .reservation-header-custom {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .reservation-body-custom {
        padding: 20px;
    }

    .price-main-custom {
        font-size: 2.2rem;
    }

    .reservation-tail-custom {
        top: 58px;
    }
}

@media (max-width: 767.98px) {
    .reservation-header-custom {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .reservation-body-custom {
        padding: 18px;
    }

    .detail-row-custom {
        margin-bottom: 16px;
        gap: 12px;
    }

    .detail-icon-custom {
        width: 20px;
        height: 20px;
    }

    .detail-icon-custom i {
        font-size: 14px;
    }

    .detail-label-custom {
        font-size: 0.85rem;
    }

    .detail-value-custom {
        font-size: 0.9rem;
    }

    .price-main-custom {
        font-size: 2rem;
    }

    .btn-purchase-custom {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .reservation-tail-custom {
        top: 54px;
    }
}

@media (max-width: 575.98px) {
    .reservation-card-custom {
        border-radius: 16px;
        margin-bottom: 2.5rem;
    }

    .reservation-header-custom {
        padding: 14px 16px;
        border-radius: 16px 16px 0 0;
    }

    .reservation-body-custom {
        padding: 16px;
        border-radius: 0 0 16px 16px;
    }

    .detail-row-custom {
        margin-bottom: 14px;
        gap: 10px;
    }

    .price-main-custom {
        font-size: 1.8rem;
    }

    .btn-purchase-custom {
        padding: 12px 18px;
        font-size: 0.95rem;
        border-radius: 20px;
    }

    .reservation-tail-custom {
        top: 52px;
        border-left-width: 12px;
        border-right-width: 12px;
        border-top-width: 12px;
    }
}

/* ! RESERVATION CARD CUSTOM END */

/* ! TOUR DETAIL END */



/* ! RESPONSIVE */


@media (max-width: 768px) {
    .nav-list div {
        flex-direction: column !important;
    }

    .about-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .sub-menu-wrapper {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none !important;
        visibility: visible !important;
        display: none;
        margin-top: 1rem;
    }

    .menu-item.open .sub-menu-wrapper {
        display: block !important;
    }

    .submenu-buffer {
        display: none;
    }

    .contact-container {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* Search Area Responsive Design */
@media (max-width: 1200px) {
    .search-area {
        width: 95%;
        padding: 25px;
    }

    .search-pill {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 991.98px) {
    .search-area {
        width: 95%;
        padding: 20px;
        margin-top: -30px;
    }

    .search-nav-pills {
        gap: 0.5rem;
    }

    .search-pill {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
    }

    .search-pill span {
        display: none;
    }

    .search-pill i {
        margin: 0;
    }

    .search-form-row {
        margin-top: 1rem;
    }

    .btn-search span {
        display: none;
    }
}

@media (max-width: 768px) {
    .search-area {
        position: relative;
        width: 100%;
        margin-top: 0;
        margin-bottom: 2rem;
        padding: 20px 15px;
        transform: none;
        top: auto;
        left: auto;
    }

    .search-nav-pills {
        gap: 0.4rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .search-pill {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 25px;
        min-width: auto;
    }

    .search-input,
    .search-select {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .search-input {
        padding-right: 2.5rem;
    }

    .search-input-icon {
        right: 0.8rem;
        font-size: 0.9rem;
    }

    .btn-search {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .search-area {
        padding: 15px 10px;
        border-radius: 15px;
    }

    .search-nav-pills {
        gap: 0.3rem;
    }

    .search-pill {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        border-width: 1px;
    }

    .search-pill i {
        font-size: 0.8rem;
    }

    .search-form-row {
        margin-top: 0.8rem;
    }

    .search-input,
    .search-select {
        padding: 0.65rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .search-input {
        padding-right: 2.2rem;
    }

    .search-input-icon {
        right: 0.7rem;
        font-size: 0.8rem;
    }

    .btn-search {
        padding: 0.65rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
}

@media (max-width: 400px) {
    .search-area {
        padding: 12px 8px;
        margin-bottom: 1.5rem;
    }

    .search-pill {
        padding: 0.35rem 0.5rem;
        font-size: 0.65rem;
    }

    .search-pill i {
        font-size: 0.7rem;
    }

    .search-input,
    .search-select,
    .btn-search {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
    }

    .search-input {
        padding-right: 2rem;
    }

    .search-input-icon {
        right: 0.6rem;
        font-size: 0.75rem;
    }
}

/* ! USER DASHBOARD COMMON STYLES START */

/* Common Dashboard Container */
.user-dashboard {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

/* Common Sidebar */
.user-dashboard-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.dashboard-profile-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.dashboard-user-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.dashboard-user-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.dashboard-user-status {
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 500;
}

.dashboard-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-nav-menu .nav-item {
    margin-bottom: 0.5rem;
}

.dashboard-nav-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-nav-menu .nav-link:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    transform: translateX(5px);
}

.dashboard-nav-menu .nav-link.active {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.dashboard-nav-menu .nav-link i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
}

/* Common Main Content */
.dashboard-main-content {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dashboard-content-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    margin: 0;
}

.dashboard-content-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-content-subtitle {
    opacity: 0.9;
    font-size: 1rem;
}



/* Common Buttons */
.btn-modern {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    color: white;
}

.btn-outline-modern {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline-modern:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

/* Common Detail Items */
.detail-item {
    display: flex;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.detail-item i {
    margin-right: 0.5rem;
    color: #007bff;
    width: 16px;
}

/* Common Price Display */
.dashboard-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 1rem;
}

/* Common Card Styles */
.dashboard-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dashboard-card-image {
    position: relative;
    overflow: hidden;
}

.dashboard-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dashboard-card:hover .dashboard-card-image img {
    transform: scale(1.05);
}

.dashboard-card-content {
    padding: 1.5rem;
}

.dashboard-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.dashboard-card-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.dashboard-logout-link {
    color: #e53e3e !important;
}

.dashboard-logout-link:hover {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%) !important;
    color: #fff !important;
}

.account-overview-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f3;
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-height: 112px;
}

.account-overview-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.account-overview-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.account-overview-content span {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.account-overview-content strong {
    color: #1e293b;
    font-size: 1.5rem;
    line-height: 1;
}

.account-surface {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem;
}

.account-empty-state {
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    border-radius: 16px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem;
}

.account-empty-state i {
    font-size: 2rem;
    color: #007bff;
}

.account-empty-state p {
    margin: 0;
    color: #64748b;
    font-weight: 500;
}

.account-static-badge {
    cursor: default;
}

.profile-marketing-optin {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* ! USER DASHBOARD COMMON STYLES END */

/* ! USER RESERVATIONS PAGE START */

.reservations-modern-tabs {
    background: #f8f9fa;
    border: none;
    padding: 1rem 2rem 0;
    display: flex;
    flex-wrap: wrap;
}

.reservations-modern-tabs .nav-link {
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 15px 15px 0 0;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.reservations-modern-tabs .nav-link.active {
    background: white;
    color: #007bff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.reservations-modern-tabs .nav-link:hover:not(.active) {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.tab-content {
    padding: 2rem;
    background: white;
}

.reservation-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ! USER RESERVATIONS PAGE END */

/* ! USER FAVORITES PAGE START */

.favorites-heart-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e53e3e;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorites-heart-button:hover {
    background: white;
    transform: scale(1.1);
}

/* ! USER FAVORITES PAGE END */

/* ! RESPONSIVE DASHBOARD STYLES START */

@media (max-width: 991.98px) {
    .user-dashboard {
        padding: 1rem 0;
    }

    .user-dashboard-sidebar {
        margin-bottom: 2rem;
        position: relative;
        top: auto;
    }

    .dashboard-card-details {
        grid-template-columns: 1fr;
    }

    .dashboard-card-actions {
        justify-content: center;
    }

    .profile-marketing-optin {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .dashboard-content-title {
        font-size: 1.5rem;
    }

    .reservations-modern-tabs {
        padding: 0.5rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .reservations-modern-tabs .nav-link {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .reservations-modern-tabs .nav-link:last-child {
        margin-bottom: 0;
    }

    .reservations-modern-tabs .nav-link.active {
        box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
    }

    .dashboard-card-image img {
        height: 150px;
    }

    .dashboard-user-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .dashboard-user-name {
        font-size: 1.25rem;
    }

    .tab-content {
        padding: 1rem;
    }

    .dashboard-card {
        margin-bottom: 1rem;
    }

    .dashboard-card-content {
        padding: 1rem;
    }

    .dashboard-content-header {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .reservations-modern-tabs .nav-link {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }

    .dashboard-card .row {
        margin: 0;
    }

    .dashboard-card .col-lg-4,
    .dashboard-card .col-md-5 {
        padding: 0;
    }

    .dashboard-card .col-lg-8,
    .dashboard-card .col-md-7 {
        padding: 0;
    }

    .dashboard-card-details {
        gap: 0.5rem;
    }

    .detail-item {
        font-size: 0.8rem;
    }

    .dashboard-card-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .dashboard-price {
        font-size: 1.25rem;
    }

    .btn-modern {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ! RESPONSIVE DASHBOARD STYLES END */

/* ! USER COUPONS PAGE SPECIFIC STYLES START */

/* Modern Coupon Card */
.coupon-modern-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    min-height: 180px;
}

.coupon-modern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.coupon-modern-card.coupon-expired {
    opacity: 0.7;
    background: #f8f9fa;
}

.coupon-modern-card.coupon-expired:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Left Section of Coupon Card */
.coupon-modern-left {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coupon-modern-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.coupon-modern-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.coupon-modern-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.coupon-modern-badge.coupon-active {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.coupon-modern-badge.coupon-expired-badge {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
}

.coupon-modern-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.coupon-modern-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.coupon-detail-item {
    display: flex;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.coupon-detail-item i {
    margin-right: 0.75rem;
    color: #007bff;
    width: 16px;
    font-size: 0.9rem;
}

/* Right Section of Coupon Card */
.coupon-modern-right {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    min-width: 280px;
    position: relative;
}

.coupon-expired .coupon-modern-right {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
}

.coupon-modern-code {
    margin-bottom: 1.5rem;
}

.coupon-code-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-code-value {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Courier New', monospace;
}

.coupon-copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.coupon-copy-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
}

.coupon-copy-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.coupon-modern-actions {
    width: 100%;
}

.coupon-modern-actions .btn-modern {
    width: 100%;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: none;
    font-weight: 600;
}

.coupon-modern-actions .btn-modern:hover:not([disabled]) {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.coupon-modern-actions .btn-modern[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.5);
    color: #718096;
}

.coupon-countdown {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.coupon-countdown i {
    font-size: 0.9rem;
}

/* JavaScript functionality placeholder */
.coupon-copy-success {
    background: rgba(72, 187, 120, 0.3) !important;
    border-color: rgba(72, 187, 120, 0.5) !important;
    color: white !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4) !important;
}

/* ! COUPON PAGE RESPONSIVE STYLES START */

@media (max-width: 991.98px) {
    .coupon-modern-card {
        flex-direction: column;
        min-height: auto;
    }

    .coupon-modern-right {
        border-radius: 0 0 20px 20px;
        min-width: auto;
        padding: 1.5rem;
    }

    .coupon-modern-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .coupon-modern-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .coupon-modern-left {
        padding: 1.5rem;
    }

    .coupon-modern-right {
        padding: 1.5rem;
    }

    .coupon-modern-title {
        font-size: 1.1rem;
    }

    .coupon-modern-description {
        font-size: 0.9rem;
    }

    .coupon-detail-item {
        font-size: 0.85rem;
    }

    .coupon-code-value {
        font-size: 1rem;
        padding: 0.75rem;
        letter-spacing: 1px;
    }

    .coupon-modern-details {
        gap: 0.6rem;
    }
}

@media (max-width: 575.98px) {
    .coupon-modern-card {
        margin-bottom: 1rem;
    }

    .coupon-modern-left {
        padding: 1rem;
    }

    .coupon-modern-right {
        padding: 1rem;
    }

    .coupon-modern-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .coupon-modern-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .coupon-code-value {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .coupon-copy-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .coupon-countdown {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}

/* ! COUPON PAGE RESPONSIVE STYLES END */

/* ! USER COUPONS PAGE SPECIFIC STYLES END */

/* ! USER PROFILE PAGE SPECIFIC STYLES START */

/* Profile Form Container */
.profile-form-modern {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
}

/* Profile Section */
.profile-section-modern {
    background: white;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.profile-section-modern:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.profile-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f7fafc;
}

.profile-section-title i {
    color: #007bff;
    font-size: 1.5rem;
}

/* Profile Input Wrapper */
.profile-input-wrapper {
    position: relative;
    margin-bottom: 0;
}

/* Profile Input Styling */
.profile-input-modern {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    color: #2d3748;
    font-weight: 500;
}

.profile-input-modern:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.profile-input-modern:hover {
    border-color: #cbd5e0;
}

/* Profile Input Icons */
.profile-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.profile-input-wrapper:focus-within .profile-input-icon {
    color: #007bff;
    transform: translateY(-50%) scale(1.1);
}

/* Profile Label */
.profile-label-modern {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Profile Textarea */
.profile-textarea-modern {
    min-height: 100px;
    resize: vertical;
    padding-top: 1rem;
    line-height: 1.5;
}

/* Profile Actions */
.profile-actions-modern {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0 0 20px 20px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.profile-update-btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.profile-update-btn:disabled {
    background: #e2e8f0 !important;
    color: #a0aec0 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.profile-update-btn:disabled:hover {
    background: #e2e8f0 !important;
    color: #a0aec0 !important;
    transform: none !important;
}

.profile-cancel-btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Input Change Animation */
.profile-input-changed {
    border-color: #f6ad55 !important;
    background: #fffaf0 !important;
    animation: inputHighlight 0.5s ease;
}

@keyframes inputHighlight {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Success Animation for Update Button */
.profile-update-success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%) !important;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ! PROFILE PAGE RESPONSIVE STYLES START */

@media (max-width: 991.98px) {
    .profile-section-modern {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .profile-section-title {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .profile-actions-modern {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .profile-update-btn,
    .profile-cancel-btn {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .profile-section-modern {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .profile-section-title {
        font-size: 1.1rem;
    }

    .profile-input-modern {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-size: 0.9rem;
    }

    .profile-input-icon {
        left: 0.75rem;
        font-size: 0.9rem;
    }

    .profile-label-modern {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .profile-actions-modern {
        padding: 1.5rem;
    }

    .profile-update-btn,
    .profile-cancel-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .profile-section-modern {
        padding: 0.75rem;
        border-radius: 10px;
    }

    .profile-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .profile-input-modern {
        padding: 0.6rem 0.6rem 0.6rem 2.2rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .profile-input-icon {
        left: 0.6rem;
        font-size: 0.85rem;
    }

    .profile-label-modern {
        font-size: 0.85rem;
    }

    .profile-textarea-modern {
        min-height: 80px;
    }

    .profile-actions-modern {
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }

    .profile-update-btn,
    .profile-cancel-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-width: auto;
    }
}

/* ! PROFILE PAGE RESPONSIVE STYLES END */

/* ! USER PROFILE PAGE SPECIFIC STYLES END */

/* ! USER SETTINGS PAGE SPECIFIC STYLES START */

.settings-content-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
}

.settings-section-modern {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.settings-section-modern:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.settings-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);


    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-section-icon {
    font-size: 1.5rem;
    opacity: 0.9;
}

.settings-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.settings-options-list {
    padding: 1.5rem 2rem;
}

.notification-save-actions {
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem 1rem;
    border-top: 1px solid #e8ecef;
    background: #f8f9fa;
    margin: 0 -2rem -1.5rem;
}

.settings-option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8ecef;
    transition: all 0.3s ease;
}

.settings-option-item:last-child {
    border-bottom: none;
}

.settings-option-item:hover {
    background: #f8f9fa;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.settings-option-info {
    flex: 1;
    margin-right: 1rem;
}

.settings-option-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
}

.settings-option-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.settings-toggle-wrapper {
    display: flex;
    align-items: center;
}

.settings-toggle-modern {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.settings-toggle-modern input {
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.4s;
    border-radius: 34px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.settings-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

input:checked+.settings-toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:focus+.settings-toggle-slider {
    box-shadow: 0 0 1px #667eea, inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.settings-toggle-slider:before {
    transform: translateX(26px);
}

.settings-password-form {
    padding: 1.5rem 2rem 2rem;
}

.password-form-modern {
    max-width: 100%;
}

.settings-input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.settings-label-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.settings-label-modern i {
    font-size: 1rem;
    color: #667eea;
}

.settings-input-modern {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #2d3748;
}

.settings-input-modern:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #ffffff;
}

.settings-input-modern::placeholder {
    color: #9ca3af;
}

.settings-input-feedback {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    display: none;
}

.settings-password-strength {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: none;
}

.strength-weak {
    color: #ef4444;
}

.strength-medium {
    color: #f59e0b;
}

.strength-strong {
    color: #10b981;
}

.settings-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
    align-items: center;
}

.settings-update-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.settings-update-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.settings-update-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.settings-update-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

.settings-cancel-btn {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-cancel-btn:hover {
    background: #e5e7eb;
    color: #4b5563;
    border-color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .settings-content-modern {
        padding: 1rem;
        gap: 1.5rem;
    }

    .settings-section-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .settings-section-icon {
        font-size: 1.25rem;
    }

    .settings-section-title {
        font-size: 1.1rem;
    }

    .settings-options-list,
    .settings-password-form {
        padding: 1rem 1.5rem;
    }

    .notification-save-actions {
        padding: 1rem 1.5rem 0.75rem;
        margin: 0 -1.5rem -1rem;
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .notification-save-actions .settings-update-btn,
    .notification-save-actions .settings-cancel-btn {
        width: 100%;
        justify-content: center;
    }

    .settings-option-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
    }

    .settings-option-item:hover {
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .settings-toggle-wrapper {
        align-self: flex-end;
        margin-top: 0.5rem;
    }

    .settings-form-actions {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .settings-update-btn,
    .settings-cancel-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .settings-section-header {
        padding: 0.75rem 1rem;
    }

    .settings-options-list,
    .settings-password-form {
        padding: 0.75rem 1rem;
    }

    .notification-save-actions {
        padding: 0.75rem 1rem 0.5rem;
        margin: 0 -1rem -0.75rem;
    }

    .settings-option-item:hover {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .settings-input-modern {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .settings-update-btn,
    .settings-cancel-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ! USER SETTINGS PAGE SPECIFIC STYLES END */

/* ! SPECIAL EVENTS PAGE START */

/* Hero Section */
.special-events-hero {
    /* background: linear-gradient(135deg, #020c2e 0%, #1a1f3a 100%); */
    padding: 80px 0;
    color: black;
    position: relative;
    overflow: hidden;
}

/* .special-events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="special-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23special-grain)"/></svg>');
    opacity: 0.3;
} */

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    /* text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Section Description */
.section-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Special Event Cards */
.special-events-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.special-shadow {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.special-event-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.special-event-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.special-event-card.featured-card {
    border: 2px solid #ffd700;
    position: relative;
}

.special-event-card.featured-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 27px;
    z-index: -1;
    animation: shimmer-gold 3s infinite;
}

@keyframes shimmer-gold {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Card Image */
.card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.special-event-card:hover .card-img {
    transform: scale(1.1) rotate(1deg);
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(2, 12, 46, 0.8), rgba(26, 31, 58, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-event-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.special-event-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2d3748;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.featured-badge i {
    font-size: 0.9rem;
}

/* Card Content */
.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.special-event-card:hover .card-title {
    color: #d12f2f;
}

.card-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Card Features */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-item i {
    color: #667eea;
    font-size: 0.85rem;
}

.special-event-card:hover .feature-item {
    background: #e2e8f0;
    color: #2d3748;
}

/* Card Actions */
.card-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.btn-explore {
    background: linear-gradient(135deg, #000000 0%, #2d3748 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-explore::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: all 0.6s ease;
}

.btn-explore:hover {
    transform: translateY(-3px);
    color: white;
}

.btn-explore:hover::before {
    left: 100%;
}

.btn-explore i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(3px);
}

.featured-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2d3748;
}

.featured-btn:hover {
    color: #2d3748;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}



/* Call to Action Section */
.cta-section {
    /* background: linear-gradient(135deg, #020c2e 0%, #1a1f3a 100%); */
    background: #ebeff2;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    color: black;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    color: black !important;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
    background: white;
    color: #020c2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.btn-cta-secondary:hover {
    background: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .special-events-section {
        padding: 60px 0;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-features {
        gap: 0.75rem;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .special-events-hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .special-events-section {
        padding: 40px 0;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .card-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-item {
        justify-content: center;
        width: 100%;
    }

    .card-actions {
        justify-content: center;
        gap: 1rem;
        text-align: center;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .special-events-hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .card-content {
        padding: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .card-description {
        font-size: 0.85rem;
    }

    .btn-explore {
        padding: 10px 20px;
        font-size: 0.9rem;
    }



    .cta-section {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .cta-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .featured-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .overlay-content i {
        font-size: 2.5rem;
    }

    .overlay-content span {
        font-size: 1rem;
    }
}

/* Animation Enhancements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.special-event-card.featured-card {
    animation: float 6s ease-in-out infinite;
}

.special-event-card.featured-card:hover {
    animation: none;
}

/* ! SPECIAL EVENTS PAGE END */

/* ================================================================================================ */
/* ! MODERN BLOG SECTION START */
/* ================================================================================================ */

/* Modern Blog Hero Section */
.modern-blog-hero {
    background: transparent;
    padding: 60px 0;
    color: #2d3748;
    position: relative;
}

.modern-blog-hero-content {
    position: relative;
    z-index: 2;
}

.modern-blog-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2d3748;
}

.modern-blog-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Featured Blog Post */
.modern-blog-featured {
    padding: 80px 0;
    background: #f8f9fa;
}

.modern-blog-featured-post {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.modern-blog-featured-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.modern-blog-featured-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.modern-blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.modern-blog-featured-post:hover .modern-blog-featured-image img {
    transform: scale(1.05);
}

.modern-blog-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2d3748;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse-featured 2s infinite;
}

@keyframes pulse-featured {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.modern-blog-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
}

.modern-blog-featured-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.modern-blog-featured-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.modern-blog-featured-excerpt {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modern-blog-featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.modern-blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modern-blog-author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.modern-blog-author-info {
    display: flex;
    flex-direction: column;
}

.modern-blog-author-name {
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.modern-blog-author-title {
    font-size: 0.85rem;
    color: #64748b;
}

.modern-blog-post-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-blog-post-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #64748b;
}

.modern-blog-post-stats i {
    color: #4da8ff;
}

.modern-blog-read-more-btn {
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.modern-blog-read-more-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 168, 255, 0.4);
}

.modern-blog-read-more-btn i {
    transition: all 0.3s ease;
}

.modern-blog-read-more-btn:hover i {
    transform: translateX(5px);
}

/* Blog Categories Filter */
.modern-blog-filter {
    padding: 60px 0;
    background: white;
}

.modern-blog-filter-wrapper {
    text-align: center;
}

.modern-blog-filter-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
}

.modern-blog-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-blog-filter-btn {
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.modern-blog-filter-btn:hover {
    background: #4da8ff;
    border-color: #4da8ff;
    color: white;
    transform: translateY(-2px);
}

.modern-blog-filter-btn.active {
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    border-color: #4da8ff;
    color: white;
    box-shadow: 0 5px 15px rgba(77, 168, 255, 0.3);
}

/* Main Blog Grid */
.modern-blog-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.modern-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.modern-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.modern-blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.modern-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.modern-blog-card:hover .modern-blog-card-image img {
    transform: scale(1.1);
}

.modern-blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(77, 168, 255, 0.9);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-blog-card:hover .modern-blog-card-overlay {
    opacity: 1;
}

.modern-blog-card-link {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-blog-card-link:hover {
    color: white;
    transform: scale(1.2);
}

.modern-blog-card-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.modern-blog-card-category.turkiye {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
}

.modern-blog-card-category.yurtdisi {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
}

.modern-blog-card-category.kultur {
    background: linear-gradient(135deg, #805ad5 0%, #6b46c1 100%);
}

.modern-blog-card-category.gastronomi {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
}

.modern-blog-card-category.macera {
    background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
}

.modern-blog-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.modern-blog-card:hover .modern-blog-card-title {
    color: #4da8ff;
}

.modern-blog-card-excerpt {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.modern-blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.modern-blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.modern-blog-card-author i {
    color: #4da8ff;
    font-size: 1.1rem;
}

.modern-blog-card-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-blog-card-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #64748b;
}

.modern-blog-card-stats i {
    color: #4da8ff;
}

/* Load More Button */
.modern-blog-load-more {
    text-align: center;
    margin-top: 3rem;
}

.modern-blog-load-more-btn {
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.modern-blog-load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 168, 255, 0.4);
}

/* Newsletter Section */
.modern-blog-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
}

.modern-blog-newsletter-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-blog-newsletter-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.modern-blog-newsletter-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0;
}

.modern-blog-newsletter-form-wrapper {
    width: 100%;
}

.modern-blog-newsletter-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modern-blog-newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1rem;
    background: white;
    color: #2d3748;
}

.modern-blog-newsletter-input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #4da8ff;
}

.modern-blog-newsletter-btn {
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.modern-blog-newsletter-btn:hover {
    background: linear-gradient(135deg, #3d96ff 0%, #2240e6 100%);
}

.modern-blog-newsletter-privacy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-align: center;
    display: block;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .modern-blog-hero-title {
        font-size: 2.2rem;
    }

    .modern-blog-featured-title {
        font-size: 1.8rem;
    }

    .modern-blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 991.98px) {
    .modern-blog-hero {
        padding: 50px 0;
    }

    .modern-blog-hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .modern-blog-hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .modern-blog-featured-content {
        height: auto;
        padding: 2rem;
    }

    .modern-blog-featured-title {
        font-size: 1.6rem;
    }

    .modern-blog-featured-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .modern-blog-filter-buttons {
        gap: 0.75rem;
    }

    .modern-blog-filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .modern-blog-hero {
        padding: 40px 0;
    }

    .modern-blog-hero-title {
        font-size: 1.8rem;
    }

    .modern-blog-hero-subtitle {
        font-size: 0.95rem;
    }

    .modern-blog-featured {
        padding: 60px 0;
    }

    .modern-blog-featured-image {
        height: 300px;
    }

    .modern-blog-featured-content {
        height: auto;
        padding: 1.5rem;
    }

    .modern-blog-featured-title {
        font-size: 1.4rem;
    }

    .modern-blog-featured-excerpt {
        font-size: 1rem;
    }

    .modern-blog-filter {
        padding: 40px 0;
    }

    .modern-blog-filter-title {
        font-size: 1.5rem;
    }

    .modern-blog-filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .modern-blog-filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .modern-blog-main {
        padding: 60px 0;
    }

    .modern-blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modern-blog-card-image {
        height: 200px;
    }

    .modern-blog-card-content {
        padding: 1.5rem;
    }

    .modern-blog-card-title {
        font-size: 1.1rem;
    }

    .modern-blog-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .modern-blog-newsletter {
        padding: 60px 0;
    }

    .modern-blog-newsletter-wrapper {
        padding: 2rem;
    }

    .modern-blog-newsletter-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .modern-blog-newsletter-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    .modern-blog-newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .modern-blog-newsletter-input {
        border-radius: 15px 15px 0 0;
    }

    .modern-blog-newsletter-btn {
        border-radius: 0 0 15px 15px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .modern-blog-hero {
        padding: 30px 0;
    }

    .modern-blog-hero-title {
        font-size: 1.6rem;
    }

    .modern-blog-hero-subtitle {
        font-size: 0.9rem;
    }

    .modern-blog-featured-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .modern-blog-featured-excerpt {
        font-size: 0.9rem;
    }

    .modern-blog-card-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .modern-blog-card-excerpt {
        font-size: 0.9rem;
    }

    .modern-blog-newsletter-title {
        font-size: 1.5rem;
    }

    .modern-blog-newsletter-wrapper {
        padding: 1.5rem;
    }
}

/* Popular Destinations Section */
.modern-blog-destinations {
    padding: 80px 0;
    background: #f8f9fa;
}

.modern-destination-card {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.modern-destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-destination-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.modern-destination-card:hover .modern-destination-image img {
    transform: scale(1.1);
}

.modern-destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.modern-destination-content {
    color: white;
    width: 100%;
}

.modern-destination-category {
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.modern-destination-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modern-destination-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.9;
}

.modern-destination-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.modern-destination-meta i {
    color: #4da8ff;
}

/* Travel Tips Section */
.modern-blog-tips {
    padding: 80px 0;
    background: white;
}

.modern-tip-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.modern-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.modern-tip-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.modern-tip-content {
    flex: 1;
}

.modern-tip-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.modern-tip-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.modern-tip-link {
    color: #4da8ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.modern-tip-link:hover {
    color: #2a50fc;
    transform: translateX(5px);
}

/* Latest Stories Section */
.modern-blog-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.modern-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.modern-story-card {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.modern-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.modern-story-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.modern-story-card:hover .modern-story-image img {
    transform: scale(1.05);
}

.modern-story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.modern-story-category {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    display: inline-block;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.modern-story-category.ege {
    background: linear-gradient(135deg, #2a9d8f 0%, #21867a 100%);
}

.modern-story-category.dunya {
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
}

.modern-story-category.turkiye {
    background: linear-gradient(135deg, #f77f00 0%, #d67700 100%);
}

.modern-story-content {
    color: white;
}

.modern-story-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: white;
}

.modern-story-meta {
    font-size: 0.8rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

.modern-story-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.modern-story-meta i {
    color: #4da8ff;
}

/* Regional Guides Section */
.modern-blog-regional {
    padding: 80px 0;
    background: white;
}

.modern-regional-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 250px;
    display: flex;
}

.modern-regional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.modern-regional-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.modern-regional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.modern-regional-card:hover .modern-regional-image img {
    transform: scale(1.05);
}

.modern-regional-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.modern-regional-category {
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
}

.modern-regional-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
    min-height: 3.2rem;
    display: flex;
    align-items: flex-start;
}

.modern-regional-text {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    min-height: 4rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-regional-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: auto;
}

.modern-regional-meta .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Responsive Design for New Sections */
@media (max-width: 991.98px) {

    .modern-blog-destinations,
    .modern-blog-tips,
    .modern-blog-stories,
    .modern-blog-regional {
        padding: 60px 0;
    }

    .modern-destination-card {
        height: 350px;
    }

    .modern-tip-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .modern-tip-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .modern-regional-card {
        margin-bottom: 1.5rem;
        height: 280px;
    }

    .modern-regional-content {
        padding: 1.25rem;
    }

    .modern-regional-title {
        font-size: 1.15rem;
        min-height: 2.8rem;
    }

    .modern-regional-text {
        font-size: 0.88rem;
        min-height: 3.5rem;
    }
}

@media (max-width: 767.98px) {

    .modern-blog-destinations,
    .modern-blog-tips,
    .modern-blog-stories,
    .modern-blog-regional {
        padding: 50px 0;
    }

    .modern-destination-card {
        height: 300px;
    }

    .modern-destination-overlay {
        padding: 1.5rem;
    }

    .modern-destination-title {
        font-size: 1.1rem;
    }

    .modern-stories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modern-story-card {
        height: 250px;
    }

    .modern-regional-card {
        height: auto;
        flex-direction: column;
        min-height: 400px;
    }

    .modern-regional-content {
        height: auto;
        padding: 1rem;
    }

    .modern-regional-image {
        height: 200px;
        width: 100%;
    }

    .modern-regional-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        min-height: auto;
    }

    .modern-regional-text {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        min-height: auto;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    .modern-regional-meta .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 575.98px) {
    .modern-destination-card {
        height: 250px;
    }

    .modern-destination-overlay {
        padding: 1rem;
    }

    .modern-destination-title {
        font-size: 1rem;
    }

    .modern-story-card {
        height: 220px;
    }

    .modern-story-overlay {
        padding: 1rem;
    }

    .modern-story-title {
        font-size: 1rem;
    }

    .modern-tip-card {
        padding: 1.5rem;
    }

    .modern-tip-title {
        font-size: 1.1rem;
    }

    .modern-regional-card {
        min-height: 350px;
    }

    .modern-regional-content {
        padding: 0.75rem;
    }

    .modern-regional-image {
        height: 180px;
    }

    .modern-regional-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        min-height: auto;
    }

    .modern-regional-text {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        min-height: auto;
    }

    .modern-regional-meta {
        gap: 0.25rem;
    }

    .modern-regional-meta .badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ================================================================================================ */
/* ! MODERN BLOG SECTION END */
/* ================================================================================================ */

/* ================================================================================================ */
/* ! BLOG SINGLE PAGE STYLES START */
/* ================================================================================================ */

/* Breadcrumb Styles */
.modern-blog-breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #64748b;
    font-weight: bold;
}

.breadcrumb-item a:hover {
    color: #4da8ff !important;
    text-decoration: underline !important;
}

/* Blog Single Hero */
.modern-blog-single-hero {
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper img {
    transition: transform 0.6s ease;
}

.modern-blog-single-hero:hover .hero-image-wrapper img {
    transform: scale(1.02);
}

/* Article Content Styles */
.blog-article {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
}

.blog-article h2,
.blog-article h3,
.blog-article h4,
.blog-article h5,
.blog-article h6 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    position: relative;
}

.blog-article h2::after,
.blog-article h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    border-radius: 2px;
}

.blog-article p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-article strong {
    color: #1a202c;
    font-weight: 600;
}

.blog-article ul,
.blog-article ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Image Styles */
.blog-article img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-article img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Social Share Sticky */
.social-share-sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 15px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-share-sticky .btn {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-share-sticky .btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Alert Boxes */
.blog-article .alert {
    border-left: 4px solid;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.blog-article .alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.blog-article .alert:hover::before {
    transform: translateX(100%);
}

.alert-info {
    border-left-color: #2196f3;
}

.alert-success {
    border-left-color: #4caf50;
}

.alert-warning {
    border-left-color: #ff9800;
}

/* Card Styles in Article */
.blog-article .card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-article .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Tags Styles */
.article-tags .badge {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.article-tags .badge:hover {
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 168, 255, 0.3);
}

/* Author Bio */
.author-bio {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.author-bio::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 168, 255, 0.05), transparent);
    transition: all 0.6s ease;
}

.author-bio:hover::before {
    left: 100%;
}

/* Sidebar Styles */
.blog-sidebar .sidebar-widget {
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.blog-sidebar .sidebar-widget:hover {
    transform: translateY(-5px);
}

.widget-content {
    background: #ffffff !important;
    /* border: 1px solid #f1f5f9; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.widget-content:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.widget-title {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem !important;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #4da8ff 0%, #2a50fc 100%);
    border-radius: 2px;
}

/* Popular Posts Widget */
.popular-post {
    transition: all 0.3s ease;
    padding: 0.75rem 0 !important;
    border-radius: 8px;
    margin: 0 -1rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.popular-post:hover {
    background: rgba(77, 168, 255, 0.05);
    transform: translateX(5px);
}

.popular-post img {
    transition: all 0.3s ease;
}

.popular-post:hover img {
    transform: scale(1.1);
}

.popular-post h6 a {
    transition: all 0.3s ease;
}

.popular-post:hover h6 a {
    color: #4da8ff !important;
}

/* Categories Widget */
.categories-list li a {
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 -1rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.categories-list li a:hover {
    background: rgba(77, 168, 255, 0.1);
    color: #4da8ff !important;
    transform: translateX(5px);
}

.categories-list li a:hover .badge {
    background: #4da8ff !important;
    color: white !important;
}


/* Related Posts Section */
.related-posts-section {
    position: relative;
}

.related-posts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="related-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%234da8ff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%234da8ff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23related-pattern)"/></svg>');
    opacity: 0.5;
}


/* Reading Progress Bar */
.reading-progress {
    box-shadow: 0 2px 4px rgba(77, 168, 255, 0.3);
}

/* Mobile Optimizations */
@media (max-width: 991.98px) {
    .social-share-sticky {
        display: none !important;
    }

    .blog-article {
        font-size: 1rem;
    }

    .blog-article h2::after,
    .blog-article h3::after {
        width: 40px;
        height: 2px;
    }
}

@media (max-width: 767.98px) {
    .modern-blog-single-hero .hero-image-wrapper {
        height: 50vh !important;
    }

    .hero-content .display-4 {
        font-size: 2rem !important;
    }

    .blog-article {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .blog-article h2,
    .blog-article h3,
    .blog-article h4 {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .article-tags .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .author-bio {
        text-align: center;
    }

    .author-bio .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-bio .me-4 {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }

    .popular-post,
    .categories-list li a {
        margin: 0;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

}

@media (max-width: 575.98px) {
    .modern-blog-single-hero .hero-image-wrapper {
        height: 40vh !important;
    }

    .hero-content .display-4 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    .hero-content .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-content .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .blog-article {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .blog-article p {
        text-align: left;
    }

    .sidebar-widget {
        margin-bottom: 2rem !important;
    }

    .widget-content {
        padding: 1rem !important;
    }

    .related-posts-section .modern-blog-card-content {
        padding: 1rem;
    }

    .related-posts-section .modern-blog-card-title {
        font-size: 1rem;
        line-height: 1.3;
    }

}

/* Print Styles */
@media print {

    .social-share-sticky,
    .blog-sidebar,
    .related-posts-section,
    .header-top,
    .header-bot,
    .footer {
        display: none !important;
    }

    .blog-article {
        font-size: 12pt;
        line-height: 1.5;
    }

    .blog-article h2,
    .blog-article h3,
    .blog-article h4 {
        break-after: avoid;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .blog-article img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 0;
        box-shadow: none;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    .blog-article {
        color: #e2e8f0;
    }

    .blog-article h2,
    .blog-article h3,
    .blog-article h4,
    .blog-article h5,
    .blog-article h6 {
        color: #f7fafc;
    }

    .widget-content {
        background: #2d3748 !important;
        border-color: #4a5568;
    }

}

/* ================================================================================================ */
/* ! BLOG SINGLE PAGE STYLES END */
/* ================================================================================================ */

/* ================================================================================================ */
/* ! B2B PANEL STYLES START */
/* ================================================================================================ */

/* B2B Panel Hero Section */
.b2b-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.b2b-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="b2b-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23b2b-pattern)"/></svg>');
    opacity: 0.3;
}

.b2b-hero-content {
    position: relative;
    z-index: 2;
}

.b2b-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.b2b-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* B2B Search Bar */
.b2b-search-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.b2b-search-form {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 120px;
    gap: 1rem;
    align-items: end;
}

.b2b-form-group {
    display: flex;
    flex-direction: column;
}

.b2b-form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.b2b-form-label i {
    color: #667eea;
    font-size: 1rem;
}

.b2b-form-input,
.b2b-form-select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #2d3748;
    transition: all 0.3s ease;
}

.b2b-form-input:focus,
.b2b-form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.b2b-search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 48px;
}

.b2b-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* B2B Filter Tabs */
.b2b-filter-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.b2b-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.b2b-filter-tab {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.b2b-filter-tab:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
}

.b2b-filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* B2B Tour Cards */
.b2b-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.b2b-tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.b2b-tour-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.b2b-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.b2b-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.b2b-tour-card:hover .b2b-card-image img {
    transform: scale(1.1);
}

.b2b-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2d3748;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.b2b-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.b2b-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.b2b-tour-card:hover .b2b-card-title {
    color: #667eea;
}

.b2b-card-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.b2b-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.b2b-detail-item i {
    color: #667eea;
    font-size: 0.9rem;
    width: 16px;
}

.b2b-card-price {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.b2b-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.b2b-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.b2b-btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.b2b-btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2b-btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* B2B Load More */
.b2b-load-more {
    text-align: center;
    margin-top: 3rem;
}

.b2b-load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.b2b-load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* B2B Statistics Section */
.b2b-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
}

.b2b-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.b2b-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.b2b-stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.b2b-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .b2b-search-form {
        grid-template-columns: 2fr 1.5fr 1.5fr 100px;
        gap: 0.75rem;
    }

    .b2b-tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .b2b-hero-title {
        font-size: 2.5rem;
    }

    .b2b-hero-subtitle {
        font-size: 1.1rem;
    }

    .b2b-search-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .b2b-search-container {
        padding: 1.5rem;
    }

    .b2b-filter-tabs {
        gap: 0.75rem;
    }

    .b2b-filter-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .b2b-tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .b2b-card-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .b2b-hero-section {
        padding: 60px 0;
    }

    .b2b-hero-title {
        font-size: 2rem;
    }

    .b2b-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .b2b-search-container {
        padding: 1rem;
        border-radius: 15px;
    }

    .b2b-filter-section {
        padding: 40px 0;
    }

    .b2b-filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .b2b-filter-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .b2b-tours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .b2b-card-image {
        height: 200px;
    }

    .b2b-card-content {
        padding: 1rem;
    }

    .b2b-card-title {
        font-size: 1.1rem;
    }

    .b2b-card-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .b2b-stats-section {
        padding: 60px 0;
    }

    .b2b-stat-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .b2b-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .b2b-hero-section {
        padding: 40px 0;
    }

    .b2b-hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .b2b-hero-subtitle {
        font-size: 0.9rem;
    }

    .b2b-search-container {
        padding: 0.75rem;
        margin: 0 1rem;
    }

    .b2b-form-input,
    .b2b-form-select,
    .b2b-search-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .b2b-card-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .b2b-card-price {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .b2b-btn-primary,
    .b2b-btn-secondary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .b2b-stat-number {
        font-size: 2rem;
    }

    .b2b-stat-label {
        font-size: 1rem;
    }
}

/* ================================================================================================ */
/* ! B2B PANEL STYLES END */
/* ================================================================================================ */

/* ================================================================================================ */
/* ! AUTH LOGIN MODERN START */
/* ================================================================================================ */
.auth-login-page {
    --auth-primary: #00acdc;
    --auth-primary-dark: #020c2e;
    --auth-text: #1f2e45;
    --auth-muted: #647892;
    --auth-border: rgba(6, 37, 83, 0.14);
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    background:
        radial-gradient(circle at 8% 10%, rgba(0, 172, 220, 0.14), transparent 40%),
        radial-gradient(circle at 90% 95%, rgba(2, 12, 46, 0.14), transparent 44%),
        linear-gradient(180deg, #f5f9ff 0%, #edf4fb 100%);
}

.auth-login-shell {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--auth-border);
    background: #fff;
    box-shadow: 0 24px 64px rgba(2, 12, 46, 0.16);
}

.auth-login-brand {
    height: 100%;
    color: #fff;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(145deg, #020c2e 0%, #0b2f58 48%, #00acdc 100%);
    position: relative;
    z-index: 1;
}

.auth-login-brand::before {
    content: "";
    position: absolute;
    inset: auto -20% -30% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    filter: blur(6px);
    z-index: -1;
}

.auth-login-logo img {
    width: clamp(150px, 22vw, 210px);
    height: auto;
}

.auth-login-badge {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-login-brand h1 {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.auth-login-brand p {
    margin-bottom: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.auth-login-benefits {
    margin: 0;
    padding: 0;
}

.auth-login-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
}

.auth-login-benefits i {
    color: #8ce8ff;
}

.auth-login-support {
    margin-top: 1.4rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.auth-login-support a {
    color: #9ce8ff;
    text-decoration: none;
    font-weight: 600;
}

.auth-login-support a:hover {
    color: #fff;
    text-decoration: underline;
}

.auth-login-form-wrap {
    padding: clamp(2rem, 4vw, 3rem);
}

.auth-login-title {
    color: var(--auth-text);
    font-size: clamp(1.55rem, 2.5vw, 2rem);
    margin-bottom: 0.35rem;
}

.auth-login-description {
    color: var(--auth-muted);
    margin-bottom: 1.4rem;
}

.auth-login-validation {
    border-radius: 12px;
    border: 1px solid #ffd7da;
    background: #fff5f6;
    padding: 0.75rem 0.9rem;
}

.auth-login-validation ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.auth-input-group {
    margin-bottom: 1rem;
}

.auth-input-wrap {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #7f8ea5;
    pointer-events: none;
}

.auth-login-input {
    height: 50px;
    border-radius: 14px;
    border: 1px solid #d7e2ef;
    background: #fbfdff;
    padding-left: 2.6rem;
    padding-right: 2.7rem;
}

.auth-login-input:focus {
    border-color: rgba(0, 172, 220, 0.75);
    background: #fff;
    box-shadow: 0 0 0 0.24rem rgba(0, 172, 220, 0.16);
}

.auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #6d7f97;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
}

.auth-password-toggle:hover {
    background: rgba(0, 172, 220, 0.15);
    color: #0f5f96;
}

.auth-login-options {
    margin: 0.4rem 0 1.3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.auth-inline-link {
    color: #0762a6;
    font-size: 0.88rem;
    font-weight: 600;
}

.auth-login-submit {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #00acdc 0%, #0088cf 100%);
    box-shadow: 0 14px 26px rgba(0, 172, 220, 0.34);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.auth-login-submit:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 17px 30px rgba(0, 172, 220, 0.4);
    filter: saturate(1.06);
}

.auth-login-submit:active {
    transform: translateY(0);
}

.auth-login-footer {
    margin-top: 1.2rem;
    text-align: center;
    color: var(--auth-muted);
    font-size: 0.95rem;
}

.auth-login-footer a {
    color: #055c9d;
    text-decoration: none;
    font-weight: 600;
}

.auth-login-footer a:hover {
    color: #083d66;
    text-decoration: underline;
}

.auth-fade-up {
    animation: authFadeUp 0.6s ease both;
}

.auth-fade-up-delay {
    animation-delay: 0.12s;
}

@keyframes authFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .auth-login-shell {
        border-radius: 24px;
    }

    .auth-login-brand {
        padding-bottom: 2rem;
    }

    .auth-login-support {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .auth-login-page {
        padding: 2rem 0;
    }

    .auth-login-shell {
        border-radius: 18px;
    }

    .auth-login-brand,
    .auth-login-form-wrap {
        padding: 1.4rem;
    }
}

/* ================================================================================================ */
/* ! AUTH LOGIN MODERN END */
/* ================================================================================================ */

/* ================================================================================================ */
/* ! AUTH REGISTER MODERN START */
/* ================================================================================================ */
.auth-register-page {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    background:
        radial-gradient(circle at 92% 14%, rgba(0, 172, 220, 0.16), transparent 38%),
        radial-gradient(circle at 12% 96%, rgba(2, 12, 46, 0.14), transparent 40%),
        linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.auth-register-shell {
    box-shadow: 0 28px 72px rgba(2, 12, 46, 0.14);
}

.auth-google-form {
    margin-bottom: 1rem;
}

.auth-google-btn {
    width: 100%;
    border: 1px solid #d5dfeb;
    border-radius: 14px;
    background: #ffffff;
    color: #1d2f46;
    font-weight: 600;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.auth-google-btn i {
    color: #db4437;
    font-size: 1.05rem;
}

.auth-google-btn:hover {
    border-color: #c3d0e0;
    box-shadow: 0 10px 20px rgba(29, 47, 70, 0.1);
    transform: translateY(-1px);
}

.auth-google-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.auth-provider-helper {
    margin-top: 0.55rem;
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
    color: #5a6f87;
}

.phone-completion-banner {
    background: linear-gradient(135deg, #f2f8ff 0%, #eaf4ff 100%);
    border-top: 1px solid #d6e6fa;
    border-bottom: 1px solid #d6e6fa;
}

.phone-completion-banner__content {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.phone-completion-banner__text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #1c3957;
    font-size: 0.95rem;
}

.phone-completion-banner__text i {
    color: #007ab8;
}

.phone-completion-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.phone-completion-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 0.95rem;
    border-radius: 999px;
    border: 1px solid #008fce;
    background: #00acdc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
}

.phone-completion-banner__cta:hover {
    color: #fff;
    background: #0197c2;
}

.phone-completion-banner__close {
    border: 0;
    background: transparent;
    color: #385a79;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0;
}

.phone-completion-banner__close:hover {
    color: #183752;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .phone-completion-banner__content {
        align-items: flex-start;
        flex-direction: column;
    }

    .phone-completion-banner__text {
        font-size: 0.9rem;
    }
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1rem 0 1.2rem 0;
}

.auth-divider::before {
    content: "";
    position: absolute;
    inset: 50% 0 auto 0;
    border-top: 1px solid #d9e4f1;
    transform: translateY(-50%);
}

.auth-divider span {
    position: relative;
    z-index: 1;
    padding: 0 0.7rem;
    font-size: 0.86rem;
    color: #67819d;
    background: #fff;
}

.auth-marketing-check {
    margin-top: 0.2rem;
}

.auth-marketing-check .form-check-label {
    color: #516983;
    font-size: 0.92rem;
}

.auth-register-brand {
    height: 100%;
    padding: clamp(2rem, 4vw, 3rem);
    color: #fff;
    background: linear-gradient(160deg, #082044 0%, #0d3e6f 60%, #00acdc 100%);
}

.auth-register-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    margin-bottom: 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.34);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.auth-register-brand h2 {
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.auth-register-brand p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.auth-register-benefits {
    margin: 0;
    padding: 0;
}

.auth-register-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.auth-register-benefits i {
    color: #9ce8ff;
}

@media (max-width: 991.98px) {
    .auth-register-brand {
        padding-top: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .auth-register-page {
        padding: 2rem 0;
    }

    .auth-register-brand {
        padding: 1.4rem;
    }
}

/* ================================================================================================ */
/* ! AUTH REGISTER MODERN END */
/* ================================================================================================ */


/* ! FAVORITE INTERACTION OVERRIDES START */
.favorite-button {
    border: none;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.favorite-button.is-favorite {
    color: #d12f2f;
    background-color: #fff3f3;
}

.favorite-button.is-pending {
    opacity: .7;
    pointer-events: none;
}

.detail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.detail-favorite-button {
    border: 1px solid #d9e2ee;
    background: #fff;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    color: #3a4d66;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all .2s ease-in-out;
}

.detail-favorite-button:hover {
    border-color: #c5d3e4;
    color: #d12f2f;
}

.detail-favorite-button.is-favorite {
    border-color: #f2b7b7;
    color: #d12f2f;
    background: #fff5f5;
}

.favorite-toast .toast-body {
    font-weight: 500;
}
/* ! FAVORITE INTERACTION OVERRIDES END */

/* ! FAVORITE CLICK SAFETY OVERRIDES START */
.favorite-button {
    z-index: 30 !important;
    pointer-events: auto !important;
}

.detail-favorite-button {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}
/* ! FAVORITE CLICK SAFETY OVERRIDES END */
