/* Original Card Layout Styles */
.tour-columns-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.tour-column {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.tour-card {
    border: 1px solid #ebebeb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0%);
    transition: transform 0.3s ease, 
    box-shadow 0.3s ease;
    background: #fff;
    position: relative;
}

.tour-card:hover {
    box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
}

.tour-header-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

/* Destination and Tour Type positioned over header image */
.tour-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.destination-badge {
    background: rgb(0 0 0 / .6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 37px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .5px;
}

.tour-type {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    background: rgb(0 0 0 / .6);
    padding: 3px 8px;
    border-radius: 37px;
}

.tour-content {
    padding: 3px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px); /* Adjust based on header image height */
}

.tour-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.3;
}

.tour-details {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tour-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.tour-detail-icon {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 5px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-detail-text {
    font-size: 12px;
    line-height: 1.3;
}

.tour-price {
    background: #ebebeb00;
    padding: 8px 15px;
    margin: 0 -20px 0px -20px;
    text-align: right;
    border-top: 1px solid #e9ecef;
    border-bottom: 0 solid #e9ecef;
    margin-top: auto;
}

.price-amount {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 5px;
    text-align: left;
}

.price-description {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}
.tour-button {
    text-align: right;
    margin-top: 10px;
}

.tour-features {
    margin-bottom: 20px;
}

.tour-feature {
    color: #28a745;
    font-size: 14px;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.tour-feature:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.tour-button {
    text-align: center;
    
}

.view-details-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.3s ease;
}

.view-details-btn:hover {
    background: #1e3d6f;
    color: white;
}

/* Grid Layout Styles - NEW */
.tour-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 10px;
    margin: 40px 0;
    padding: 0 0px !important;
}

.tour-grid-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 500px;
}

.tour-grid-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.tour-grid-card {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.tour-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.8) 80%,
        rgba(0, 0, 0, 0.9) 100%
    );
    transition: opacity 0.3s ease;
}

.tour-grid-item:hover .tour-grid-card::before {
    opacity: 0.95;
}

.tour-grid-content {
    position: relative;
    z-index: 2;
    padding: 8px 15px;
    color: #fff;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.tour-grid-item:hover .tour-grid-content {
    transform: translateY(-5px);
}

