/* Modern CSS Reset and Base Styles */
:root {
    --primary-color: #ebba22;
    /* Main Orange */
    --accent-color: #ebba22;
    /* Darker Orange */
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-bg: rgba(0, 0, 0, 0.65);
    --form-bg: #ffffff;
    --header-bg: #ffffff;
    --border-radius: 4px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.whatsapp {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 8rem;
    left: 2rem;
    line-height: 40px;
    cursor: pointer;
    display: block;
    z-index: 2;
}

.whatsapp img {
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: var(--header-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 70px;
    /* Consistent height */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(235, 186, 34, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(235, 186, 34, 0.2);
}

.info-item a {
    text-decoration: none;
    color: #4b6584;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #a5b1c2;
}

.info-text {
    font-size: 0.95rem;
    color: #2d3436;
}

/* Hero Section Styles */
/* Toggle Button (Hidden on Desktop) */
.mobile-toggle,
.mobile-call-btn {
    display: none;
    cursor: pointer;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.header-info {
    display: flex;
    gap: 30px;
}

/* Response Header logic for Menu */
@media (max-width: 992px) {
    .price-guarantee {
        margin-bottom: 1rem;
    }

    .mobile-toggle {
        display: block;
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-left: 20px;
    }

    .mobile-call-btn {
        display: block;
        margin-left: auto;
    }

    .mobile-call-btn a {
        background-color: var(--primary-color);
        color: #fff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(235, 186, 34, 0.3);
    }

    /* Floating Menu for Mobile Header info */
    .header-info {
        display: none;
        /* Hidden by default on Mobile */
        position: absolute;
        top: 100%;
        right: 0px;
        background: #fff;
        width: 250px;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        border-top: 3px solid var(--primary-color);
        z-index: 9999;
        animation: menuFadeIn 0.3s ease-out;
    }

    .header-info.active {
        display: flex;
        /* Toggle on Mobile */
    }

    .info-item {
        margin-bottom: 25px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .info-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    @keyframes menuFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

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

.hero-section {
    position: relative;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/destination/ladakh-banner.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-area {
    flex: 1;
}

.hero-span {
    background: #ebba22;
    font-weight: 600;
    padding: 9px 38px;
    border-radius: 10px;
    font-size: 18px;
    animation: glowBlink 1.2s infinite;
}

@keyframes glowBlink {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 5px #ff5722;
    }

    50% {
        opacity: 0;
        text-shadow: 0 0 20px #ff5722;
    }
}

.welcome-box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 35px;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-color);
    margin-top: 1.5rem;
}

.welcome-box h1 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
}

.location-bar {
    background-color: var(--primary-color);
    padding: 12px 25px;
    margin-bottom: 20px;
    max-width: fit-content;
}

.location-bar p {
    color: #000;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    margin: 0;
}

.price-guarantee {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 25px;
    display: inline-block;
}

.price-guarantee h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.hero-form-area {
    width: 100%;
    max-width: 380px;
}

/* Responsive Header & Hero */
@media (max-width: 992px) {
    .header-info {
        gap: 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .location-bar {
        margin: 0 auto 20px;
    }

    .welcome-box {
        border-left: none;
        border-bottom: 5px solid var(--primary-color);
    }
}

@media (max-width: 768px) {
    .header-content {
        /* Kept as flex-row (default) to keep logo/icons aligned */
        padding: 5px 0;
    }

    .welcome-box h1 {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 55px;
        /* Smaller logo for mobile to save space */
    }

    .mobile-toggle {
        font-size: 1.5rem;
        margin-left: 15px;
    }

    .mobile-call-btn a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .welcome-box h1 {
        font-size: 1.8rem;
    }
}

.enquiry-body {
    background: white;
    border-radius: 0px 0px 15px 15px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--form-bg);
    width: 95%;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--light-text);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: #eee;
}

.enquiry-card {
    border-radius: 0;
    box-shadow: none;
}

.enquiry-header {
    background-color: var(--primary-color);
    padding: 22px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 15px 15px 0px 0px;
}

.enquiry-header h3 {
    color: var(--light-text);
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.enquiry-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-color);
}

.enquiry-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(235, 186, 34, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(235, 186, 34, 0.3);
}

.submit-btn:hover {
    background-color: #d4a71d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 186, 34, 0.4);
}

/* Package Section Styles */
.pkg-section {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

@media (min-width: 1150px) {
    .pkg-grid.center-cards {
        grid-template-columns: repeat(3, calc((100% - 60px) / 3));
        justify-content: center;
    }
}

.pkg-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pkg-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pkg-card:hover .pkg-img img {
    transform: scale(1.1);
}

/* Badge Styles */
.pkg-badge {
    position: absolute;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.duration-badge {
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    letter-spacing: 0.5px;
}

.offer-badge {
    top: 15px;
    left: 15px;
    background-color: #1b2938de;
    /* Vibrant red */
    color: white;
    animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 56, 56, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 56, 56, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 56, 56, 0.3);
    }
}

.tour-badge {
    background: #1b2938de;
    color: white;
    bottom: 10px;
    right: 14px;
    box-shadow: 0 4px 12px rgba(255, 56, 56, 0.3);
}

.pkg-content {
    padding: 20px;
    flex-grow: 1;
}

.pkg-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 3.2em;
    /* Ensure alignment even with different title lengths */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pkg-info {
    margin-bottom: 15px;
    border-top: 1px solid #f5f6fa;
    padding-top: 15px;
}

.pkg-info p {
    margin: 5px 0;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}

.pkg-info .label {
    font-weight: 500;
    color: #636e72;
}

.pkg-info .value {
    font-weight: 700;
}

.dark-orange {
    color: #f39c12;
}

.light-orange {
    color: #ff3838;
}

.pkg-icons {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px dashed #ecf0f1;
    border-bottom: 1px dashed #ecf0f1;
    margin: 15px 0;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.icon-item i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.icon-item span {
    font-size: 0.75rem;
    color: #95a5a6;
    font-weight: 500;
}

.pkg-inclusions h5 {
    font-size: 0.95rem;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-inclusions h5 i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.pkg-inclusions ul {
    list-style: none;
    padding-left: 5px;
    max-height: 110px;
    /* Reduced for ~3 lines */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.pkg-inclusions ul::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(transparent, #ffffff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.pkg-inclusions ul.expanded {
    max-height: 1000px;
}

.pkg-inclusions ul.expanded::after {
    opacity: 0;
}

.view-itinerary-btn {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.view-itinerary-btn:hover {
    text-decoration: underline;
}

.view-itinerary-btn i {
    margin-left: 5px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.view-itinerary-btn.active i {
    transform: rotate(180deg);
}

.pkg-inclusions ul li {
    font-size: 0.85rem;
    color: #636e72;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pkg-inclusions ul li i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 0.7rem;
}

.pkg-footer {
    padding: 20px;
    background-color: #fafbfc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.pricing-box {
    max-width: 380px;
    margin: auto;
    padding: 18px;
    border-radius: 14px;
    background: #f9fbff;
    font-family: Arial;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #fff;
}

.price-row.highlight {
    background: #ff38381a;
    color: #ff3838;
    font-weight: bold;
}

.more-prices {
    display: none;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #ff3838;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
}

.contact-icons {
    display: flex;
    gap: 12px;
}

.whatsapp-btn,
.call-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    color: white;
    transition: var(--transition);
}

.whatsapp-btn {
    background-color: #27af33;
}

.call-btn {
    background-color: #3498db;
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.customize-btn {
    padding: 10px 22px;
    background-color: var(--primary-color);
    /* Distinct orange for CTA */
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.customize-btn:hover {
    background-color: #ff3838;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
}

.mt-5 {
    margin-top: 3rem;
}

/* Responsive adjustments for Packages */
@media (max-width: 768px) {
    .pkg-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .pkg-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .customize-btn {
        width: 100%;
    }
}

/* Call to Us Section Styles */
.cta-call {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/destination/ladakh-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for depth */
    padding: 80px 0;
    color: #ffffff;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: #ffffff;
    /* Contrast against dark bg */
    margin-bottom: 12px;
}

.cta-text h2 span {
    color: var(--primary-color);
    /* Highlight with the theme color */
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
}

.cta-action {
    display: flex;
    gap: 20px;
}

.cta-btn {
    padding: 8px 27px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    align-content: center;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.primary-cta {
    background-color: var(--primary-color);
    color: #000000;
    /* Dark text on bright button for clarity */
}

/* Rest of the styles stay same for buttons */
.whatsapp-cta {
    background-color: #25D366;
    color: #ffffff;
}

.cta-btn i {
    font-size: 1.2rem;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .cta-action {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Why Choose Us Section Styles */
.why-choose {
    padding: 100px 0;
    background-color: #f8f9fa;
    /* Light grey for contrast with package section */
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
    gap: 60px 30px;
    /* Increased row gap for the overlapping icons */
    margin-top: 80px;
    /* Space for the first row's icons */
}

.choose-card {
    background: #ffffff;
    padding: 60px 25px 35px;
    /* More top padding for the icon space */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.choose-icon {
    width: 90px;
    height: 90px;
    background-color: #fff9e6;
    /* Light cream background from image */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centers and overlaps the icon at the top */
    transition: all 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.choose-card:hover .choose-icon {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translate(-50%, -50%) rotateY(180deg);
}

.choose-card h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.choose-card p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.7;
    font-family: var(--font-body);
}

@media (max-width: 480px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose {
        padding: 60px 0;
    }
}

/* Thank You Page Styles */
.thanks-section {
    padding: 5rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.thanks-icon {
    font-size: 5rem;
    color: #ff3838;
    margin-bottom: 30px;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-card h1 {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: #2d3436;
    margin-bottom: 20px;
}

.thanks-card h1 span {
    color: var(--primary-color);
}

.thanks-card h3 {
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.thanks-card p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 40px;
}

.back-home-btn {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(235, 186, 34, 0.3);
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 186, 34, 0.4);
}

.whatsapp-hint {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #888;
}

.whatsapp-hint a {
    color: #ff3838;
    text-decoration: none;
    font-weight: 600;
}

/* Professional Footer Styles */
.footer {
    background-color: #111111;
    /* Sleek dark background */
    color: #ffffff;
    padding: 80px 0 0;
    font-family: var(--font-body);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.footer-col h4 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo img {
    max-width: 90px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Payment Icons Grid */
.payment-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-icons img {
    width: 100%;
    height: 56px;
    object-fit: contain;
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.payment-icons img:hover {
    transform: scale(1.05);
}

/* Approval Logo Section */
.approval-img {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.approval-img img {
    max-width: 100%;
    height: auto;
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    color: #b0b0b0;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

/* Social Icon styling */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 100%;
    max-width: 42px;
    height: 42px;
    background: #ffffff45;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid #333;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(235, 186, 34, 0.3);
}

/* Footer Bottom Section (Copyright and Powered By) */
.footer-bottom {
    background-color: #0c0c0c;
    padding: 25px 0;
    border-top: 1px solid #222;
    margin-top: 40px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b6b5b5;
    font-size: 0.9rem;
}

.bottom-flex p {
    margin: 0;
}

.bottom-flex span {
    color: #ffffff;
    font-weight: 700;
}

.gt-logo {
    width: 100%;
    max-width: 120px;
}

/* Fully Responsive adjustments for column-to-stack behavior */
@media (max-width: 992px) {
    .footer-col {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 768px) {
    .footer-col {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Book Section Refined Styles */
.book-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.book-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.book-content h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.book-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.simple-list,
.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.simple-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: #444;
}

.simple-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 1.2rem;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
}

.check-list li i {
    color: #27ae60;
    font-size: 1.1rem;
}

.book-now-btn {
    display: inline-block;
    background-color: #ebba22;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 56, 56, 0.3);
    text-align: center;
}

.book-now-btn:hover {
    background-color: #ebba22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 56, 56, 0.4);
    color: #fff;
}

.trust-badge-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge-text i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .book-content h3 {
        font-size: 1.6rem;
    }

    .book-now-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .trust-badge-text {
        justify-content: center;
        text-align: center;
    }
}