/* Timeshare India Header Styles */
.tsi-header {
    width: 100%;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Top marquee bar */
.tsi-header-top {
    background: linear-gradient(90deg, #c19a4a, #e2bb74);
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
    text-align: center;
}

/* Bottom container */
.tsi-header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    flex-wrap: wrap;
}

/* Logo */
.tsi-logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 220px;
}

.tsi-logo-img {
    height: 45px;
    transition: transform 0.3s ease;
    background: #000;
    border-radius: 10px;
    padding: 0px 0px 0px 10px;
}

.tsi-logo-img:hover {
    transform: scale(1.05);
}

/* Pay button */
.tsi-pay-img {
    height: 42px;
    transition: transform 0.3s ease;
}

.tsi-pay-img:hover {
    transform: scale(1.1);
}

/* Navigation */
.tsi-nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.tsi-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.tsi-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #c19a4a;
    transition: 0.3s;
}

.tsi-nav-link:hover {
    color: #c19a4a;
}

.tsi-nav-link:hover::after {
    width: 100%;
}

/* Toggle Button for Mobile */
.tsi-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.tsi-menu-toggle span {
    height: 3px;
    width: 25px;
    background: #333;
    margin-bottom: 5px;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 900px) {
    .tsi-header-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .tsi-menu-toggle {
        display: flex;
    }

    .tsi-nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    .tsi-nav-list.tsi-active {
        display: flex;
    }

    .tsi-pay-button {
        margin-top: 10px;
    }
}












/* ====== Timeshare Banner Styling ====== */

.tsi-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Slider container */
.tsi-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Each Slide */
.tsi-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.tsi-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay with form */
.tsi-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6%;
}

/* Contact Form Card */
.tsi-form-card {
    background: #fff;
    width: 380px;
    padding: 25px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 1s ease;
}

.tsi-form-card h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #333;
}

.tsi-form-card h3 span {
    color: #c19a4a;
}

/* Form Fields */
.tsi-contact-form input,
.tsi-contact-form select,
.tsi-contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s ease;
}

.tsi-contact-form input:focus,
.tsi-contact-form select:focus,
.tsi-contact-form textarea:focus {
    border-color: #c19a4a;
    outline: none;
    box-shadow: 0 0 6px rgba(193, 154, 74, 0.4);
}

.tsi-contact-form textarea {
    min-height: 80px;
    resize: none;
}

/* Submit Button */
.tsi-contact-form button {
    width: 100%;
    background: linear-gradient(90deg, #c19a4a, #e2bb74);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tsi-contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(193, 154, 74, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
    .tsi-banner-overlay {
        justify-content: center;
        padding: 0 15px;
    }

    .tsi-form-card {
        width: 95%;
        max-width: 400px;
    }
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





















.about-section {
    background: linear-gradient(135deg, #fffdf7 0%, #f4efe5 100%);
    padding: 70px 0;
    font-family: "Poppins", sans-serif;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-title span {
    color: #b8860b;
}

.subtitle {
    text-align: center;
    color: #777;
    font-size: 16px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-left {
    flex: 2;
    min-width: 60%;
}

.about-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.about-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
}

.about-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s ease;
}

.about-card:hover img {
    filter: brightness(0.6);
    transform: scale(1.05);
}

.about-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    text-align: center;
    padding: 12px 8px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: background 0.3s ease;
}

.about-card:hover .overlay {
    background: rgba(184, 134, 11, 0.8);
}

/* Right Side Box */
.about-right {
    flex: 1;
    min-width: 35%;
}

.resort-list-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.resort-list-box h3 {
    font-size: 20px;
    color: #b8860b;
    border-bottom: 2px solid #f2d18b;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.resort-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 380px;
    overflow-y: auto;
}

.resort-list li {
    margin: 8px 0;
}

.resort-list a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: color 0.3s ease;
}

.resort-list a i {
    color: #b8860b;
    margin-right: 8px;
}

.resort-list a:hover {
    color: #b8860b;
}

.view-more {
    display: inline-block;
    margin-top: 15px;
    background: #b8860b;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.view-more:hover {
    background: #8b6b00;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
    }

    .about-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}














.section-wrapper {
    padding: 60px 8%;
    background: #f9fafb;
}

.resale-section {
    background: #fff8f2;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: #1a202c;
    font-weight: 700;
    position: relative;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7e29;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: #555;
    font-size: 1rem;
    margin-top: 10px;
}

.resort-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.resort-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resort-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.resort-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.resort-info {
    padding: 20px;
    text-align: center;
}

.resort-info h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.resort-info .meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.resort-info .price {
    color: #222;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(45deg, #ff7e29, #ff4e50);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(45deg, #1e90ff, #0072ff);
    color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .section-wrapper {
        padding: 40px 5%;
    }

    .resort-info h3 {
        font-size: 1.1rem;
    }
}