body {
    font-family: "Tajawal", sans-serif;
    color: #333;
}

/* RTL-specific adjustments */
html[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Directional margin and padding adjustments will be handled by Bootstrap RTL */

/* Language Selector Styles */
.lang-selector .btn {
    border-radius: 0.375rem;
    padding: 6px 12px;
    border-color: #dee2e6;
    background-color: transparent;
    transition: all 0.3s ease;
}

.lang-selector .btn:hover,
.lang-selector .btn:focus {
    background-color: #f8f9fa;
    border-color: #536b7c;
    box-shadow: none;
}

.lang-selector .dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    padding: 0.5rem 0;
}

.lang-selector .dropdown-item {
    padding: 0.5rem 1rem;
    transition: background-color 0.2s;
}

.lang-selector .dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: #000 !important;
}

.lang-selector .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: #000 !important;
}

.lang-selector .dropdown-item:active {
    background-color: #536b7c;
    color: white;
}

.lang-selector .btn.btn-outline-secondary:hover,
.lang-selector .btn.btn-outline-secondary:focus {
    background-color: #f8f9fa;
    border-color: #536b7c;
    box-shadow: none;
    color: #333 !important;
    /* Override the white text color */
}

/* Title Styles */
h2.fw-bold.position-relative {
    display: inline-block;
}

h2.fw-bold.position-relative::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #536b7c;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Modern Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar .btn-login {
    background-color: transparent;
    border: 1px solid #536b7c;
    color: #536b7c;
    transition: all 0.3s;
}

.navbar .btn-login:hover {
    background-color: #536b7c;
    color: white;
}

.navbar .btn-admin {
    background-color: #3a4a57;
    color: white;
    transition: all 0.3s;
}

.navbar .btn-admin:hover {
    background-color: #627d92;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-banner .hero-carousel .carousel-inner {
    height: 100%;
}

.hero-banner .hero-carousel .carousel-item {
    height: 100%;
    position: relative;
    min-height: 90vh;
}

.hero-banner .hero-carousel .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-banner .hero-carousel .carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-banner .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 1200px;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding: 0 20px;
}

.hero-banner .carousel-control-prev,
.hero-banner .carousel-control-next {
    z-index: 3;
    width: 5%;
}

.hero-banner .carousel-control-prev-icon,
.hero-banner .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.hero-banner .carousel-indicators {
    z-index: 3;
    margin-bottom: 2rem;
}

.hero-banner .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-banner .carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 1);
}

/* Modern Cards */
.custom-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header-custom {
    background: linear-gradient(45deg, #536b7c, #7d97aa);
    color: white;
    padding: 20px;
    text-align: center;
}

/* Map Section */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* App Download Section */
.app-badges img {
    transition: all 0.3s ease;
}

.app-badges img:hover {
    transform: translateY(-5px);
}

/* Section Dividers */
.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #536b7c, transparent);
    width: 80%;
    margin: 2rem auto;
}

/* Social Media Icons */
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

html[dir="rtl"] .social-icons a {
    margin-right: 0;
    margin-left: 10px;
}

.social-icons a:hover {
    background-color: #536b7c;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #2a3238;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-link:hover {
    color: #7d97aa;
    text-decoration: none;
}

/* Booking Image */
.booking-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
}

/* Feature Box */
.feature-box {
    padding: 30px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #536b7c, #7d97aa);
    color: white;
    font-size: 28px;
    border-radius: 50%;
    margin-bottom: 25px;
}

/* Address Card */
.address-card {
    padding: 1.5rem;
}

.address-card h4 {
    color: #536b7c;
    font-weight: 600;
}

.address-card p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: #536b7c;
    border-color: #536b7c;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #405363;
    border-color: #405363;
}

.btn-outline-primary {
    color: #536b7c;
    border-color: #536b7c;
}