.tour-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.destination-badge-grid {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 7px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tour-type-grid {
    background: rgba(255, 255, 255, 0.95);
    color: #2c5aa0;
    padding: 6px 10px;
    text-transform: uppercase;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-grid-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 25px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.tour-grid-details {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tour-grid-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(255 255 255 / .1);
    padding: 3px 5px;
    border-radius: 7px;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / .1);
    transition: all 0.3s ease;
}

.tour-grid-detail:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.tour-grid-detail-icon {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    width: 24px;
    text-align: center;
}

.tour-grid-detail-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.tour-grid-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-grid-price {
    text-align: left;
    flex: 1;
}

.price-amount-grid {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-description-grid {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.tour-grid-button {
    flex-shrink: 0;
}

.view-details-btn-grid {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 7px 18px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.view-details-btn-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-details-btn-grid:hover::before {
    left: 100%;
}

.view-details-btn-grid:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Custom Style 1 Layout */
.tour-custom-1-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tour-custom-1-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.tour-custom-1-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tour-custom-1-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-custom-1-header {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.tour-custom-1-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-custom-1-item:hover .tour-custom-1-header img {
    transform: scale(1.05);
}

.tour-custom-1-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.destination-custom-1 {
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-custom-1-content {
    padding: 10px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-type-custom-1 {
    color: #7f8c8d;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tour-custom-1-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #2c3e50;
    line-height: 1.3;
}

.tour-custom-1-details {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-custom-1-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5d6d7e;
    font-size: 14px;
}

.tour-custom-1-detail i {
    color: #3498db;
    width: 20px;
    text-align: center;
}

.tour-custom-1-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
}

.tour-custom-1-price {
    text-align: left;
}

.price-amount-custom-1 {
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 2px;
}

.price-description-custom-1 {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
}

.tour-custom-1-button {
    flex-shrink: 0;
}

.view-details-btn-custom-1 {
    display: inline-block;
    background: #11315f;
    color: white !important;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid #11315f;
}

.view-details-btn-custom-1:hover {
    background: transparent;
    color: #3498db !important;
    transform: translateY(-2px);
}

/* Custom Style 2 Layout */
.tour-custom-2-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 35px 0;
}

.tour-custom-2-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 420px;
    position: relative;
}

.tour-custom-2-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-custom-2-card {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.tour-custom-2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.7) 100%);
}

.tour-custom-2-content {
    position: relative;
    z-index: 2;
    padding: 25px 13px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-custom-2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.destination-custom-2 {
    background: #9b59b6;
    color: white;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 17px;
}

.tour-type-custom-2 {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 17px;
    text-transform: uppercase;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.tour-custom-2-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tour-custom-2-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.tour-custom-2-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 7px 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tour-custom-2-detail:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.detail-icon-custom-2 {
    font-size: 18px;
    color: #3498db;
    width: 24px;
    text-align: center;
}

.detail-text-custom-2 {
    font-size: 14px;
    font-weight: 500;
}

.tour-custom-2-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-custom-2-price {
    text-align: left;
    line-height: 20px;
}

.price-amount-custom-2 {
    font-size: 26px;
    font-weight: 700;
    color: #f1c40f;
    margin-bottom: 3px;
    display: block;
}

.price-description-custom-2 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.tour-custom-2-button {
    flex-shrink: 0;
}

.view-details-btn-custom-2 {
    display: inline-block;
    background: #e74c3c;
    color: white !important;
    padding: 6px 18px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-details-btn-custom-2:hover {
    background: transparent;
    color: #e74c3c !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Media & Text Layout Styles - NEW */
.tour-media-text-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.tour-media-text-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 220px;
}

.tour-media-text-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tour-media-text-card {
    display: flex;
    height: 100%;
}

.tour-media-text-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.tour-media-text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-media-text-item:hover .tour-media-text-image img {
    transform: scale(1.05);
}

.destination-media-text {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
    color: rgb(255, 255, 255);
    padding: 1px 11px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
}

.tour-media-text-content {
    flex: 1;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-type-media-text {
    color: #7f8c8d;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.tour-media-text-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #2c3e50;
    line-height: 1.3;
}

.tour-media-text-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 0px;
}

.tour-media-text-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tour-media-text-detail-icon {
    width: 32px;
    height: 32px;
    background: rgb(221 221 221);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tour-media-text-item:hover .tour-media-text-detail-icon {
    background: #667eea;
    transform: scale(1.1);
}

.tour-media-text-detail-icon i {
    font-size: 14px;
    color: #667eea;
    transition: color 0.3s ease;
}

.tour-media-text-item:hover .tour-media-text-detail-icon i {
    color: white;
}

.tour-media-text-detail-text {
    font-size: 14px;
    font-weight: 500;
    color: #5d6d7e;
}

.tour-media-text-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    border-top: 0px solid #ecf0f1;
}

.tour-media-text-price {
    text-align: left;
}

.price-amount-media-text {
    font-size: 22px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 3px;
}

.price-description-media-text {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
}

.tour-media-text-button {
    flex-shrink: 0;
}

.view-details-btn-media-text {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.view-details-btn-media-text:hover {
    background: transparent;
    color: #667eea !important;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* One Column Layout Styles - NEW */
.tour-one-column-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tour-one-column-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.tour-one-column-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tour-one-column-card {
    display: flex;
    height: 300px;
}

.tour-one-column-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.tour-one-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-one-column-item:hover .tour-one-column-image img {
    transform: scale(1.08);
}

.destination-one-column {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3px 16px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    box-shadow: 0 6px 20px rgb(0 0 0 / .2);
}

.tour-one-column-content {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-type-one-column {
    color: #7f8c8d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.tour-one-column-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #2c3e50;
    line-height: 1.3;
}

.tour-one-column-details {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}

.tour-one-column-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tour-one-column-detail-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tour-one-column-item:hover .tour-one-column-detail-icon {
    transform: rotate(10deg) scale(1.1);
}

.tour-one-column-detail-icon i {
    font-size: 16px;
    color: white;
}

.tour-one-column-detail-text {
    font-size: 15px;
    font-weight: 600;
    color: #5d6d7e;
}

.tour-one-column-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

.tour-one-column-price {
    text-align: left;
}

.price-amount-one-column {
    font-size: 28px;
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 5px;
}

.price-description-one-column {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 600;
}

.tour-one-column-button {
    flex-shrink: 0;
}

.view-details-btn-one-column {
    display: inline-block;
    background: linear-gradient(135deg, #11315f 0%, #61279d 100%);
    color: white !important;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-details-btn-one-column:hover {
    background: transparent;
    color: #667eea !important;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Animation for One Column Layout */
.tour-one-column-item {
    animation: fadeInUp 0.6s ease-out;
}

.tour-one-column-item:nth-child(1) { animation-delay: 0.1s; }
.tour-one-column-item:nth-child(2) { animation-delay: 0.2s; }
.tour-one-column-item:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design - One Column Layout */
@media (max-width: 1024px) {
    .tour-one-column-wrapper {
        max-width: 90%;
        gap: 25px;
    }
    
    .tour-one-column-card {
        height: 260px;
    }
    
    .tour-one-column-content {
        padding: 25px;
    }
    
    .tour-one-column-title {
        font-size: 22px;
    }
    
    .tour-one-column-details {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tour-one-column-wrapper {
        max-width: 95%;
        gap: 20px;
    }
    
    .tour-one-column-item {
        height: auto;
    }
    
    .tour-one-column-card {
        flex-direction: column;
        height: auto;
    }
    
    .tour-one-column-image {
        flex: 0 0 250px;
    }
    
    .tour-one-column-content {
        padding: 25px;
    }
    
    .tour-one-column-details {
        flex-direction: row;
        margin-bottom: 20px;
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        gap: 20px;
    }
    
    .tour-one-column-footer {
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
    }
    
    .tour-one-column-button {
        width: 50%;
    }
    
    .view-details-btn-one-column {
        display: block;
        text-align: center;
		padding: 5px 5px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tour-one-column-wrapper {
        padding: 0 0px;
        gap: 20px;
    }
    
    .tour-one-column-item {
        border-radius: 12px;
    }
    
    .tour-one-column-content {
        padding: 20px;
    }
	h3.tour-one-column-title {
		margin: 0 0px !important;
        padding: 0px 0 0 !important;
	}
    .tour-one-column-title {
        font-size: 20px;
    }
    
    .price-amount-one-column {
        font-size: 24px;
    }
    
    .tour-one-column-detail {
        gap: 12px;
    }
    
    .tour-one-column-detail-icon {
        width: 36px;
        height: 36px;
    }
    
    .tour-one-column-detail-icon i {
        font-size: 14px;
    }
    
    .tour-one-column-detail-text {
        font-size: 14px;
    }
    
    .destination-one-column {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Animation for Media Text Layout */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-grid-item,
.tour-custom-1-item,
.tour-custom-2-item,
.tour-media-text-item,
.tour-one-column-item {
    animation: fadeInUp 0.6s ease-out;
}

.tour-grid-item:nth-child(1),
.tour-custom-1-item:nth-child(1),
.tour-custom-2-item:nth-child(1),
.tour-media-text-item:nth-child(1),
.tour-one-column-item:nth-child(1) { animation-delay: 0.1s; }
.tour-grid-item:nth-child(2),
.tour-custom-1-item:nth-child(2),
.tour-custom-2-item:nth-child(2),
.tour-media-text-item:nth-child(2),
.tour-one-column-item:nth-child(2) { animation-delay: 0.2s; }
.tour-grid-item:nth-child(3),
.tour-custom-1-item:nth-child(3),
.tour-custom-2-item:nth-child(3),
.tour-media-text-item:nth-child(3),
.tour-one-column-item:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design - Original Layout */
@media (max-width: 1024px) {
    .tour-columns-wrapper {
        gap: 20px;
    }
    
    .tour-column {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .tour-columns-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .tour-column {
        min-width: 100%;
        max-width: 400px;
    }
    
    .tour-header-overlay {
        padding: 8px 12px;
    }
    
    .destination-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .tour-type {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .tour-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tour-detail-icon {
        font-size: 18px;
    }
    
    .tour-detail-text {
        font-size: 11px;
    }
}

/* Responsive Design - Grid Layout */
@media (max-width: 1200px) {
    .tour-grid-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .tour-grid-title {
        font-size: 24px;
    }
    
    .price-amount-grid {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .tour-grid-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .tour-grid-content {
        padding: 13px 15px !important;
    }
    
    .tour-grid-title {
        font-size: 22px;
    }
    
    .tour-grid-details {
        gap: 15px;
    }
    
    /* Custom Style 1 Responsive */
    .tour-custom-1-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    /* Custom Style 2 Responsive */
    .tour-custom-2-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tour-grid-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 25px;
    }
    
    .tour-grid-item {
        height: 515px;
    }
    
    .tour-grid-content {
        padding: 25px;
    }
    
    .tour-grid-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .tour-grid-details {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .tour-grid-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .tour-grid-button {
        width: 100%;
    }
    
    .view-details-btn-grid {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .tour-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Custom Style 1 Mobile */
    .tour-custom-1-wrapper {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tour-custom-1-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .tour-custom-1-button {
        width: 100%;
    }
    
    .view-details-btn-custom-1 {
        display: block;
        text-align: center;
    }
    
    /* Custom Style 2 Mobile */
    .tour-custom-2-wrapper {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tour-custom-2-item {
        height: 450px;
    }
    
    .tour-custom-2-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .tour-custom-2-button {
        width: 100%;
    }
    
    .view-details-btn-custom-2 {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tour-grid-wrapper {
        padding: 0 10px;
        gap: 20px;
    }
    
    .tour-grid-item {
        height: 515px;
        border-radius: 12px;
    }
    
    .tour-grid-content {
        padding: 20px;
    }
    
    .tour-grid-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .price-amount-grid {
        font-size: 24px;
    }
    
    .view-details-btn-grid {
        padding: 12px 25px;
        font-size: 12px;
    }
    
    .tour-grid-detail {
        padding: 6px 12px;
    }
    
    .tour-grid-detail-icon {
        font-size: 16px;
    }
    
    .tour-grid-detail-text {
        font-size: 13px;
    }
    
    /* Custom Style 1 Small Mobile */
    .tour-custom-1-content {
        padding: 15px;
    }
    
    .tour-custom-1-title {
        font-size: 18px;
    }
    
    .price-amount-custom-1 {
        font-size: 20px;
    }
    
    /* Custom Style 2 Small Mobile */
    .tour-custom-2-content {
        padding: 20px;
    }
    
    .tour-custom-2-title {
        font-size: 20px;
    }
    
    .price-amount-custom-2 {
        font-size: 22px;
    }
}

/* High-resolution displays */
@media (min-width: 1400px) {
    .tour-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tour-grid-item {
        height: 550px;
    }
    
    .tour-grid-title {
        font-size: 28px;
    }
    
    .tour-custom-1-wrapper {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tour-custom-2-wrapper {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tour-one-column-wrapper {
        max-width: 1200px;
    }
}

/* Print styles */
@media print {
    .tour-grid-item,
    .tour-custom-1-item,
    .tour-custom-2-item,
    .tour-media-text-item,
    .tour-one-column-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .tour-grid-card::before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    }
    
    .tour-custom-2-card::before {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(52, 73, 94, 0.5) 100%);
    }
    
    .tour-one-column-card {
        flex-direction: row;
    }
}