.btn-outline-primary:hover {
    background-color: #536b7c;
    border-color: #536b7c;
    color: white;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.text-primary {
    color: #536b7c !important;
}

/* Logo */
.navbar-logo {
    height: 45px;
    margin-right: 10px;
}

html[dir="rtl"] .navbar-logo {
    margin-right: 0;
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .navbar-logo {
        height: 35px;
    }

    /* Language selector responsive styles */
    .lang-selector {
        margin-bottom: 0;
        margin-top: 0;
    }

    .lang-selector .btn {
        width: auto;
        justify-content: center;
        border: none;
        background: transparent;
        padding: 0.5rem 1rem;
        color: #536b7c;
        font-weight: 500;
    }

    .lang-selector .btn:hover,
    .lang-selector .btn:focus {
        background: transparent;
        color: #405363;
        border: none;
        box-shadow: none;
    }

    .lang-selector .dropdown-toggle::after {
        margin-left: 0.5rem;
    }

    /* Align navbar items on mobile */
    .navbar-collapse .d-flex {
        flex-direction: column;
        width: 100%;
    }

    .navbar-collapse .btn {
        margin-top: 5px;
        margin-right: 0 !important;
        width: 100%;
    }
}

/* RTL phone number fix */
.phone-number {
    direction: ltr;
    display: inline-block;
    unicode-bidi: bidi-override;
}

.ticket-info-box {
    background-color: #f8f9fa;
    border: 1px solid rgba(83, 107, 124, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ticket-info-box h4 {
    color: #536b7c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ticket-info-box ul {
    padding-right: 1.5rem;
}

html[dir="ltr"] .ticket-info-box ul {
    padding-right: 0;
    padding-left: 1.5rem;
}

.ticket-info-box li {
    margin-bottom: 0.75rem;
    position: relative;
}

.ticket-info-box li i {
    margin-left: 0.5rem;
}

html[dir="ltr"] .ticket-info-box li i {
    margin-left: 0;
    margin-right: 0.5rem;
}

.ticket-info-box li i {
    color: #536b7c;
}

/* Homepage Attraction Cards */
.attraction-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: none;
    background: white;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.attraction-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.attraction-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.attraction-badge .badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.attraction-content {
    padding: 25px;
}

.attraction-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.attraction-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.attraction-features {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #495057;
}

.feature-item i {
    font-size: 1.1rem;
}

.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 13px;
}

.price-label {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    margin-top: 5px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #536b7c;
}

.price-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 8px;
}

.rating {
    display: flex;
    align-items: center;
}

.rating i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.attraction-actions .btn {
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Tourist Places Cards */
.tourist-place-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
    background: white;
}

.tourist-place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

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

.tourist-place-card:hover .place-image {
    transform: scale(1.05);
}

.place-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.place-category .badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.place-content {
    padding: 20px;
}

.place-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.place-description {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.place-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #495057;
}

.place-features .feature-item i {
    width: 16px;
    font-size: 0.9rem;
}

/* Badge Colors */
.badge.bg-purple {
    background-color: #6f42c1 !important;
}

/* Call to Action Section */
.bg-primary {
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .attraction-content {
        padding: 20px;
    }

    .attraction-title {
        font-size: 1.2rem;
    }

    .place-content {
        padding: 15px;
    }

    .pricing-section,
    .attraction-features {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 30vh;
    }

    .current-price {
        font-size: 1.5rem;
    }

    .attraction-features .row.g-3 {
        --bs-gutter-x: 1rem;
    }
}

/* Contact Page Styles */
.tp-about-area {
    padding-top: 0;
}

.tp-about-banner-thumb {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.tp-about-banner-thumb img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tp-about-banner-thumb:hover img {
    transform: scale(1.02);
}

/* Breadcrumb Section */
.breadcrumb__area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0 3rem 0;
}

.breadcrumb__content {
    text-align: center;
}

.breadcrumb__title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.breadcrumb__title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #536b7c, #7d97aa);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Contact Form Section */
.tp-contact-area {
    padding: 5rem 0;
}

.tp-contact-inner {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.tp-contact-wrapper {
    padding: 3rem;
    background: white;
}

/* Contact Intro Card */
.tp-contact-intro-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(83, 107, 124, 0.1);
    position: relative;
    overflow: hidden;
}

.tp-contact-intro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #536b7c 0%, #7d97aa 100%);
}

.tp-contact-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(83, 107, 124, 0.3);
}

.tp-contact-intro-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tp-contact-intro-text {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.tp-contact-form {
    margin-top: 2rem;
}

.tp-contact-input-wrapper {
    display: grid;
    gap: 1.5rem;
}

.tp-contact-input-box {
    position: relative;
}

.tp-contact-input {
    position: relative;
}

.tp-contact-input input,
.tp-contact-input select,
.tp-contact-input textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #495057;
    font-family: inherit;
}

.tp-contact-input input:focus,
.tp-contact-input select:focus,
.tp-contact-input textarea:focus {
    outline: none;
    border-color: #536b7c;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(83, 107, 124, 0.1);
    transform: translateY(-2px);
}

.tp-contact-input input::placeholder,
.tp-contact-input select::placeholder,
.tp-contact-input textarea::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.tp-contact-input textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.tp-contact-input-title {
    margin-top: 0.5rem;
}

.tp-contact-input-title label {
    color: #536b7c;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp-contact-input.is-invalid input,
.tp-contact-input.is-invalid textarea {
    border-color: #dc3545;
    background: #fff5f5;
}

.input-invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

/* Contact Form Button */
.tp-contact-btn {
    margin-top: 2rem;
}

.tp-contact-btn button {
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(83, 107, 124, 0.3);
}

.tp-contact-btn button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(83, 107, 124, 0.4);
    background: linear-gradient(135deg, #405363 0%, #627d92 100%);
}

.tp-contact-btn button:active {
    transform: translateY(-1px);
}

/* Enhanced Contact Sidebar */
.tp-contact-info-wrapper {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tp-contact-help-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-contact-help-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tp-contact-help-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tp-contact-help-header h4 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.tp-contact-help-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tp-contact-contact-info {
    margin-bottom: 1rem;
}

/* Social Media Card */
.tp-contact-social-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-contact-sidebar-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tp-contact-social-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.tp-contact-social-wrapper {
    margin-top: 1rem;
}

.tp-contact-social-icon {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.tp-contact-social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tp-contact-social-icon a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Quick Links */
.tp-contact-quick-links {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-contact-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-contact-links-list li {
    margin-bottom: 0.75rem;
}

.tp-contact-links-list a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tp-contact-links-list a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
}

.tp-contact-links-list a i {
    font-size: 1rem;
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    width: 20px;
}

/* Map Section */
.tp-map-area {
    padding: 5rem 0;
    background: #f8f9fa;
}

.tp-map-section-header {
    margin-bottom: 3rem;
}

.tp-map-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.tp-map-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #536b7c 0%, #7d97aa 100%);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.tp-map-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.tp-map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tp-map-hotspot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.tp-hotspot {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tp-pulse-border {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(130, 31, 64, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(130, 31, 64, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(130, 31, 64, 0);
    }
}

.tp-map-iframe {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.tp-map-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.tp-map-wrapper:hover .tp-map-iframe iframe {
    filter: grayscale(0);
}

/* Session Messages */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .tp-contact-inner {
        border-radius: 15px;
    }

    .tp-contact-wrapper {
        padding: 2rem;
    }

    .tp-contact-info-wrapper {
        padding: 2rem;
        margin-top: 2rem;
    }

    .tp-contact-intro-card {
        padding: 2rem;
    }

    .tp-contact-intro-title {
        font-size: 1.8rem;
    }

    .breadcrumb__title {
        font-size: 2rem;
    }

    .tp-map-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .tp-about-banner-thumb img {
        height: 250px;
    }

    .breadcrumb__area {
        padding: 3rem 0 2rem 0;
    }

    .breadcrumb__title {
        font-size: 1.8rem;
    }

    .tp-contact-area {
        padding: 3rem 0;
    }

    .tp-contact-wrapper {
        padding: 1.5rem;
    }

    .tp-contact-intro-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .tp-contact-intro-title {
        font-size: 1.5rem;
    }

    .tp-contact-intro-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .tp-contact-info-wrapper {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .tp-map-area {
        padding: 3rem 0;
    }

    .tp-map-title {
        font-size: 1.8rem;
    }

    .tp-map-iframe {
        height: 300px;
    }

    .tp-contact-social-icon {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .tp-contact-input-wrapper {
        gap: 1rem;
    }

    .tp-contact-input input,
    .tp-contact-input select,
    .tp-contact-input textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .tp-contact-btn button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .tp-contact-social-icon a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .tp-contact-help-card,
    .tp-contact-social-card,
    .tp-contact-quick-links {
        padding: 1.5rem;
    }

    .tp-map-title {
        font-size: 1.5rem;
    }

    .breadcrumb__title {
        font-size: 1.5rem;
    }

    .breadcrumb__subtitle {
        font-size: 0.9rem;
    }
}

/* Register Page Styles - Updated to match Login */
.register-form .input-group {
    transition: all 0.3s ease;
}

.register-form .input-group.focused {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(83, 107, 124, 0.15);
}

.register-form .input-group-text {
    transition: all 0.3s ease;
}

.register-form .form-control:focus + .input-group-text,
.register-form .input-group.focused .input-group-text {
    background-color: #f8f9fa;
    border-color: #536b7c;
}

.register-info-cards {
    animation: slideInUp 0.6s ease 0.3s both;
}

/* Animation for form appearance */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Star With Us Brand Colors */
.text-skybridge-primary {
    color: #536b7c !important;
}

.btn-skybridge-primary {
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    border-color: #536b7c;
    color: white;
}

.btn-skybridge-primary:hover,
.btn-skybridge-primary:focus {
    background: linear-gradient(135deg, #405363 0%, #627d92 100%);
    border-color: #405363;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(83, 107, 124, 0.3);
}

/* Responsive Design for Register Page */
@media (max-width: 768px) {
    .register-form .row.mb-3 {
        margin-bottom: 1rem !important;
    }

    .register-form .col-md-6:first-child {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .register-info-cards .row {
        text-align: center;
    }

    .register-info-cards .col-md-4 {
        margin-bottom: 1rem;
    }

    .register-info-cards .col-md-4:last-child {
        margin-bottom: 0;
    }
}

/* Booking Page Styles */
.bg-skybridge-gradient {
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    position: relative;
    overflow: hidden;
}

.bg-skybridge-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.booking-highlight {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.booking-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Booking Steps Progress */
.booking-steps {
    padding: 2rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-circle.active {
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(83, 107, 124, 0.4);
}

.step-circle.completed {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.step-circle.pending {
    background: #e9ecef;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.step-title {
    margin-left: 12px;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.step-item.active .step-title {
    color: #536b7c;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: #dee2e6;
    margin: 0 15px;
    position: relative;
}

.step-connector.completed {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

/* Booking Content */
.booking-content {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.booking-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(83, 107, 124, 0.1);
}

.booking-step-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.booking-step-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #536b7c 0%, #7d97aa 100%);
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

/* Ticket Selection Cards */
.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.ticket-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #536b7c 0%, #7d97aa 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ticket-card:hover {
    border-color: #536b7c;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(83, 107, 124, 0.15);
}

.ticket-card:hover::before {
    transform: scaleX(1);
}

.ticket-card.selected {
    border-color: #536b7c;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 10px 30px rgba(83, 107, 124, 0.2);
}

.ticket-card.selected::before {
    transform: scaleX(1);
}

.ticket-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.ticket-card:nth-child(1) .ticket-icon {
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
}

.ticket-card:nth-child(2) .ticket-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.ticket-card:nth-child(3) .ticket-icon {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: white;
}

.ticket-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.ticket-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-price {
    font-size: 2rem;
    font-weight: 800;
    color: #536b7c;
    margin-bottom: 1.5rem;
}

.ticket-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 5px;
}

/* Quantity Selector */
.quantity-section {
    margin-top: 1.5rem;
}

.quantity-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #536b7c;
    background: white;
    color: #536b7c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #536b7c;
    color: white;
    transform: scale(1.1);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.quantity-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    min-width: 50px;
    text-align: center;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

/* Booking Summary Sidebar */
.booking-summary {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 2rem;
}

.booking-summary-header {
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.booking-summary-header::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.2rem;
}

.booking-summary-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.booking-summary-content {
    padding: 2rem 1.5rem;
}

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

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-title {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.summary-content {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: #495057;
    font-weight: 500;
}

.summary-value {
    color: #2c3e50;
    font-weight: 600;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 8px;
    color: #536b7c;
    width: 16px;
}

/* Next Button */
.booking-actions {
    margin-top: 3rem;
    text-align: right;
}

.btn-next {
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(83, 107, 124, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-next::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(83, 107, 124, 0.4);
    background: linear-gradient(135deg, #405363 0%, #627d92 100%);
}

.btn-next:hover::after {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-summary {
        position: relative;
        margin-top: 2rem;
    }

    .step-indicator {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .step-connector {
        width: 40px;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .booking-form-container {
        padding: 1.5rem;
    }

    .ticket-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-step-title {
        font-size: 1.5rem;
    }

    .step-title {
        display: none;
    }

    .step-connector {
        width: 30px;
        margin: 0 5px;
    }

    .ticket-card {
        padding: 1.5rem;
    }

    .booking-summary-content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .bg-skybridge-gradient {
        padding: 2rem 0;
    }

    .booking-content {
        padding: 2rem 0;
    }

    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .quantity-display {
        font-size: 1.3rem;
        padding: 6px 12px;
    }

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

    .btn-next {
        width: 100%;
        padding: 15px;
    }
}

/* Homepage Pricing Grid Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.price-item {
    text-align: center;
    padding: 0.75rem;
    background: white;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.price-category {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.category-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #007bff;
}

/* Coming Soon Section */
.coming-soon-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-radius: 0.5rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 193, 7, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.coming-soon-text {
    font-weight: 600;
    color: #856404;
    font-size: 1.1rem;
}

/* Attraction Cards Button Alignment */
.attraction-card .attraction-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Responsive Pricing Grid */
@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Terms & Conditions Page Styles */
.tp-terms-area {
    padding: 5rem 0;
}

.tp-terms-inner {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.tp-terms-wrapper {
    padding: 3rem;
    background: white;
}

/* Terms Intro Card */
.tp-terms-intro-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(83, 107, 124, 0.1);
    position: relative;
    overflow: hidden;
}

.tp-terms-intro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #536b7c 0%, #7d97aa 100%);
}

.tp-terms-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(83, 107, 124, 0.3);
}

.tp-terms-intro-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tp-terms-intro-text {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Terms Content */
.tp-terms-content {
    margin-top: 2rem;
}

.tp-terms-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tp-terms-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #536b7c;
}

.tp-terms-item-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

.tp-terms-item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.tp-terms-item-icon {
    margin-left: auto;
    color: #28a745;
    font-size: 1.3rem;
}

.tp-terms-item-content {
    padding: 1.5rem;
}

.tp-terms-item-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Empty State */
.tp-terms-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.tp-terms-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border-radius: 50%;
    font-size: 2.5rem;
    color: #6c757d;
}

.tp-terms-empty h4 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tp-terms-empty p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Terms Sidebar */
.tp-terms-sidebar {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tp-terms-help-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-terms-help-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tp-terms-help-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tp-terms-help-header h4 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.tp-terms-help-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tp-terms-contact-info {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-item i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    width: 20px;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #ffc107;
}

.btn-contact-full {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-contact-full:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Quick Links */
.tp-terms-quick-links {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-terms-sidebar-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.tp-terms-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-terms-links-list li {
    margin-bottom: 0.75rem;
}

.tp-terms-links-list a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tp-terms-links-list a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
}

.tp-terms-links-list a i {
    font-size: 1rem;
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    width: 20px;
}

/* Map Section */
.tp-map-area {
    padding: 5rem 0;
    background: #f8f9fa;
}

.tp-map-section-header {
    margin-bottom: 3rem;
}

.tp-map-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.tp-map-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #536b7c 0%, #7d97aa 100%);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.tp-map-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.tp-map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tp-map-hotspot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.tp-hotspot {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tp-pulse-border {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(130, 31, 64, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(130, 31, 64, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(130, 31, 64, 0);
    }
}

.tp-map-iframe {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.tp-map-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.tp-map-wrapper:hover .tp-map-iframe iframe {
    filter: grayscale(0);
}

/* Session Messages */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .tp-contact-inner {
        border-radius: 15px;
    }

    .tp-contact-wrapper {
        padding: 2rem;
    }

    .tp-contact-info-wrapper {
        padding: 2rem;
        margin-top: 2rem;
    }

    .tp-contact-intro-card {
        padding: 2rem;
    }

    .tp-contact-intro-title {
        font-size: 1.8rem;
    }

    .breadcrumb__title {
        font-size: 2rem;
    }

    .tp-map-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .tp-about-banner-thumb img {
        height: 250px;
    }

    .tp-terms-sidebar,
    .tp-faq-sidebar {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .tp-terms-item-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tp-faq-btn {
        padding: 1rem 1.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .tp-terms-item-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .tp-terms-item-icon {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .tp-faq-icon {
        margin-left: 0;
    }

    .tp-faq-question {
        padding-right: 1rem;
        font-size: 1rem;
    }

    .tp-faq-item-body {
        padding: 1rem 1.5rem;
    }

    .tp-faq-intro-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .tp-faq-intro-title {
        font-size: 1.5rem;
    }

    .tp-faq-intro-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .tp-faq-wrapper {
        padding: 2rem 1.5rem;
    }

    .breadcrumb__title {
        font-size: 1.8rem;
    }

    .breadcrumb__subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .tp-terms-item-header {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .tp-terms-item-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .tp-terms-item-icon {
        margin-top: 0;
        margin-left: auto;
    }

    .tp-faq-btn {
        padding: 1rem;
        flex-wrap: nowrap;
    }

    .tp-faq-question {
        padding-right: 0.5rem;
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .tp-faq-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .tp-faq-icon i {
        font-size: 1rem;
    }

    .tp-terms-item-content,
    .tp-faq-item-body {
        padding: 1rem;
    }

    .tp-faq-intro-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .tp-faq-intro-title {
        font-size: 1.3rem;
    }

    .tp-faq-intro-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .tp-faq-wrapper {
        padding: 1.5rem 1rem;
    }

    .tp-terms-help-card,
    .tp-faq-help-card,
    .tp-terms-quick-links,
    .tp-faq-categories,
    .tp-faq-tip-card {
        padding: 1.5rem;
    }

    .tp-faq-category-list {
        gap: 0.25rem;
    }

    .tp-faq-category-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .contact-info-item {
        font-size: 0.9rem;
    }

    .breadcrumb__title {
        font-size: 1.5rem;
    }

    .breadcrumb__subtitle {
        font-size: 0.9rem;
    }
}

/* FAQ Page Styles */
.tp-faq-area {
    padding: 5rem 0;
}

.tp-faq-inner {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.tp-faq-wrapper {
    padding: 3rem;
    background: white;
}

/* FAQ Intro Card */
.tp-faq-intro-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(83, 107, 124, 0.1);
    position: relative;
    overflow: hidden;
}

.tp-faq-intro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #536b7c 0%, #7d97aa 100%);
}

.tp-faq-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(83, 107, 124, 0.3);
}

.tp-faq-intro-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tp-faq-intro-text {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Accordion */
.tp-faq-content {
    margin-top: 2rem;
}

.tp-faq-accordion {
    border: none;
}

.tp-faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.5s ease forwards;
}

.tp-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #536b7c;
}

.tp-faq-item-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tp-faq-btn {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 600;
}

.tp-faq-btn:focus {
    outline: none;
    box-shadow: none;
}

.tp-faq-btn:not(.collapsed) {
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.tp-faq-btn:not(.collapsed) .tp-faq-icon i {
    color: white;
    transform: rotate(45deg);
}

.tp-faq-question {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    padding-right: 2rem;
    flex-grow: 1;
}

.tp-faq-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(83, 107, 124, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tp-faq-icon i {
    font-size: 1.1rem;
    color: #536b7c;
    transition: all 0.3s ease;
}

.tp-faq-btn:not(.collapsed) .tp-faq-icon {
    background: rgba(255, 255, 255, 0.2);
}

.tp-faq-item-body {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid rgba(83, 107, 124, 0.1);
}

.tp-faq-item-body p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* FAQ Empty State */
.tp-faq-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.tp-faq-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border-radius: 50%;
    font-size: 2.5rem;
    color: #6c757d;
}

.tp-faq-empty h4 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tp-faq-empty p {
    color: #6c757d;
    margin-bottom: 0;
}

/* FAQ Sidebar */
.tp-faq-sidebar {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #536b7c 0%, #7d97aa 100%);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tp-faq-help-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-faq-help-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tp-faq-help-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tp-faq-help-header h4 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.tp-faq-help-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tp-faq-contact-info {
    margin-bottom: 2rem;
}

/* FAQ Categories */
.tp-faq-categories {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-faq-sidebar-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.tp-faq-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tp-faq-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tp-faq-category-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    text-decoration: none;
}

.tp-faq-category-item.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.tp-faq-category-item i {
    font-size: 1rem;
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    width: 20px;
}

.tp-faq-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

/* FAQ Tip Card */
.tp-faq-tip-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.tp-faq-tip-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #ffc107;
}

.tp-faq-tip-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tp-faq-tip-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Animation for FAQ accordion */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tp-faq-item:nth-child(1) {
    animation-delay: 0.1s;
}
.tp-faq-item:nth-child(2) {
    animation-delay: 0.2s;
}
.tp-faq-item:nth-child(3) {
    animation-delay: 0.3s;
}
.tp-faq-item:nth-child(4) {
    animation-delay: 0.4s;
}
.tp-faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Animation for terms items */
.tp-terms-item {
    animation: fadeInUp 0.5s ease forwards;
}

.tp-terms-item:nth-child(1) {
    animation-delay: 0.1s;
}
.tp-terms-item:nth-child(2) {
    animation-delay: 0.2s;
}
.tp-terms-item:nth-child(3) {
    animation-delay: 0.3s;
}
.tp-terms-item:nth-child(4) {
    animation-delay: 0.4s;
}
.tp-terms-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* RTL Support for Terms & FAQ Pages */
html[dir="rtl"] .tp-terms-item-number,
html[dir="rtl"] .tp-faq-icon {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .tp-terms-item-icon {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .tp-faq-question {
    padding-right: 0;
    padding-left: 1rem;
}

html[dir="rtl"] .contact-info-item i {
    margin-right: 0;
    margin-left: 0.75rem;
}

html[dir="rtl"] .tp-terms-links-list a i,
html[dir="rtl"] .tp-faq-category-item i {
    margin-right: 0;
    margin-left: 0.75rem;
}

html[dir="rtl"] .tp-terms-help-header i,
html[dir="rtl"] .tp-faq-help-header i {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .tp-terms-links-list a:hover,
html[dir="rtl"] .tp-faq-category-item:hover {
    padding-left: 0;
    padding-right: 1rem;
    transform: translateX(-5px);
}

html[dir="rtl"] .tp-faq-count {
    margin-left: 0;
    margin-right: auto;
}

/* RTL Support for Contact Page */
html[dir="rtl"] .tp-contact-help-header i {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .tp-contact-links-list a i {
    margin-right: 0;
    margin-left: 0.75rem;
}

html[dir="rtl"] .tp-contact-links-list a:hover {
    padding-left: 0;
    padding-right: 1rem;
}

/* Fix for floating label on select elements */
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

/* Community Partners Section */
.partner-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #536b7c;
}

.partner-banner-link {
    display: block;
    overflow: hidden;
}

.partner-banner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-banner {
    transform: scale(1.05);
}

.partner-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.partner-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.partner-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
